ERC-721
Overview
Max Total Supply
1,114 CROCZ
Holders
431
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CROCZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CrocZ
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return recover(hash, r, vs); } else { revert("ECDSA: invalid signature length"); } } /** * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require( uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value" ); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } 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); } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } 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; } interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } 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); } contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } contract CrocZERC721 is ERC721Enumerable, Ownable { using SafeMath for uint256; using Address for address; using ECDSA for bytes32; string private baseURI; uint256 public maxSupply; uint256 public maxPreMint; uint256 public price = 0.055 ether; bool public presaleActive = false; bool public saleActive = false; mapping (address => uint256) public balanceGenesis; mapping(address => uint256) private _presaleListClaimed; mapping (address => uint256) private maxWallet; constructor(string memory name, string memory symbol, uint256 supply, uint256 maxMint) ERC721(name, symbol) { maxSupply = supply; maxPreMint = maxMint; } function _hash(address _address) internal pure returns (bytes32) { return keccak256(abi.encodePacked(_address)); } function _verify(bytes32 hash, bytes memory signature) internal pure returns (bool) { return (_recover(hash, signature) == 0x8f20d89bEe77ea2AbBaF46b5DEF3Ef109ab9d358); } function _recover(bytes32 hash, bytes memory signature) internal pure returns (address) { return hash.recover(signature); } function airdrop(uint256 numberOfMints) external onlyOwner { uint256 supply = totalSupply(); require(supply.add(numberOfMints) <= maxSupply, "Purchase would exceed max supply of CrocZ"); for(uint256 i; i < numberOfMints; i++){ _safeMint(msg.sender, supply + i); balanceGenesis[msg.sender]++; } } function mintPresale(bytes memory signature, uint256 numberOfMints) public payable { uint256 supply = totalSupply(); require(_verify(_hash(msg.sender), signature), "This hash's signature is invalid."); require(presaleActive, "Presale must be active to mint"); require(numberOfMints > 0 && numberOfMints <= 2, "Invalid purchase amount"); require(_presaleListClaimed[msg.sender] + numberOfMints <= maxPreMint, "You cannot mint any more presale CrocZ."); require(supply.add(numberOfMints) <= maxSupply, "Purchase would exceed max supply of CrocZ"); require(price.mul(numberOfMints) == msg.value, "Ether value sent is not correct"); _presaleListClaimed[msg.sender] += numberOfMints; for(uint256 i; i < numberOfMints; i++){ _safeMint(msg.sender, supply + i); balanceGenesis[msg.sender]++; maxWallet[msg.sender]++; } } function mint(uint256 numberOfMints) public payable { uint256 supply = totalSupply(); require(msg.sender == tx.origin, "Cannot use a contract to mint"); require(saleActive, "Sale must be active to mint"); require(numberOfMints > 0 && numberOfMints <= 5, "Invalid purchase amount"); require(maxWallet[msg.sender] + numberOfMints <= 5, "You have minted the maximum allowed per wallet"); require(supply.add(numberOfMints) <= maxSupply, "Purchase would exceed max supply of CrocZ"); require(price.mul(numberOfMints) == msg.value, "Ether value sent is not correct"); for(uint256 i; i < numberOfMints; i++) { _safeMint(msg.sender, supply + i); balanceGenesis[msg.sender]++; maxWallet[msg.sender]++; } } function walletOfOwner(address owner) external view returns(uint256[] memory) { uint256 tokenCount = balanceOf(owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(owner, i); } return tokensId; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function togglePresale() public onlyOwner { presaleActive = !presaleActive; } function toggleSale() public onlyOwner { saleActive = !saleActive; } function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function _baseURI() internal view override returns (string memory) { return baseURI; } } interface ISwamp { function burn(address _from, uint256 _amount) external; function updateCroczReward(address _from, address _to) external; } contract CrocZ is CrocZERC721 { modifier croczOwner(uint256 croczId) { require(ownerOf(croczId) == msg.sender, "Cannot interact with a CrocZ you do not own"); _; } ISwamp public Swamp; constructor(string memory name, string memory symbol, uint256 supply, uint256 maxMint) CrocZERC721(name, symbol, supply, maxMint) {} function setSwamp(address swampAddress) external onlyOwner { Swamp = ISwamp(swampAddress); } function transferFrom(address from, address to, uint256 tokenId) public override { if (tokenId < maxSupply) { Swamp.updateCroczReward(from, to); balanceGenesis[from]--; balanceGenesis[to]++; } ERC721.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override { if (tokenId < maxSupply) { Swamp.updateCroczReward(from, to); balanceGenesis[from]--; balanceGenesis[to]++; } ERC721.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Swamp","outputs":[{"internalType":"contract ISwamp","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"balanceGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"swampAddress","type":"address"}],"name":"setSwamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266c3663566a58000600e55600f805461ffff191690553480156200002757600080fd5b5060405162002f8d38038062002f8d8339810160408190526200004a916200026e565b838383838383816000908051906020019062000068929190620000fb565b5080516200007e906001906020840190620000fb565b505050600062000093620000f760201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c91909155600d555062000325945050505050565b3390565b8280546200010990620002e8565b90600052602060002090601f0160209004810192826200012d576000855562000178565b82601f106200014857805160ff191683800117855562000178565b8280016001018555821562000178579182015b82811115620001785782518255916020019190600101906200015b565b50620001869291506200018a565b5090565b5b808211156200018657600081556001016200018b565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001c957600080fd5b81516001600160401b0380821115620001e657620001e6620001a1565b604051601f8301601f19908116603f01168101908282118183101715620002115762000211620001a1565b816040528381526020925086838588010111156200022e57600080fd5b600091505b8382101562000252578582018301518183018401529082019062000233565b83821115620002645760008385830101525b9695505050505050565b600080600080608085870312156200028557600080fd5b84516001600160401b03808211156200029d57600080fd5b620002ab88838901620001b7565b95506020870151915080821115620002c257600080fd5b50620002d187828801620001b7565b604087015160609097015195989097509350505050565b600181811c90821680620002fd57607f821691505b602082108114156200031f57634e487b7160e01b600052602260045260246000fd5b50919050565b612c5880620003356000396000f3fe60806040526004361061020f5760003560e01c806368428a1b11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105c3578063d5abeb01146105e3578063e2b26b15146105f9578063e985e9c514610626578063f2fde38b1461066f57600080fd5b8063a0712d681461055a578063a22cb4651461056d578063a7ee066d1461058d578063b88d4fde146105a357600080fd5b80638da5cb5b116100e75780638da5cb5b146104d157806391b7f5ed146104ef57806395d89b411461050f57806397dc4a1314610524578063a035b1fe1461054457600080fd5b806368428a1b1461046857806370a0823114610487578063715018a6146104a75780637d8966e4146104bc57600080fd5b80633ccfd60b1161019b57806353135ca01161016a57806353135ca0146103db57806355aeceea146103f557806355f804b3146104155780636352211e146104355780636464eb641461045557600080fd5b80633ccfd60b1461035957806342842e0e1461036e578063438b63001461038e5780634f6ccce7146103bb57600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632f745c59146103045780633391445814610324578063343937431461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046125b4565b61068f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ba565b6040516102409190612629565b34801561027757600080fd5b5061028b61028636600461263c565b61074c565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612671565b6107e6565b005b3480156102d157600080fd5b506008545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff36600461269b565b6108fc565b34801561031057600080fd5b506102d661031f366004612671565b6109cb565b34801561033057600080fd5b506102c361033f3660046126d7565b610a61565b34801561035057600080fd5b506102c3610aad565b34801561036557600080fd5b506102c3610aeb565b34801561037a57600080fd5b506102c361038936600461269b565b610b48565b34801561039a57600080fd5b506103ae6103a93660046126d7565b610b63565b60405161024091906126f2565b3480156103c757600080fd5b506102d66103d636600461263c565b610c05565b3480156103e757600080fd5b50600f546102349060ff1681565b34801561040157600080fd5b5060135461028b906001600160a01b031681565b34801561042157600080fd5b506102c36104303660046127c2565b610c98565b34801561044157600080fd5b5061028b61045036600461263c565b610cd5565b6102c361046336600461282b565b610d4c565b34801561047457600080fd5b50600f5461023490610100900460ff1681565b34801561049357600080fd5b506102d66104a23660046126d7565b611039565b3480156104b357600080fd5b506102c36110c0565b3480156104c857600080fd5b506102c3611134565b3480156104dd57600080fd5b50600a546001600160a01b031661028b565b3480156104fb57600080fd5b506102c361050a36600461263c565b61117b565b34801561051b57600080fd5b5061025e6111aa565b34801561053057600080fd5b506102c361053f36600461263c565b6111b9565b34801561055057600080fd5b506102d6600e5481565b6102c361056836600461263c565b611268565b34801561057957600080fd5b506102c3610588366004612870565b6114e8565b34801561059957600080fd5b506102d6600d5481565b3480156105af57600080fd5b506102c36105be3660046128ac565b6115ad565b3480156105cf57600080fd5b5061025e6105de36600461263c565b61167d565b3480156105ef57600080fd5b506102d6600c5481565b34801561060557600080fd5b506102d66106143660046126d7565b60106020526000908152604090205481565b34801561063257600080fd5b50610234610641366004612914565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067b57600080fd5b506102c361068a3660046126d7565b611758565b60006001600160e01b0319821663780e9d6360e01b14806106b457506106b482611843565b92915050565b6060600080546106c990612947565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612947565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f182610cd5565b9050806001600160a01b0316836001600160a01b0316141561085f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c1565b336001600160a01b038216148061087b575061087b8133610641565b6108ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c1565b6108f78383611893565b505050565b600c548110156109c057601354604051630fe06d9560e11b81526001600160a01b038581166004830152848116602483015290911690631fc0db2a90604401600060405180830381600087803b15801561095557600080fd5b505af1158015610969573d6000803e3d6000fd5b505050506001600160a01b038316600090815260106020526040812080549161099183612998565b90915550506001600160a01b03821660009081526010602052604081208054916109ba836129af565b91905055505b6108f7838383611901565b60006109d683611039565b8210610a385760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a8b5760405162461bcd60e51b81526004016107c1906129ca565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610ad75760405162461bcd60e51b81526004016107c1906129ca565b600f805460ff19811660ff90911615179055565b600a546001600160a01b03163314610b155760405162461bcd60e51b81526004016107c1906129ca565b6040514790339082156108fc029083906000818181858888f19350505050158015610b44573d6000803e3d6000fd5b5050565b6108f7838383604051806020016040528060008152506115ad565b60606000610b7083611039565b905060008167ffffffffffffffff811115610b8d57610b8d612736565b604051908082528060200260200182016040528015610bb6578160200160208202803683370190505b50905060005b82811015610bfd57610bce85826109cb565b828281518110610be057610be06129ff565b602090810291909101015280610bf5816129af565b915050610bbc565b509392505050565b6000610c1060085490565b8210610c735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c1565b60088281548110610c8657610c866129ff565b90600052602060002001549050919050565b600a546001600160a01b03163314610cc25760405162461bcd60e51b81526004016107c1906129ca565b8051610b4490600b906020840190612502565b6000818152600260205260408120546001600160a01b0316806106b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c1565b6000610d5760085490565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909150610d9b9084611932565b610df15760405162461bcd60e51b815260206004820152602160248201527f5468697320686173682773207369676e617475726520697320696e76616c69646044820152601760f91b60648201526084016107c1565b600f5460ff16610e435760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e74000060448201526064016107c1565b600082118015610e54575060028211155b610e9a5760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a59081c1d5c98da185cd948185b5bdd5b9d604a1b60448201526064016107c1565b600d5433600090815260116020526040902054610eb8908490612a15565b1115610f165760405162461bcd60e51b815260206004820152602760248201527f596f752063616e6e6f74206d696e7420616e79206d6f72652070726573616c656044820152661021b937b1ad1760c91b60648201526084016107c1565b600c54610f23828461196e565b1115610f415760405162461bcd60e51b81526004016107c190612a2d565b600e543490610f50908461197a565b14610f9d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107c1565b3360009081526011602052604081208054849290610fbc908490612a15565b90915550600090505b8281101561103357610fe033610fdb8385612a15565b611986565b336000908152601060205260408120805491610ffb836129af565b909155505033600090815260126020526040812080549161101b836129af565b9190505550808061102b906129af565b915050610fc5565b50505050565b60006001600160a01b0382166110a45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110ea5760405162461bcd60e51b81526004016107c1906129ca565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461115e5760405162461bcd60e51b81526004016107c1906129ca565b600f805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146111a55760405162461bcd60e51b81526004016107c1906129ca565b600e55565b6060600180546106c990612947565b600a546001600160a01b031633146111e35760405162461bcd60e51b81526004016107c1906129ca565b60006111ee60085490565b600c549091506111fe828461196e565b111561121c5760405162461bcd60e51b81526004016107c190612a2d565b60005b828110156108f75761123533610fdb8385612a15565b336000908152601060205260408120805491611250836129af565b91905055508080611260906129af565b91505061121f565b600061127360085490565b90503332146112c45760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420757365206120636f6e747261637420746f206d696e7400000060448201526064016107c1565b600f54610100900460ff1661131b5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107c1565b60008211801561132c575060058211155b6113725760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a59081c1d5c98da185cd948185b5bdd5b9d604a1b60448201526064016107c1565b33600090815260126020526040902054600590611390908490612a15565b11156113f55760405162461bcd60e51b815260206004820152602e60248201527f596f752068617665206d696e74656420746865206d6178696d756d20616c6c6f60448201526d1dd959081c195c881dd85b1b195d60921b60648201526084016107c1565b600c54611402828461196e565b11156114205760405162461bcd60e51b81526004016107c190612a2d565b600e54349061142f908461197a565b1461147c5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107c1565b60005b828110156108f75761149533610fdb8385612a15565b3360009081526010602052604081208054916114b0836129af565b90915550503360009081526012602052604081208054916114d0836129af565b919050555080806114e0906129af565b91505061147f565b6001600160a01b0382163314156115415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5482101561167157601354604051630fe06d9560e11b81526001600160a01b038681166004830152858116602483015290911690631fc0db2a90604401600060405180830381600087803b15801561160657600080fd5b505af115801561161a573d6000803e3d6000fd5b505050506001600160a01b038416600090815260106020526040812080549161164283612998565b90915550506001600160a01b038316600090815260106020526040812080549161166b836129af565b91905055505b611033848484846119a0565b6000818152600260205260409020546060906001600160a01b03166116fc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c1565b60006117066119d2565b905060008151116117265760405180602001604052806000815250611751565b80611730846119e1565b604051602001611741929190612a76565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117825760405162461bcd60e51b81526004016107c1906129ca565b6001600160a01b0381166117e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061187457506001600160e01b03198216635b5e139f60e01b145b806106b457506301ffc9a760e01b6001600160e01b03198316146106b4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118c882610cd5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61190b3382611ae7565b6119275760405162461bcd60e51b81526004016107c190612aa5565b6108f7838383611bda565b600061193e8383611d85565b6001600160a01b0316738f20d89bee77ea2abbaf46b5def3ef109ab9d3586001600160a01b031614905092915050565b60006117518284612a15565b60006117518284612af6565b610b44828260405180602001604052806000815250611d91565b6119aa3383611ae7565b6119c65760405162461bcd60e51b81526004016107c190612aa5565b61103384848484611dc4565b6060600b80546106c990612947565b606081611a055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a2f5780611a19816129af565b9150611a289050600a83612b2b565b9150611a09565b60008167ffffffffffffffff811115611a4a57611a4a612736565b6040519080825280601f01601f191660200182016040528015611a74576020820181803683370190505b5090505b8415611adf57611a89600183612b3f565b9150611a96600a86612b56565b611aa1906030612a15565b60f81b818381518110611ab657611ab66129ff565b60200101906001600160f81b031916908160001a905350611ad8600a86612b2b565b9450611a78565b949350505050565b6000818152600260205260408120546001600160a01b0316611b605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c1565b6000611b6b83610cd5565b9050806001600160a01b0316846001600160a01b03161480611ba65750836001600160a01b0316611b9b8461074c565b6001600160a01b0316145b80611adf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611adf565b826001600160a01b0316611bed82610cd5565b6001600160a01b031614611c555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c1565b6001600160a01b038216611cb75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c1565b611cc2838383611df7565b611ccd600082611893565b6001600160a01b0383166000908152600360205260408120805460019290611cf6908490612b3f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d24908490612a15565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117518383611eaf565b611d9b8383611f53565b611da860008484846120a1565b6108f75760405162461bcd60e51b81526004016107c190612b6a565b611dcf848484611bda565b611ddb848484846120a1565b6110335760405162461bcd60e51b81526004016107c190612b6a565b6001600160a01b038316611e5257611e4d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e75565b816001600160a01b0316836001600160a01b031614611e7557611e75838261219f565b6001600160a01b038216611e8c576108f78161223c565b826001600160a01b0316826001600160a01b0316146108f7576108f782826122eb565b6000815160411415611ee35760208201516040830151606084015160001a611ed98682858561232f565b93505050506106b4565b815160401415611f0b5760208201516040830151611f028583836124d8565b925050506106b4565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107c1565b6001600160a01b038216611fa95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c1565b6000818152600260205260409020546001600160a01b03161561200e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c1565b61201a60008383611df7565b6001600160a01b0382166000908152600360205260408120805460019290612043908490612a15565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561219457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120e5903390899088908890600401612bbc565b6020604051808303816000875af1925050508015612120575060408051601f3d908101601f1916820190925261211d91810190612bef565b60015b61217a573d80801561214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5080516121725760405162461bcd60e51b81526004016107c190612b6a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611adf565b506001949350505050565b600060016121ac84611039565b6121b69190612b3f565b600083815260076020526040902054909150808214612209576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061224e90600190612b3f565b60008381526009602052604081205460088054939450909284908110612276576122766129ff565b906000526020600020015490508060088381548110612297576122976129ff565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122cf576122cf612c0c565b6001900381819060005260206000200160009055905550505050565b60006122f683611039565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156123ac5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107c1565b8360ff16601b14806123c157508360ff16601c145b6124185760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107c1565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561246c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124cf5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107c1565b95945050505050565b60006001600160ff1b03821660ff83901c601b016124f88682878561232f565b9695505050505050565b82805461250e90612947565b90600052602060002090601f0160209004810192826125305760008555612576565b82601f1061254957805160ff1916838001178555612576565b82800160010185558215612576579182015b8281111561257657825182559160200191906001019061255b565b50612582929150612586565b5090565b5b808211156125825760008155600101612587565b6001600160e01b0319811681146125b157600080fd5b50565b6000602082840312156125c657600080fd5b81356117518161259b565b60005b838110156125ec5781810151838201526020016125d4565b838111156110335750506000910152565b600081518084526126158160208601602086016125d1565b601f01601f19169290920160200192915050565b60208152600061175160208301846125fd565b60006020828403121561264e57600080fd5b5035919050565b80356001600160a01b038116811461266c57600080fd5b919050565b6000806040838503121561268457600080fd5b61268d83612655565b946020939093013593505050565b6000806000606084860312156126b057600080fd5b6126b984612655565b92506126c760208501612655565b9150604084013590509250925092565b6000602082840312156126e957600080fd5b61175182612655565b6020808252825182820181905260009190848201906040850190845b8181101561272a5783518352928401929184019160010161270e565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561276757612767612736565b604051601f8501601f19908116603f0116810190828211818310171561278f5761278f612736565b816040528093508581528686860111156127a857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127d457600080fd5b813567ffffffffffffffff8111156127eb57600080fd5b8201601f810184136127fc57600080fd5b611adf8482356020840161274c565b600082601f83011261281c57600080fd5b6117518383356020850161274c565b6000806040838503121561283e57600080fd5b823567ffffffffffffffff81111561285557600080fd5b6128618582860161280b565b95602094909401359450505050565b6000806040838503121561288357600080fd5b61288c83612655565b9150602083013580151581146128a157600080fd5b809150509250929050565b600080600080608085870312156128c257600080fd5b6128cb85612655565b93506128d960208601612655565b925060408501359150606085013567ffffffffffffffff8111156128fc57600080fd5b6129088782880161280b565b91505092959194509250565b6000806040838503121561292757600080fd5b61293083612655565b915061293e60208401612655565b90509250929050565b600181811c9082168061295b57607f821691505b6020821081141561297c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816129a7576129a7612982565b506000190190565b60006000198214156129c3576129c3612982565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008219821115612a2857612a28612982565b500190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c796040820152681037b31021b937b1ad60b91b606082015260800190565b60008351612a888184602088016125d1565b835190830190612a9c8183602088016125d1565b01949350505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000816000190483118215151615612b1057612b10612982565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612b3a57612b3a612b15565b500490565b600082821015612b5157612b51612982565b500390565b600082612b6557612b65612b15565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f8908301846125fd565b600060208284031215612c0157600080fd5b81516117518161259b565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200358ec02fc0131c72a5da7a736da8f29db18f0b551fa327f6b2fb77cae9a3e9d64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000015b30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000543726f635a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543524f435a000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806368428a1b11610118578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146105c3578063d5abeb01146105e3578063e2b26b15146105f9578063e985e9c514610626578063f2fde38b1461066f57600080fd5b8063a0712d681461055a578063a22cb4651461056d578063a7ee066d1461058d578063b88d4fde146105a357600080fd5b80638da5cb5b116100e75780638da5cb5b146104d157806391b7f5ed146104ef57806395d89b411461050f57806397dc4a1314610524578063a035b1fe1461054457600080fd5b806368428a1b1461046857806370a0823114610487578063715018a6146104a75780637d8966e4146104bc57600080fd5b80633ccfd60b1161019b57806353135ca01161016a57806353135ca0146103db57806355aeceea146103f557806355f804b3146104155780636352211e146104355780636464eb641461045557600080fd5b80633ccfd60b1461035957806342842e0e1461036e578063438b63001461038e5780634f6ccce7146103bb57600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632f745c59146103045780633391445814610324578063343937431461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046125b4565b61068f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ba565b6040516102409190612629565b34801561027757600080fd5b5061028b61028636600461263c565b61074c565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612671565b6107e6565b005b3480156102d157600080fd5b506008545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff36600461269b565b6108fc565b34801561031057600080fd5b506102d661031f366004612671565b6109cb565b34801561033057600080fd5b506102c361033f3660046126d7565b610a61565b34801561035057600080fd5b506102c3610aad565b34801561036557600080fd5b506102c3610aeb565b34801561037a57600080fd5b506102c361038936600461269b565b610b48565b34801561039a57600080fd5b506103ae6103a93660046126d7565b610b63565b60405161024091906126f2565b3480156103c757600080fd5b506102d66103d636600461263c565b610c05565b3480156103e757600080fd5b50600f546102349060ff1681565b34801561040157600080fd5b5060135461028b906001600160a01b031681565b34801561042157600080fd5b506102c36104303660046127c2565b610c98565b34801561044157600080fd5b5061028b61045036600461263c565b610cd5565b6102c361046336600461282b565b610d4c565b34801561047457600080fd5b50600f5461023490610100900460ff1681565b34801561049357600080fd5b506102d66104a23660046126d7565b611039565b3480156104b357600080fd5b506102c36110c0565b3480156104c857600080fd5b506102c3611134565b3480156104dd57600080fd5b50600a546001600160a01b031661028b565b3480156104fb57600080fd5b506102c361050a36600461263c565b61117b565b34801561051b57600080fd5b5061025e6111aa565b34801561053057600080fd5b506102c361053f36600461263c565b6111b9565b34801561055057600080fd5b506102d6600e5481565b6102c361056836600461263c565b611268565b34801561057957600080fd5b506102c3610588366004612870565b6114e8565b34801561059957600080fd5b506102d6600d5481565b3480156105af57600080fd5b506102c36105be3660046128ac565b6115ad565b3480156105cf57600080fd5b5061025e6105de36600461263c565b61167d565b3480156105ef57600080fd5b506102d6600c5481565b34801561060557600080fd5b506102d66106143660046126d7565b60106020526000908152604090205481565b34801561063257600080fd5b50610234610641366004612914565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561067b57600080fd5b506102c361068a3660046126d7565b611758565b60006001600160e01b0319821663780e9d6360e01b14806106b457506106b482611843565b92915050565b6060600080546106c990612947565b80601f01602080910402602001604051908101604052809291908181526020018280546106f590612947565b80156107425780601f1061071757610100808354040283529160200191610742565b820191906000526020600020905b81548152906001019060200180831161072557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f182610cd5565b9050806001600160a01b0316836001600160a01b0316141561085f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c1565b336001600160a01b038216148061087b575061087b8133610641565b6108ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c1565b6108f78383611893565b505050565b600c548110156109c057601354604051630fe06d9560e11b81526001600160a01b038581166004830152848116602483015290911690631fc0db2a90604401600060405180830381600087803b15801561095557600080fd5b505af1158015610969573d6000803e3d6000fd5b505050506001600160a01b038316600090815260106020526040812080549161099183612998565b90915550506001600160a01b03821660009081526010602052604081208054916109ba836129af565b91905055505b6108f7838383611901565b60006109d683611039565b8210610a385760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a8b5760405162461bcd60e51b81526004016107c1906129ca565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610ad75760405162461bcd60e51b81526004016107c1906129ca565b600f805460ff19811660ff90911615179055565b600a546001600160a01b03163314610b155760405162461bcd60e51b81526004016107c1906129ca565b6040514790339082156108fc029083906000818181858888f19350505050158015610b44573d6000803e3d6000fd5b5050565b6108f7838383604051806020016040528060008152506115ad565b60606000610b7083611039565b905060008167ffffffffffffffff811115610b8d57610b8d612736565b604051908082528060200260200182016040528015610bb6578160200160208202803683370190505b50905060005b82811015610bfd57610bce85826109cb565b828281518110610be057610be06129ff565b602090810291909101015280610bf5816129af565b915050610bbc565b509392505050565b6000610c1060085490565b8210610c735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c1565b60088281548110610c8657610c866129ff565b90600052602060002001549050919050565b600a546001600160a01b03163314610cc25760405162461bcd60e51b81526004016107c1906129ca565b8051610b4490600b906020840190612502565b6000818152600260205260408120546001600160a01b0316806106b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c1565b6000610d5760085490565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909150610d9b9084611932565b610df15760405162461bcd60e51b815260206004820152602160248201527f5468697320686173682773207369676e617475726520697320696e76616c69646044820152601760f91b60648201526084016107c1565b600f5460ff16610e435760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e74000060448201526064016107c1565b600082118015610e54575060028211155b610e9a5760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a59081c1d5c98da185cd948185b5bdd5b9d604a1b60448201526064016107c1565b600d5433600090815260116020526040902054610eb8908490612a15565b1115610f165760405162461bcd60e51b815260206004820152602760248201527f596f752063616e6e6f74206d696e7420616e79206d6f72652070726573616c656044820152661021b937b1ad1760c91b60648201526084016107c1565b600c54610f23828461196e565b1115610f415760405162461bcd60e51b81526004016107c190612a2d565b600e543490610f50908461197a565b14610f9d5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107c1565b3360009081526011602052604081208054849290610fbc908490612a15565b90915550600090505b8281101561103357610fe033610fdb8385612a15565b611986565b336000908152601060205260408120805491610ffb836129af565b909155505033600090815260126020526040812080549161101b836129af565b9190505550808061102b906129af565b915050610fc5565b50505050565b60006001600160a01b0382166110a45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110ea5760405162461bcd60e51b81526004016107c1906129ca565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461115e5760405162461bcd60e51b81526004016107c1906129ca565b600f805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146111a55760405162461bcd60e51b81526004016107c1906129ca565b600e55565b6060600180546106c990612947565b600a546001600160a01b031633146111e35760405162461bcd60e51b81526004016107c1906129ca565b60006111ee60085490565b600c549091506111fe828461196e565b111561121c5760405162461bcd60e51b81526004016107c190612a2d565b60005b828110156108f75761123533610fdb8385612a15565b336000908152601060205260408120805491611250836129af565b91905055508080611260906129af565b91505061121f565b600061127360085490565b90503332146112c45760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420757365206120636f6e747261637420746f206d696e7400000060448201526064016107c1565b600f54610100900460ff1661131b5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107c1565b60008211801561132c575060058211155b6113725760405162461bcd60e51b8152602060048201526017602482015276125b9d985b1a59081c1d5c98da185cd948185b5bdd5b9d604a1b60448201526064016107c1565b33600090815260126020526040902054600590611390908490612a15565b11156113f55760405162461bcd60e51b815260206004820152602e60248201527f596f752068617665206d696e74656420746865206d6178696d756d20616c6c6f60448201526d1dd959081c195c881dd85b1b195d60921b60648201526084016107c1565b600c54611402828461196e565b11156114205760405162461bcd60e51b81526004016107c190612a2d565b600e54349061142f908461197a565b1461147c5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107c1565b60005b828110156108f75761149533610fdb8385612a15565b3360009081526010602052604081208054916114b0836129af565b90915550503360009081526012602052604081208054916114d0836129af565b919050555080806114e0906129af565b91505061147f565b6001600160a01b0382163314156115415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c5482101561167157601354604051630fe06d9560e11b81526001600160a01b038681166004830152858116602483015290911690631fc0db2a90604401600060405180830381600087803b15801561160657600080fd5b505af115801561161a573d6000803e3d6000fd5b505050506001600160a01b038416600090815260106020526040812080549161164283612998565b90915550506001600160a01b038316600090815260106020526040812080549161166b836129af565b91905055505b611033848484846119a0565b6000818152600260205260409020546060906001600160a01b03166116fc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c1565b60006117066119d2565b905060008151116117265760405180602001604052806000815250611751565b80611730846119e1565b604051602001611741929190612a76565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117825760405162461bcd60e51b81526004016107c1906129ca565b6001600160a01b0381166117e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061187457506001600160e01b03198216635b5e139f60e01b145b806106b457506301ffc9a760e01b6001600160e01b03198316146106b4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118c882610cd5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61190b3382611ae7565b6119275760405162461bcd60e51b81526004016107c190612aa5565b6108f7838383611bda565b600061193e8383611d85565b6001600160a01b0316738f20d89bee77ea2abbaf46b5def3ef109ab9d3586001600160a01b031614905092915050565b60006117518284612a15565b60006117518284612af6565b610b44828260405180602001604052806000815250611d91565b6119aa3383611ae7565b6119c65760405162461bcd60e51b81526004016107c190612aa5565b61103384848484611dc4565b6060600b80546106c990612947565b606081611a055750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a2f5780611a19816129af565b9150611a289050600a83612b2b565b9150611a09565b60008167ffffffffffffffff811115611a4a57611a4a612736565b6040519080825280601f01601f191660200182016040528015611a74576020820181803683370190505b5090505b8415611adf57611a89600183612b3f565b9150611a96600a86612b56565b611aa1906030612a15565b60f81b818381518110611ab657611ab66129ff565b60200101906001600160f81b031916908160001a905350611ad8600a86612b2b565b9450611a78565b949350505050565b6000818152600260205260408120546001600160a01b0316611b605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c1565b6000611b6b83610cd5565b9050806001600160a01b0316846001600160a01b03161480611ba65750836001600160a01b0316611b9b8461074c565b6001600160a01b0316145b80611adf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611adf565b826001600160a01b0316611bed82610cd5565b6001600160a01b031614611c555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c1565b6001600160a01b038216611cb75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c1565b611cc2838383611df7565b611ccd600082611893565b6001600160a01b0383166000908152600360205260408120805460019290611cf6908490612b3f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d24908490612a15565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117518383611eaf565b611d9b8383611f53565b611da860008484846120a1565b6108f75760405162461bcd60e51b81526004016107c190612b6a565b611dcf848484611bda565b611ddb848484846120a1565b6110335760405162461bcd60e51b81526004016107c190612b6a565b6001600160a01b038316611e5257611e4d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e75565b816001600160a01b0316836001600160a01b031614611e7557611e75838261219f565b6001600160a01b038216611e8c576108f78161223c565b826001600160a01b0316826001600160a01b0316146108f7576108f782826122eb565b6000815160411415611ee35760208201516040830151606084015160001a611ed98682858561232f565b93505050506106b4565b815160401415611f0b5760208201516040830151611f028583836124d8565b925050506106b4565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107c1565b6001600160a01b038216611fa95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c1565b6000818152600260205260409020546001600160a01b03161561200e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c1565b61201a60008383611df7565b6001600160a01b0382166000908152600360205260408120805460019290612043908490612a15565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561219457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120e5903390899088908890600401612bbc565b6020604051808303816000875af1925050508015612120575060408051601f3d908101601f1916820190925261211d91810190612bef565b60015b61217a573d80801561214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5080516121725760405162461bcd60e51b81526004016107c190612b6a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611adf565b506001949350505050565b600060016121ac84611039565b6121b69190612b3f565b600083815260076020526040902054909150808214612209576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061224e90600190612b3f565b60008381526009602052604081205460088054939450909284908110612276576122766129ff565b906000526020600020015490508060088381548110612297576122976129ff565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122cf576122cf612c0c565b6001900381819060005260206000200160009055905550505050565b60006122f683611039565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156123ac5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107c1565b8360ff16601b14806123c157508360ff16601c145b6124185760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016107c1565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561246c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124cf5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107c1565b95945050505050565b60006001600160ff1b03821660ff83901c601b016124f88682878561232f565b9695505050505050565b82805461250e90612947565b90600052602060002090601f0160209004810192826125305760008555612576565b82601f1061254957805160ff1916838001178555612576565b82800160010185558215612576579182015b8281111561257657825182559160200191906001019061255b565b50612582929150612586565b5090565b5b808211156125825760008155600101612587565b6001600160e01b0319811681146125b157600080fd5b50565b6000602082840312156125c657600080fd5b81356117518161259b565b60005b838110156125ec5781810151838201526020016125d4565b838111156110335750506000910152565b600081518084526126158160208601602086016125d1565b601f01601f19169290920160200192915050565b60208152600061175160208301846125fd565b60006020828403121561264e57600080fd5b5035919050565b80356001600160a01b038116811461266c57600080fd5b919050565b6000806040838503121561268457600080fd5b61268d83612655565b946020939093013593505050565b6000806000606084860312156126b057600080fd5b6126b984612655565b92506126c760208501612655565b9150604084013590509250925092565b6000602082840312156126e957600080fd5b61175182612655565b6020808252825182820181905260009190848201906040850190845b8181101561272a5783518352928401929184019160010161270e565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561276757612767612736565b604051601f8501601f19908116603f0116810190828211818310171561278f5761278f612736565b816040528093508581528686860111156127a857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127d457600080fd5b813567ffffffffffffffff8111156127eb57600080fd5b8201601f810184136127fc57600080fd5b611adf8482356020840161274c565b600082601f83011261281c57600080fd5b6117518383356020850161274c565b6000806040838503121561283e57600080fd5b823567ffffffffffffffff81111561285557600080fd5b6128618582860161280b565b95602094909401359450505050565b6000806040838503121561288357600080fd5b61288c83612655565b9150602083013580151581146128a157600080fd5b809150509250929050565b600080600080608085870312156128c257600080fd5b6128cb85612655565b93506128d960208601612655565b925060408501359150606085013567ffffffffffffffff8111156128fc57600080fd5b6129088782880161280b565b91505092959194509250565b6000806040838503121561292757600080fd5b61293083612655565b915061293e60208401612655565b90509250929050565b600181811c9082168061295b57607f821691505b6020821081141561297c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816129a7576129a7612982565b506000190190565b60006000198214156129c3576129c3612982565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008219821115612a2857612a28612982565b500190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c796040820152681037b31021b937b1ad60b91b606082015260800190565b60008351612a888184602088016125d1565b835190830190612a9c8183602088016125d1565b01949350505050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000816000190483118215151615612b1057612b10612982565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612b3a57612b3a612b15565b500490565b600082821015612b5157612b51612982565b500390565b600082612b6557612b65612b15565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124f8908301846125fd565b600060208284031215612c0157600080fd5b81516117518161259b565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200358ec02fc0131c72a5da7a736da8f29db18f0b551fa327f6b2fb77cae9a3e9d64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000015b30000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000543726f635a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543524f435a000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): CrocZ
Arg [1] : symbol (string): CROCZ
Arg [2] : supply (uint256): 5555
Arg [3] : maxMint (uint256): 2
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 43726f635a000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 43524f435a000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
55727:1141:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44852:237;;;;;;;;;;-1:-1:-1;44852:237:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;44852:237:0;;;;;;;;33371:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34831:221::-;;;;;;;;;;-1:-1:-1;34831:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34831:221:0;1528:203:1;34368:397:0;;;;;;;;;;-1:-1:-1;34368:397:0;;;;;:::i;:::-;;:::i;:::-;;45505:113;;;;;;;;;;-1:-1:-1;45593:10:0;:17;45505:113;;;2319:25:1;;;2307:2;2292:18;45505:113:0;2173:177:1;56214:305:0;;;;;;;;;;-1:-1:-1;56214:305:0;;;;;:::i;:::-;;:::i;45173:256::-;;;;;;;;;;-1:-1:-1;45173:256:0;;;;;:::i;:::-;;:::i;56096:106::-;;;;;;;;;;-1:-1:-1;56096:106:0;;;;;:::i;:::-;;:::i;55074:91::-;;;;;;;;;;;;;:::i;54923:143::-;;;;;;;;;;;;;:::i;36097:151::-;;;;;;;;;;-1:-1:-1;36097:151:0;;;;;:::i;:::-;;:::i;54574:341::-;;;;;;;;;;-1:-1:-1;54574:341:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45695:233::-;;;;;;;;;;-1:-1:-1;45695:233:0;;;;;:::i;:::-;;:::i;51270:33::-;;;;;;;;;;-1:-1:-1;51270:33:0;;;;;;;;55928:19;;;;;;;;;;-1:-1:-1;55928:19:0;;;;-1:-1:-1;;;;;55928:19:0;;;55363:88;;;;;;;;;;-1:-1:-1;55363:88:0;;;;;:::i;:::-;;:::i;33065:239::-;;;;;;;;;;-1:-1:-1;33065:239:0;;;;;:::i;:::-;;:::i;52570:1095::-;;;;;;:::i;:::-;;:::i;51310:30::-;;;;;;;;;;-1:-1:-1;51310:30:0;;;;;;;;;;;32795:208;;;;;;;;;;-1:-1:-1;32795:208:0;;;;;:::i;:::-;;:::i;15884:148::-;;;;;;;;;;;;;:::i;55173:82::-;;;;;;;;;;;;;:::i;15233:87::-;;;;;;;;;;-1:-1:-1;15306:6:0;;-1:-1:-1;;;;;15306:6:0;15233:87;;55263:88;;;;;;;;;;-1:-1:-1;55263:88:0;;;;;:::i;:::-;;:::i;33540:104::-;;;;;;;;;;;;;:::i;52188:374::-;;;;;;;;;;-1:-1:-1;52188:374:0;;;;;:::i;:::-;;:::i;51227:34::-;;;;;;;;;;;;;;;;53672:894;;;;;;:::i;:::-;;:::i;35124:295::-;;;;;;;;;;-1:-1:-1;35124:295:0;;;;;:::i;:::-;;:::i;51195:25::-;;;;;;;;;;;;;;;;56527:338;;;;;;;;;;-1:-1:-1;56527:338:0;;;;;:::i;:::-;;:::i;33715:360::-;;;;;;;;;;-1:-1:-1;33715:360:0;;;;;:::i;:::-;;:::i;51164:24::-;;;;;;;;;;;;;;;;51349:50;;;;;;;;;;-1:-1:-1;51349:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;35490:164;;;;;;;;;;-1:-1:-1;35490:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35611:25:0;;;35587:4;35611:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35490:164;16187:244;;;;;;;;;;-1:-1:-1;16187:244:0;;;;;:::i;:::-;;:::i;44852:237::-;44954:4;-1:-1:-1;;;;;;44978:50:0;;-1:-1:-1;;;44978:50:0;;:103;;;45045:36;45069:11;45045:23;:36::i;:::-;44971:110;44852:237;-1:-1:-1;;44852:237:0:o;33371:100::-;33425:13;33458:5;33451:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33371:100;:::o;34831:221::-;34907:7;38160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38160:16:0;34927:73;;;;-1:-1:-1;;;34927:73:0;;7329:2:1;34927:73:0;;;7311:21:1;7368:2;7348:18;;;7341:30;7407:34;7387:18;;;7380:62;-1:-1:-1;;;7458:18:1;;;7451:42;7510:19;;34927:73:0;;;;;;;;;-1:-1:-1;35020:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35020:24:0;;34831:221::o;34368:397::-;34449:13;34465:23;34480:7;34465:14;:23::i;:::-;34449:39;;34513:5;-1:-1:-1;;;;;34507:11:0;:2;-1:-1:-1;;;;;34507:11:0;;;34499:57;;;;-1:-1:-1;;;34499:57:0;;7742:2:1;34499:57:0;;;7724:21:1;7781:2;7761:18;;;7754:30;7820:34;7800:18;;;7793:62;-1:-1:-1;;;7871:18:1;;;7864:31;7912:19;;34499:57:0;7540:397:1;34499:57:0;14464:10;-1:-1:-1;;;;;34577:21:0;;;;:62;;-1:-1:-1;34602:37:0;34619:5;14464:10;35490:164;:::i;34602:37::-;34569:154;;;;-1:-1:-1;;;34569:154:0;;8144:2:1;34569:154:0;;;8126:21:1;8183:2;8163:18;;;8156:30;8222:34;8202:18;;;8195:62;8293:26;8273:18;;;8266:54;8337:19;;34569:154:0;7942:420:1;34569:154:0;34736:21;34745:2;34749:7;34736:8;:21::i;:::-;34438:327;34368:397;;:::o;56214:305::-;56320:9;;56310:7;:19;56306:157;;;56346:5;;:33;;-1:-1:-1;;;56346:33:0;;-1:-1:-1;;;;;8597:15:1;;;56346:33:0;;;8579:34:1;8649:15;;;8629:18;;;8622:43;56346:5:0;;;;:23;;8514:18:1;;56346:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;56394:20:0;;;;;;:14;:20;;;;;:22;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;56431:18:0;;;;;;:14;:18;;;;;:20;;;;;;:::i;:::-;;;;;;56306:157;56473:38;56493:4;56499:2;56503:7;56473:19;:38::i;45173:256::-;45270:7;45306:23;45323:5;45306:16;:23::i;:::-;45298:5;:31;45290:87;;;;-1:-1:-1;;;45290:87:0;;9291:2:1;45290:87:0;;;9273:21:1;9330:2;9310:18;;;9303:30;9369:34;9349:18;;;9342:62;-1:-1:-1;;;9420:18:1;;;9413:41;9471:19;;45290:87:0;9089:407:1;45290:87:0;-1:-1:-1;;;;;;45395:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45173:256::o;56096:106::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;56166:5:::1;:28:::0;;-1:-1:-1;;;;;;56166:28:0::1;-1:-1:-1::0;;;;;56166:28:0;;;::::1;::::0;;;::::1;::::0;;56096:106::o;55074:91::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;55144:13:::1;::::0;;-1:-1:-1;;55127:30:0;::::1;55144:13;::::0;;::::1;55143:14;55127:30;::::0;;55074:91::o;54923:143::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;55021:37:::1;::::0;54989:21:::1;::::0;55029:10:::1;::::0;55021:37;::::1;;;::::0;54989:21;;54971:15:::1;55021:37:::0;54971:15;55021:37;54989:21;55029:10;55021:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54960:106;54923:143::o:0;36097:151::-;36201:39;36218:4;36224:2;36228:7;36201:39;;;;;;;;;;;;:16;:39::i;54574:341::-;54634:16;54663:18;54684:16;54694:5;54684:9;:16::i;:::-;54663:37;;54713:25;54755:10;54741:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54741:25:0;;54713:53;;54781:9;54777:105;54796:10;54792:1;:14;54777:105;;;54841:29;54861:5;54868:1;54841:19;:29::i;:::-;54827:8;54836:1;54827:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;54808:3;;;;:::i;:::-;;;;54777:105;;;-1:-1:-1;54899:8:0;54574:341;-1:-1:-1;;;54574:341:0:o;45695:233::-;45770:7;45806:30;45593:10;:17;;45505:113;45806:30;45798:5;:38;45790:95;;;;-1:-1:-1;;;45790:95:0;;10196:2:1;45790:95:0;;;10178:21:1;10235:2;10215:18;;;10208:30;10274:34;10254:18;;;10247:62;-1:-1:-1;;;10325:18:1;;;10318:42;10377:19;;45790:95:0;9994:408:1;45790:95:0;45903:10;45914:5;45903:17;;;;;;;;:::i;:::-;;;;;;;;;45896:24;;45695:233;;;:::o;55363:88::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;55430:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33065:239::-:0;33137:7;33173:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33173:16:0;33208:19;33200:73;;;;-1:-1:-1;;;33200:73:0;;10609:2:1;33200:73:0;;;10591:21:1;10648:2;10628:18;;;10621:30;10687:34;10667:18;;;10660:62;-1:-1:-1;;;10738:18:1;;;10731:39;10787:19;;33200:73:0;10407:405:1;52570:1095:0;52664:14;52681:13;45593:10;:17;;45505:113;52681:13;51809:26;;;52727:10;17000:2:1;16996:15;-1:-1:-1;;16992:53:1;51809:26:0;;;;16980:66:1;;;;51809:26:0;;;;;;;;;17062:12:1;;;;51809:26:0;;;51799:37;;;;;52664:30;;-1:-1:-1;52713:37:0;;52740:9;52713:7;:37::i;:::-;52705:108;;;;-1:-1:-1;;;52705:108:0;;11019:2:1;52705:108:0;;;11001:21:1;11058:2;11038:18;;;11031:30;11097:34;11077:18;;;11070:62;-1:-1:-1;;;11148:18:1;;;11141:31;11189:19;;52705:108:0;10817:397:1;52705:108:0;52832:13;;;;52824:105;;;;-1:-1:-1;;;52824:105:0;;11421:2:1;52824:105:0;;;11403:21:1;11460:2;11440:18;;;11433:30;11499:32;11479:18;;;11472:60;11549:18;;52824:105:0;11219:354:1;52824:105:0;52964:1;52948:13;:17;:39;;;;;52986:1;52969:13;:18;;52948:39;52940:98;;;;-1:-1:-1;;;52940:98:0;;11780:2:1;52940:98:0;;;11762:21:1;11819:2;11799:18;;;11792:30;-1:-1:-1;;;11838:18:1;;;11831:53;11901:18;;52940:98:0;11578:347:1;52940:98:0;53108:10;;53077;53057:31;;;;:19;:31;;;;;;:47;;53091:13;;53057:47;:::i;:::-;:61;;53049:114;;;;-1:-1:-1;;;53049:114:0;;12265:2:1;53049:114:0;;;12247:21:1;12304:2;12284:18;;;12277:30;12343:34;12323:18;;;12316:62;-1:-1:-1;;;12394:18:1;;;12387:37;12441:19;;53049:114:0;12063:403:1;53049:114:0;53211:9;;53182:25;:6;53193:13;53182:10;:25::i;:::-;:38;;53174:116;;;;-1:-1:-1;;;53174:116:0;;;;;;;:::i;:::-;53309:5;;53337:9;;53309:24;;53319:13;53309:9;:24::i;:::-;:37;53301:106;;;;-1:-1:-1;;;53301:106:0;;13083:2:1;53301:106:0;;;13065:21:1;13122:2;13102:18;;;13095:30;13161:33;13141:18;;;13134:61;13212:18;;53301:106:0;12881:355:1;53301:106:0;53438:10;53418:31;;;;:19;:31;;;;;:48;;53453:13;;53418:31;:48;;53453:13;;53418:48;:::i;:::-;;;;-1:-1:-1;53483:9:0;;-1:-1:-1;53479:179:0;53498:13;53494:1;:17;53479:179;;;53532:33;53542:10;53554;53563:1;53554:6;:10;:::i;:::-;53532:9;:33::i;:::-;53595:10;53580:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;-1:-1:-1;;53633:10:0;53623:21;;;;:9;:21;;;;;:23;;;;;;:::i;:::-;;;;;;53513:3;;;;;:::i;:::-;;;;53479:179;;;;52653:1012;52570:1095;;:::o;32795:208::-;32867:7;-1:-1:-1;;;;;32895:19:0;;32887:74;;;;-1:-1:-1;;;32887:74:0;;13443:2:1;32887:74:0;;;13425:21:1;13482:2;13462:18;;;13455:30;13521:34;13501:18;;;13494:62;-1:-1:-1;;;13572:18:1;;;13565:40;13622:19;;32887:74:0;13241:406:1;32887:74:0;-1:-1:-1;;;;;;32979:16:0;;;;;:9;:16;;;;;;;32795:208::o;15884:148::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;15975:6:::1;::::0;15954:40:::1;::::0;15991:1:::1;::::0;-1:-1:-1;;;;;15975:6:0::1;::::0;15954:40:::1;::::0;15991:1;;15954:40:::1;16005:6;:19:::0;;-1:-1:-1;;;;;;16005:19:0::1;::::0;;15884:148::o;55173:82::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;55237:10:::1;::::0;;-1:-1:-1;;55223:24:0;::::1;55237:10;::::0;;;::::1;;;55236:11;55223:24:::0;;::::1;;::::0;;55173:82::o;55263:88::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;55327:5:::1;:16:::0;55263:88::o;33540:104::-;33596:13;33629:7;33622:14;;;;;:::i;52188:374::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;52258:14:::1;52275:13;45593:10:::0;:17;;45505:113;52275:13:::1;52336:9;::::0;52258:30;;-1:-1:-1;52307:25:0::1;52258:30:::0;52318:13;52307:10:::1;:25::i;:::-;:38;;52299:94;;;;-1:-1:-1::0;;;52299:94:0::1;;;;;;;:::i;:::-;52418:9;52414:141;52433:13;52429:1;:17;52414:141;;;52467:33;52477:10;52489;52498:1:::0;52489:6;:10:::1;:::i;52467:33::-;52530:10;52515:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;;;;;;52448:3;;;;;:::i;:::-;;;;52414:141;;53672:894:::0;53735:14;53752:13;45593:10;:17;;45505:113;53752:13;53735:30;-1:-1:-1;53784:10:0;53798:9;53784:23;53776:84;;;;-1:-1:-1;;;53776:84:0;;13854:2:1;53776:84:0;;;13836:21:1;13893:2;13873:18;;;13866:30;13932:31;13912:18;;;13905:59;13981:18;;53776:84:0;13652:353:1;53776:84:0;53879:10;;;;;;;53871:82;;;;-1:-1:-1;;;53871:82:0;;14212:2:1;53871:82:0;;;14194:21:1;14251:2;14231:18;;;14224:30;14290:29;14270:18;;;14263:57;14337:18;;53871:82:0;14010:351:1;53871:82:0;53988:1;53972:13;:17;:39;;;;;54010:1;53993:13;:18;;53972:39;53964:78;;;;-1:-1:-1;;;53964:78:0;;11780:2:1;53964:78:0;;;11762:21:1;11819:2;11799:18;;;11792:30;-1:-1:-1;;;11838:18:1;;;11831:53;11901:18;;53964:78:0;11578:347:1;53964:78:0;54071:10;54061:21;;;;:9;:21;;;;;;54102:1;;54061:37;;54085:13;;54061:37;:::i;:::-;:42;;54053:101;;;;-1:-1:-1;;;54053:101:0;;14568:2:1;54053:101:0;;;14550:21:1;14607:2;14587:18;;;14580:30;14646:34;14626:18;;;14619:62;-1:-1:-1;;;14697:18:1;;;14690:44;14751:19;;54053:101:0;14366:410:1;54053:101:0;54202:9;;54173:25;:6;54184:13;54173:10;:25::i;:::-;:38;;54165:96;;;;-1:-1:-1;;;54165:96:0;;;;;;;:::i;:::-;54280:5;;54308:9;;54280:24;;54290:13;54280:9;:24::i;:::-;:37;54272:86;;;;-1:-1:-1;;;54272:86:0;;13083:2:1;54272:86:0;;;13065:21:1;13122:2;13102:18;;;13095:30;13161:33;13141:18;;;13134:61;13212:18;;54272:86:0;12881:355:1;54272:86:0;54383:9;54379:180;54398:13;54394:1;:17;54379:180;;;54433:33;54443:10;54455;54464:1;54455:6;:10;:::i;54433:33::-;54496:10;54481:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;-1:-1:-1;;54534:10:0;54524:21;;;;:9;:21;;;;;:23;;;;;;:::i;:::-;;;;;;54413:3;;;;;:::i;:::-;;;;54379:180;;35124:295;-1:-1:-1;;;;;35227:24:0;;14464:10;35227:24;;35219:62;;;;-1:-1:-1;;;35219:62:0;;14983:2:1;35219:62:0;;;14965:21:1;15022:2;15002:18;;;14995:30;15061:27;15041:18;;;15034:55;15106:18;;35219:62:0;14781:349:1;35219:62:0;14464:10;35294:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35294:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35294:53:0;;;;;;;;;;35363:48;;540:41:1;;;35294:42:0;;14464:10;35363:48;;513:18:1;35363:48:0;;;;;;;35124:295;;:::o;56527:338::-;56656:9;;56646:7;:19;56642:157;;;56682:5;;:33;;-1:-1:-1;;;56682:33:0;;-1:-1:-1;;;;;8597:15:1;;;56682:33:0;;;8579:34:1;8649:15;;;8629:18;;;8622:43;56682:5:0;;;;:23;;8514:18:1;;56682:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;56730:20:0;;;;;;:14;:20;;;;;:22;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;56767:18:0;;;;;;:14;:18;;;;;:20;;;;;;:::i;:::-;;;;;;56642:157;56809:48;56833:4;56839:2;56843:7;56852:4;56809:23;:48::i;33715:360::-;38136:4;38160:16;;;:7;:16;;;;;;33788:13;;-1:-1:-1;;;;;38160:16:0;33814:76;;;;-1:-1:-1;;;33814:76:0;;15337:2:1;33814:76:0;;;15319:21:1;15376:2;15356:18;;;15349:30;15415:34;15395:18;;;15388:62;-1:-1:-1;;;15466:18:1;;;15459:45;15521:19;;33814:76:0;15135:411:1;33814:76:0;33903:21;33927:10;:8;:10::i;:::-;33903:34;;33979:1;33961:7;33955:21;:25;:112;;;;;;;;;;;;;;;;;34020:7;34029:18;:7;:16;:18::i;:::-;34003:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33955:112;33948:119;33715:360;-1:-1:-1;;;33715:360:0:o;16187:244::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16276:22:0;::::1;16268:73;;;::::0;-1:-1:-1;;;16268:73:0;;16228:2:1;16268:73:0::1;::::0;::::1;16210:21:1::0;16267:2;16247:18;;;16240:30;16306:34;16286:18;;;16279:62;-1:-1:-1;;;16357:18:1;;;16350:36;16403:19;;16268:73:0::1;16026:402:1::0;16268:73:0::1;16378:6;::::0;16357:38:::1;::::0;-1:-1:-1;;;;;16357:38:0;;::::1;::::0;16378:6:::1;::::0;16357:38:::1;::::0;16378:6:::1;::::0;16357:38:::1;16406:6;:17:::0;;-1:-1:-1;;;;;;16406:17:0::1;-1:-1:-1::0;;;;;16406:17:0;;;::::1;::::0;;;::::1;::::0;;16187:244::o;32439:292::-;32541:4;-1:-1:-1;;;;;;32565:40:0;;-1:-1:-1;;;32565:40:0;;:105;;-1:-1:-1;;;;;;;32622:48:0;;-1:-1:-1;;;32622:48:0;32565:105;:158;;;-1:-1:-1;;;;;;;;;;25645:40:0;;;32687:36;25536:157;41948:174;42023:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42023:29:0;-1:-1:-1;;;;;42023:29:0;;;;;;;;:24;;42077:23;42023:24;42077:14;:23::i;:::-;-1:-1:-1;;;;;42068:46:0;;;;;;;;;;;41948:174;;:::o;35721:305::-;35882:41;14464:10;35915:7;35882:18;:41::i;:::-;35874:103;;;;-1:-1:-1;;;35874:103:0;;;;;;;:::i;:::-;35990:28;36000:4;36006:2;36010:7;35990:9;:28::i;51852:183::-;51930:4;51955:25;51964:4;51970:9;51955:8;:25::i;:::-;-1:-1:-1;;;;;51955:71:0;51984:42;-1:-1:-1;;;;;51955:71:0;;51947:80;;51852:183;;;;:::o;8120:98::-;8178:7;8205:5;8209:1;8205;:5;:::i;8858:98::-;8916:7;8943:5;8947:1;8943;:5;:::i;39055:110::-;39131:26;39141:2;39145:7;39131:26;;;;;;;;;;;;:9;:26::i;36319:285::-;36451:41;14464:10;36484:7;36451:18;:41::i;:::-;36443:103;;;;-1:-1:-1;;;36443:103:0;;;;;;;:::i;:::-;36557:39;36571:4;36577:2;36581:7;36590:5;36557:13;:39::i;55463:100::-;55515:13;55548:7;55541:14;;;;;:::i;12594:723::-;12650:13;12871:10;12867:53;;-1:-1:-1;;12898:10:0;;;;;;;;;;;;-1:-1:-1;;;12898:10:0;;;;;12594:723::o;12867:53::-;12945:5;12930:12;12986:78;12993:9;;12986:78;;13019:8;;;;:::i;:::-;;-1:-1:-1;13042:10:0;;-1:-1:-1;13050:2:0;13042:10;;:::i;:::-;;;12986:78;;;13074:19;13106:6;13096:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13096:17:0;;13074:39;;13124:154;13131:10;;13124:154;;13158:11;13168:1;13158:11;;:::i;:::-;;-1:-1:-1;13227:10:0;13235:2;13227:5;:10;:::i;:::-;13214:24;;:2;:24;:::i;:::-;13201:39;;13184:6;13191;13184:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13184:56:0;;;;;;;;-1:-1:-1;13255:11:0;13264:2;13255:11;;:::i;:::-;;;13124:154;;;13302:6;12594:723;-1:-1:-1;;;;12594:723:0:o;38365:348::-;38458:4;38160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38160:16:0;38475:73;;;;-1:-1:-1;;;38475:73:0;;17964:2:1;38475:73:0;;;17946:21:1;18003:2;17983:18;;;17976:30;18042:34;18022:18;;;18015:62;-1:-1:-1;;;18093:18:1;;;18086:42;18145:19;;38475:73:0;17762:408:1;38475:73:0;38559:13;38575:23;38590:7;38575:14;:23::i;:::-;38559:39;;38628:5;-1:-1:-1;;;;;38617:16:0;:7;-1:-1:-1;;;;;38617:16:0;;:51;;;;38661:7;-1:-1:-1;;;;;38637:31:0;:20;38649:7;38637:11;:20::i;:::-;-1:-1:-1;;;;;38637:31:0;;38617:51;:87;;;-1:-1:-1;;;;;;35611:25:0;;;35587:4;35611:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38672:32;35490:164;41286:544;41411:4;-1:-1:-1;;;;;41384:31:0;:23;41399:7;41384:14;:23::i;:::-;-1:-1:-1;;;;;41384:31:0;;41376:85;;;;-1:-1:-1;;;41376:85:0;;18377:2:1;41376:85:0;;;18359:21:1;18416:2;18396:18;;;18389:30;18455:34;18435:18;;;18428:62;-1:-1:-1;;;18506:18:1;;;18499:39;18555:19;;41376:85:0;18175:405:1;41376:85:0;-1:-1:-1;;;;;41480:16:0;;41472:65;;;;-1:-1:-1;;;41472:65:0;;18787:2:1;41472:65:0;;;18769:21:1;18826:2;18806:18;;;18799:30;18865:34;18845:18;;;18838:62;-1:-1:-1;;;18916:18:1;;;18909:34;18960:19;;41472:65:0;18585:400:1;41472:65:0;41550:39;41571:4;41577:2;41581:7;41550:20;:39::i;:::-;41654:29;41671:1;41675:7;41654:8;:29::i;:::-;-1:-1:-1;;;;;41696:15:0;;;;;;:9;:15;;;;;:20;;41715:1;;41696:15;:20;;41715:1;;41696:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41727:13:0;;;;;;:9;:13;;;;;:18;;41744:1;;41727:13;:18;;41744:1;;41727:18;:::i;:::-;;;;-1:-1:-1;;41756:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41756:21:0;-1:-1:-1;;;;;41756:21:0;;;;;;;;;41795:27;;41756:16;;41795:27;;;;;;;41286:544;;;:::o;52043:137::-;52122:7;52149:23;:4;52162:9;52149:12;:23::i;39392:250::-;39488:18;39494:2;39498:7;39488:5;:18::i;:::-;39525:54;39556:1;39560:2;39564:7;39573:5;39525:22;:54::i;:::-;39517:117;;;;-1:-1:-1;;;39517:117:0;;;;;;;:::i;37486:272::-;37600:28;37610:4;37616:2;37620:7;37600:9;:28::i;:::-;37647:48;37670:4;37676:2;37680:7;37689:5;37647:22;:48::i;:::-;37639:111;;;;-1:-1:-1;;;37639:111:0;;;;;;;:::i;46541:555::-;-1:-1:-1;;;;;46713:18:0;;46709:187;;46748:40;46780:7;47923:10;:17;;47896:24;;;;:15;:24;;;;;:44;;;47951:24;;;;;;;;;;;;47819:164;46748:40;46709:187;;;46818:2;-1:-1:-1;;;;;46810:10:0;:4;-1:-1:-1;;;;;46810:10:0;;46806:90;;46837:47;46870:4;46876:7;46837:32;:47::i;:::-;-1:-1:-1;;;;;46910:16:0;;46906:183;;46943:45;46980:7;46943:36;:45::i;46906:183::-;47016:4;-1:-1:-1;;;;;47010:10:0;:2;-1:-1:-1;;;;;47010:10:0;;47006:83;;47037:40;47065:2;47069:7;47037:27;:40::i;1103:1270::-;1181:7;1401:9;:16;1421:2;1401:22;1397:969;;;1697:4;1682:20;;1676:27;1747:4;1732:20;;1726:27;1805:4;1790:20;;1784:27;1440:9;1776:36;1848:22;1856:4;1776:36;1676:27;1726;1848:7;:22::i;:::-;1841:29;;;;;;;1397:969;1892:9;:16;1912:2;1892:22;1888:478;;;2167:4;2152:20;;2146:27;2218:4;2203:20;;2197:27;2260:20;2268:4;2146:27;2197;2260:7;:20::i;:::-;2253:27;;;;;;1888:478;2313:41;;-1:-1:-1;;;2313:41:0;;19611:2:1;2313:41:0;;;19593:21:1;19650:2;19630:18;;;19623:30;19689:33;19669:18;;;19662:61;19740:18;;2313:41:0;19409:355:1;39978:382:0;-1:-1:-1;;;;;40058:16:0;;40050:61;;;;-1:-1:-1;;;40050:61:0;;19971:2:1;40050:61:0;;;19953:21:1;;;19990:18;;;19983:30;20049:34;20029:18;;;20022:62;20101:18;;40050:61:0;19769:356:1;40050:61:0;38136:4;38160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38160:16:0;:30;40122:58;;;;-1:-1:-1;;;40122:58:0;;20332:2:1;40122:58:0;;;20314:21:1;20371:2;20351:18;;;20344:30;20410;20390:18;;;20383:58;20458:18;;40122:58:0;20130:352:1;40122:58:0;40193:45;40222:1;40226:2;40230:7;40193:20;:45::i;:::-;-1:-1:-1;;;;;40251:13:0;;;;;;:9;:13;;;;;:18;;40268:1;;40251:13;:18;;40268:1;;40251:18;:::i;:::-;;;;-1:-1:-1;;40280:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40280:21:0;-1:-1:-1;;;;;40280:21:0;;;;;;;;40319:33;;40280:16;;;40319:33;;40280:16;;40319:33;39978:382;;:::o;42687:843::-;42808:4;-1:-1:-1;;;;;42834:13:0;;17415:20;17454:8;42830:693;;42870:72;;-1:-1:-1;;;42870:72:0;;-1:-1:-1;;;;;42870:36:0;;;;;:72;;14464:10;;42921:4;;42927:7;;42936:5;;42870:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42870:72:0;;;;;;;;-1:-1:-1;;42870:72:0;;;;;;;;;;;;:::i;:::-;;;42866:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43116:13:0;;43112:341;;43159:60;;-1:-1:-1;;;43159:60:0;;;;;;;:::i;43112:341::-;43403:6;43397:13;43388:6;43384:2;43380:15;43373:38;42866:602;-1:-1:-1;;;;;;42993:55:0;-1:-1:-1;;;42993:55:0;;-1:-1:-1;42986:62:0;;42830:693;-1:-1:-1;43507:4:0;42687:843;;;;;;:::o;48610:988::-;48876:22;48926:1;48901:22;48918:4;48901:16;:22::i;:::-;:26;;;;:::i;:::-;48938:18;48959:26;;;:17;:26;;;;;;48876:51;;-1:-1:-1;49092:28:0;;;49088:328;;-1:-1:-1;;;;;49159:18:0;;49137:19;49159:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49210:30;;;;;;:44;;;49327:30;;:17;:30;;;;;:43;;;49088:328;-1:-1:-1;49512:26:0;;;;:17;:26;;;;;;;;49505:33;;;-1:-1:-1;;;;;49556:18:0;;;;;:12;:18;;;;;:34;;;;;;;49549:41;48610:988::o;49893:1079::-;50171:10;:17;50146:22;;50171:21;;50191:1;;50171:21;:::i;:::-;50203:18;50224:24;;;:15;:24;;;;;;50597:10;:26;;50146:46;;-1:-1:-1;50224:24:0;;50146:46;;50597:26;;;;;;:::i;:::-;;;;;;;;;50575:48;;50661:11;50636:10;50647;50636:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50741:28;;;:15;:28;;;;;;;:41;;;50913:24;;;;;50906:31;50948:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49964:1008;;;49893:1079;:::o;47397:221::-;47482:14;47499:20;47516:2;47499:16;:20::i;:::-;-1:-1:-1;;;;;47530:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47575:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47397:221:0:o;3135:1512::-;3263:7;4202:66;4188:80;;;4166:164;;;;-1:-1:-1;;;4166:164:0;;21569:2:1;4166:164:0;;;21551:21:1;21608:2;21588:18;;;21581:30;21647:34;21627:18;;;21620:62;-1:-1:-1;;;21698:18:1;;;21691:32;21740:19;;4166:164:0;21367:398:1;4166:164:0;4349:1;:7;;4354:2;4349:7;:18;;;;4360:1;:7;;4365:2;4360:7;4349:18;4341:65;;;;-1:-1:-1;;;4341:65:0;;21972:2:1;4341:65:0;;;21954:21:1;22011:2;21991:18;;;21984:30;22050:34;22030:18;;;22023:62;-1:-1:-1;;;22101:18:1;;;22094:32;22143:19;;4341:65:0;21770:398:1;4341:65:0;4521:24;;;4504:14;4521:24;;;;;;;;;22400:25:1;;;22473:4;22461:17;;22441:18;;;22434:45;;;;22495:18;;;22488:34;;;22538:18;;;22531:34;;;4521:24:0;;22372:19:1;;4521:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4521:24:0;;-1:-1:-1;;4521:24:0;;;-1:-1:-1;;;;;;;4564:20:0;;4556:57;;;;-1:-1:-1;;;4556:57:0;;22778:2:1;4556:57:0;;;22760:21:1;22817:2;22797:18;;;22790:30;22856:26;22836:18;;;22829:54;22900:18;;4556:57:0;22576:348:1;4556:57:0;4633:6;3135:1512;-1:-1:-1;;;;;3135:1512:0:o;2633:371::-;2744:7;-1:-1:-1;;;;;2831:75:0;;2933:3;2929:12;;;2943:2;2925:21;2974:22;2982:4;2925:21;2991:1;2831:75;2974:7;:22::i;:::-;2967:29;2633:371;-1:-1:-1;;;;;;2633:371:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3739:127::-;3800:10;3795:3;3791:20;3788:1;3781:31;3831:4;3828:1;3821:15;3855:4;3852:1;3845:15;3871:632;3936:5;3966:18;4007:2;3999:6;3996:14;3993:40;;;4013:18;;:::i;:::-;4088:2;4082:9;4056:2;4142:15;;-1:-1:-1;;4138:24:1;;;4164:2;4134:33;4130:42;4118:55;;;4188:18;;;4208:22;;;4185:46;4182:72;;;4234:18;;:::i;:::-;4274:10;4270:2;4263:22;4303:6;4294:15;;4333:6;4325;4318:22;4373:3;4364:6;4359:3;4355:16;4352:25;4349:45;;;4390:1;4387;4380:12;4349:45;4440:6;4435:3;4428:4;4420:6;4416:17;4403:44;4495:1;4488:4;4479:6;4471;4467:19;4463:30;4456:41;;;;3871:632;;;;;:::o;4508:451::-;4577:6;4630:2;4618:9;4609:7;4605:23;4601:32;4598:52;;;4646:1;4643;4636:12;4598:52;4686:9;4673:23;4719:18;4711:6;4708:30;4705:50;;;4751:1;4748;4741:12;4705:50;4774:22;;4827:4;4819:13;;4815:27;-1:-1:-1;4805:55:1;;4856:1;4853;4846:12;4805:55;4879:74;4945:7;4940:2;4927:16;4922:2;4918;4914:11;4879:74;:::i;4964:221::-;5006:5;5059:3;5052:4;5044:6;5040:17;5036:27;5026:55;;5077:1;5074;5067:12;5026:55;5099:80;5175:3;5166:6;5153:20;5146:4;5138:6;5134:17;5099:80;:::i;5190:388::-;5267:6;5275;5328:2;5316:9;5307:7;5303:23;5299:32;5296:52;;;5344:1;5341;5334:12;5296:52;5384:9;5371:23;5417:18;5409:6;5406:30;5403:50;;;5449:1;5446;5439:12;5403:50;5472:49;5513:7;5504:6;5493:9;5489:22;5472:49;:::i;:::-;5462:59;5568:2;5553:18;;;;5540:32;;-1:-1:-1;;;;5190:388:1:o;5583:347::-;5648:6;5656;5709:2;5697:9;5688:7;5684:23;5680:32;5677:52;;;5725:1;5722;5715:12;5677:52;5748:29;5767:9;5748:29;:::i;:::-;5738:39;;5827:2;5816:9;5812:18;5799:32;5874:5;5867:13;5860:21;5853:5;5850:32;5840:60;;5896:1;5893;5886:12;5840:60;5919:5;5909:15;;;5583:347;;;;;:::o;5935:537::-;6030:6;6038;6046;6054;6107:3;6095:9;6086:7;6082:23;6078:33;6075:53;;;6124:1;6121;6114:12;6075:53;6147:29;6166:9;6147:29;:::i;:::-;6137:39;;6195:38;6229:2;6218:9;6214:18;6195:38;:::i;:::-;6185:48;;6280:2;6269:9;6265:18;6252:32;6242:42;;6335:2;6324:9;6320:18;6307:32;6362:18;6354:6;6351:30;6348:50;;;6394:1;6391;6384:12;6348:50;6417:49;6458:7;6449:6;6438:9;6434:22;6417:49;:::i;:::-;6407:59;;;5935:537;;;;;;;:::o;6477:260::-;6545:6;6553;6606:2;6594:9;6585:7;6581:23;6577:32;6574:52;;;6622:1;6619;6612:12;6574:52;6645:29;6664:9;6645:29;:::i;:::-;6635:39;;6693:38;6727:2;6716:9;6712:18;6693:38;:::i;:::-;6683:48;;6477:260;;;;;:::o;6742:380::-;6821:1;6817:12;;;;6864;;;6885:61;;6939:4;6931:6;6927:17;6917:27;;6885:61;6992:2;6984:6;6981:14;6961:18;6958:38;6955:161;;;7038:10;7033:3;7029:20;7026:1;7019:31;7073:4;7070:1;7063:15;7101:4;7098:1;7091:15;6955:161;;6742:380;;;:::o;8676:127::-;8737:10;8732:3;8728:20;8725:1;8718:31;8768:4;8765:1;8758:15;8792:4;8789:1;8782:15;8808:136;8847:3;8875:5;8865:39;;8884:18;;:::i;:::-;-1:-1:-1;;;8920:18:1;;8808:136::o;8949:135::-;8988:3;-1:-1:-1;;9009:17:1;;9006:43;;;9029:18;;:::i;:::-;-1:-1:-1;9076:1:1;9065:13;;8949:135::o;9501:356::-;9703:2;9685:21;;;9722:18;;;9715:30;9781:34;9776:2;9761:18;;9754:62;9848:2;9833:18;;9501:356::o;9862:127::-;9923:10;9918:3;9914:20;9911:1;9904:31;9954:4;9951:1;9944:15;9978:4;9975:1;9968:15;11930:128;11970:3;12001:1;11997:6;11994:1;11991:13;11988:39;;;12007:18;;:::i;:::-;-1:-1:-1;12043:9:1;;11930:128::o;12471:405::-;12673:2;12655:21;;;12712:2;12692:18;;;12685:30;12751:34;12746:2;12731:18;;12724:62;-1:-1:-1;;;12817:2:1;12802:18;;12795:39;12866:3;12851:19;;12471:405::o;15551:470::-;15730:3;15768:6;15762:13;15784:53;15830:6;15825:3;15818:4;15810:6;15806:17;15784:53;:::i;:::-;15900:13;;15859:16;;;;15922:57;15900:13;15859:16;15956:4;15944:17;;15922:57;:::i;:::-;15995:20;;15551:470;-1:-1:-1;;;;15551:470:1:o;16433:413::-;16635:2;16617:21;;;16674:2;16654:18;;;16647:30;16713:34;16708:2;16693:18;;16686:62;-1:-1:-1;;;16779:2:1;16764:18;;16757:47;16836:3;16821:19;;16433:413::o;17085:168::-;17125:7;17191:1;17187;17183:6;17179:14;17176:1;17173:21;17168:1;17161:9;17154:17;17150:45;17147:71;;;17198:18;;:::i;:::-;-1:-1:-1;17238:9:1;;17085:168::o;17258:127::-;17319:10;17314:3;17310:20;17307:1;17300:31;17350:4;17347:1;17340:15;17374:4;17371:1;17364:15;17390:120;17430:1;17456;17446:35;;17461:18;;:::i;:::-;-1:-1:-1;17495:9:1;;17390:120::o;17515:125::-;17555:4;17583:1;17580;17577:8;17574:34;;;17588:18;;:::i;:::-;-1:-1:-1;17625:9:1;;17515:125::o;17645:112::-;17677:1;17703;17693:35;;17708:18;;:::i;:::-;-1:-1:-1;17742:9:1;;17645:112::o;18990:414::-;19192:2;19174:21;;;19231:2;19211:18;;;19204:30;19270:34;19265:2;19250:18;;19243:62;-1:-1:-1;;;19336:2:1;19321:18;;19314:48;19394:3;19379:19;;18990:414::o;20487:489::-;-1:-1:-1;;;;;20756:15:1;;;20738:34;;20808:15;;20803:2;20788:18;;20781:43;20855:2;20840:18;;20833:34;;;20903:3;20898:2;20883:18;;20876:31;;;20681:4;;20924:46;;20950:19;;20942:6;20924:46;:::i;20981:249::-;21050:6;21103:2;21091:9;21082:7;21078:23;21074:32;21071:52;;;21119:1;21116;21109:12;21071:52;21151:9;21145:16;21170:30;21194:5;21170:30;:::i;21235:127::-;21296:10;21291:3;21287:20;21284:1;21277:31;21327:4;21324:1;21317:15;21351:4;21348:1;21341:15
Swarm Source
ipfs://0358ec02fc0131c72a5da7a736da8f29db18f0b551fa327f6b2fb77cae9a3e9d
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.