ETH Price: $3,102.41 (+1.33%)
Gas: 4 Gwei

Token

Larva Chicks Club (CHICK)
 

Overview

Max Total Supply

2,390 CHICK

Holders

621

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CHICK
0x2Acd446278Bcc5907EE46205b19D7f21ceb60e1b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LarvaChicksClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-31
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/math/SafeMath.sol"
pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
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. 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;
        }
    }
}




// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * 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 {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
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();
    }
}


// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File: LarvaChicksClub.sol
pragma solidity ^0.8.0;

contract LarvaChicksClub is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string public baseURI;
    string public baseExtension = ".json";
    uint16 public counter = 0;
    uint8 public giveaway = 10;
    uint8 public constant maxPublicPurchase = 10;
    uint16 public maxSupply = 5000;
    bool public publicSale = true; 

    mapping(address => uint256) addressBlockBought;

    constructor(string memory tokenBaseUri) ERC721("Larva Chicks Club", "CHICK")  {
        // starting tokens from 1
        counter = counter + 1;

        setBaseURI(tokenBaseUri);
        mintForGiveaway();
    }


    /**
     * mint Larva Chicks
     */
    function mintChicks(uint8 numberOfTokens) public payable {
        uint256 supply = totalSupply();
        require(publicSale, "Public mint is not live right now.");
        require(addressBlockBought[msg.sender] < block.timestamp, "Not allowed to Mint on the same Block");
        require(!Address.isContract(msg.sender),"Contracts are not allowed to mint");
        require(numberOfTokens <= maxPublicPurchase, "You can mint a maximum of 10 Chicks");
        require(supply + numberOfTokens <= maxSupply, "Exceeds maximum Chicks supply" );
        

        addressBlockBought[msg.sender] = block.timestamp;

        for(uint8 i; i < numberOfTokens; i++){
            _safeMint(msg.sender, counter);
            counter = counter + 1;
        }
    }

    /**
     * reserve Chicks for giveaways
     */
    function mintForGiveaway() public onlyOwner {
        require(giveaway > 0, "Giveaway has been minted!");

        for (uint8 i = 0; i < giveaway; i++) {
            _safeMint(msg.sender, counter);
            counter = counter + 1;
        }

        giveaway -= giveaway;
    }

    /**
     * Returns Chicks of the Caller
     */
    function chicksOfOwner(address _owner) public 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 toggleSale() public onlyOwner{
        publicSale = !publicSale;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        string memory tokenIdString = uint2str(tokenId);
        string memory currentBaseURI = _baseURI();
        
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,  tokenIdString, baseExtension))
        : "";
    }

    /**
     * Withdraw Ether
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");

        (bool success, ) = msg.sender.call{value: balance}("");
        require(success, "Failed to withdraw payment");
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenBaseUri","type":"string"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"chicksOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveaway","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"maxPublicPurchase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintChicks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintForGiveaway","outputs":[],"stateMutability":"nonpayable","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":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620009c3565b50600d805465ffffffffffff1916650113880a00001790553480156200004d57600080fd5b506040516200336438038062003364833981016040819052620000709162000a9c565b60408051808201825260118152702630b93b309021b434b1b5b99021b63ab160791b602080830191825283518085019094526005845264434849434b60d81b908401528151919291620000c691600091620009c3565b508051620000dc906001906020840190620009c3565b505050620000f9620000f36200013f60201b60201c565b62000143565b600d546200010d9061ffff16600162000baa565b600d805461ffff191661ffff929092169190911790556200012e8162000195565b62000138620001fd565b5062000d19565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001e45760405162461bcd60e51b815260206004820181905260248201526000805160206200334483398151915260448201526064015b60405180910390fd5b8051620001f990600b906020840190620009c3565b5050565b600a546001600160a01b03163314620002485760405162461bcd60e51b81526020600482018190526024820152600080516020620033448339815191526044820152606401620001db565b600d5462010000900460ff16620002a25760405162461bcd60e51b815260206004820152601960248201527f476976656177617920686173206265656e206d696e74656421000000000000006044820152606401620001db565b60005b600d5460ff62010000909104811690821610156200031057600d54620002d190339061ffff1662000347565b600d54620002e59061ffff16600162000baa565b600d805461ffff191661ffff9290921691909117905580620003078162000c9e565b915050620002a5565b50600d805462010000900460ff169060026200032d838062000c08565b92506101000a81548160ff021916908360ff160217905550565b620001f98282604051806020016040528060008152506200036960201b60201c565b620003758383620003e1565b62000384600084848462000537565b620003dc5760405162461bcd60e51b815260206004820152603260248201526000805160206200332483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001db565b505050565b6001600160a01b038216620004395760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001db565b6000818152600260205260409020546001600160a01b031615620004a05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001db565b620004ae60008383620006a0565b6001600160a01b0382166000908152600360205260408120805460019290620004d990849062000bd3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000558846001600160a01b03166200077c60201b6200140f1760201c565b156200069457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200059290339089908890889060040162000b54565b602060405180830381600087803b158015620005ad57600080fd5b505af1925050508015620005e0575060408051601f3d908101601f19168201909252620005dd9181019062000a69565b60015b62000679573d80801562000611576040519150601f19603f3d011682016040523d82523d6000602084013e62000616565b606091505b508051620006715760405162461bcd60e51b815260206004820152603260248201526000805160206200332483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000698565b5060015b949350505050565b620006b8838383620003dc60201b620008741760201c565b6001600160a01b03831662000716576200071081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6200073c565b816001600160a01b0316836001600160a01b0316146200073c576200073c838262000782565b6001600160a01b0382166200075657620003dc816200082f565b826001600160a01b0316826001600160a01b031614620003dc57620003dc8282620008e9565b3b151590565b600060016200079c846200093a60201b62000eac1760201c565b620007a8919062000bee565b600083815260076020526040902054909150808214620007fc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620008439060019062000bee565b600083815260096020526040812054600880549394509092849081106200086e576200086e62000ced565b90600052602060002001549050806008838154811062000892576200089262000ced565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620008cd57620008cd62000cd7565b6001900381819060005260206000200160009055905550505050565b600062000901836200093a60201b62000eac1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009a75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001db565b506001600160a01b031660009081526003602052604090205490565b828054620009d19062000c61565b90600052602060002090601f016020900481019282620009f5576000855562000a40565b82601f1062000a1057805160ff191683800117855562000a40565b8280016001018555821562000a40579182015b8281111562000a4057825182559160200191906001019062000a23565b5062000a4e92915062000a52565b5090565b5b8082111562000a4e576000815560010162000a53565b60006020828403121562000a7c57600080fd5b81516001600160e01b03198116811462000a9557600080fd5b9392505050565b60006020828403121562000aaf57600080fd5b81516001600160401b038082111562000ac757600080fd5b818401915084601f83011262000adc57600080fd5b81518181111562000af15762000af162000d03565b604051601f8201601f19908116603f0116810190838211818310171562000b1c5762000b1c62000d03565b8160405282815287602084870101111562000b3657600080fd5b62000b4983602083016020880162000c2e565b979650505050505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000b938160a085016020870162000c2e565b601f01601f19169190910160a00195945050505050565b600061ffff80831681851680830382111562000bca5762000bca62000cc1565b01949350505050565b6000821982111562000be95762000be962000cc1565b500190565b60008282101562000c035762000c0362000cc1565b500390565b600060ff821660ff84168082101562000c255762000c2562000cc1565b90039392505050565b60005b8381101562000c4b57818101518382015260200162000c31565b8381111562000c5b576000848401525b50505050565b600181811c9082168062000c7657607f821691505b6020821081141562000c9857634e487b7160e01b600052602260045260246000fd5b50919050565b600060ff821660ff81141562000cb85762000cb862000cc1565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6125fb8062000d296000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610561578063e985e9c514610583578063f2fde38b146105cc578063f9850b72146105ec57600080fd5b8063b88d4fde146104df578063c6682862146104ff578063c87b56dd14610514578063d0e961d31461053457600080fd5b80637d8966e4116100d15780637d8966e4146104775780638da5cb5b1461048c57806395d89b41146104aa578063a22cb465146104bf57600080fd5b80636c0360eb1461041857806370a082311461042d578063715018a61461044d5780637b6236f81461046257600080fd5b806333bc1c5c1161017a57806355f804b31161014957806355f804b31461038357806361bc221a146103a35780636352211e146103d157806364a49b1b146103f157600080fd5b806333bc1c5c1461030b5780633ccfd60b1461032e57806342842e0e146103435780634f6ccce71461036357600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b857806325529449146102d85780632f745c59146102eb57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046120bc565b61060c565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610637565b60405161021491906122ec565b34801561024b57600080fd5b5061025f61025a36600461213f565b6106c9565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004612092565b610763565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611f9e565b610879565b6102976102e6366004612158565b6108aa565b3480156102f757600080fd5b506102aa610306366004612092565b610b19565b34801561031757600080fd5b50600d546102089065010000000000900460ff1681565b34801561033a57600080fd5b50610297610baf565b34801561034f57600080fd5b5061029761035e366004611f9e565b610cbc565b34801561036f57600080fd5b506102aa61037e36600461213f565b610cd7565b34801561038f57600080fd5b5061029761039e3660046120f6565b610d6a565b3480156103af57600080fd5b50600d546103be9061ffff1681565b60405161ffff9091168152602001610214565b3480156103dd57600080fd5b5061025f6103ec36600461213f565b610da7565b3480156103fd57600080fd5b50610406600a81565b60405160ff9091168152602001610214565b34801561042457600080fd5b50610232610e1e565b34801561043957600080fd5b506102aa610448366004611f49565b610eac565b34801561045957600080fd5b50610297610f33565b34801561046e57600080fd5b50610297610f69565b34801561048357600080fd5b50610297611086565b34801561049857600080fd5b50600a546001600160a01b031661025f565b3480156104b657600080fd5b506102326110d5565b3480156104cb57600080fd5b506102976104da366004612056565b6110e4565b3480156104eb57600080fd5b506102976104fa366004611fda565b6111a9565b34801561050b57600080fd5b506102326111e1565b34801561052057600080fd5b5061023261052f36600461213f565b6111ee565b34801561054057600080fd5b5061055461054f366004611f49565b6112d2565b60405161021491906122a8565b34801561056d57600080fd5b50600d546103be906301000000900461ffff1681565b34801561058f57600080fd5b5061020861059e366004611f6b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d857600080fd5b506102976105e7366004611f49565b611374565b3480156105f857600080fd5b50600d546104069062010000900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610631575061063182611415565b92915050565b606060008054610646906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610672906124e1565b80156106bf5780601f10610694576101008083540402835291602001916106bf565b820191906000526020600020905b8154815290600101906020018083116106a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076e82610da7565b9050806001600160a01b0316836001600160a01b031614156107dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073e565b336001600160a01b03821614806107f857506107f8813361059e565b61086a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073e565b6108748383611465565b505050565b61088333826114d3565b61089f5760405162461bcd60e51b815260040161073e90612386565b6108748383836115c6565b60006108b560085490565b600d5490915065010000000000900460ff1661091e5760405162461bcd60e51b815260206004820152602260248201527f5075626c6963206d696e74206973206e6f74206c697665207269676874206e6f6044820152613b9760f11b606482015260840161073e565b336000908152600e6020526040902054421161098a5760405162461bcd60e51b815260206004820152602560248201527f4e6f7420616c6c6f77656420746f204d696e74206f6e207468652073616d6520604482015264426c6f636b60d81b606482015260840161073e565b333b156109e35760405162461bcd60e51b815260206004820152602160248201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6044820152601d60fa1b606482015260840161073e565b600a60ff83161115610a435760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206d696e742061206d6178696d756d206f6620313020436869604482015262636b7360e81b606482015260840161073e565b600d546301000000900461ffff16610a5e60ff8416836123fd565b1115610aac5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d20436869636b7320737570706c79000000604482015260640161073e565b336000908152600e602052604081204290555b8260ff168160ff16101561087457600d54610adf90339061ffff16611771565b600d54610af19061ffff1660016123d7565b600d805461ffff191661ffff9290921691909117905580610b1181612537565b915050610abf565b6000610b2483610eac565b8210610b865760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bd95760405162461bcd60e51b815260040161073e90612351565b4780610c205760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b604482015260640161073e565b604051600090339083908381818185875af1925050503d8060008114610c62576040519150601f19603f3d011682016040523d82523d6000602084013e610c67565b606091505b5050905080610cb85760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207769746864726177207061796d656e74000000000000604482015260640161073e565b5050565b610874838383604051806020016040528060008152506111a9565b6000610ce260085490565b8210610d455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073e565b60088281548110610d5857610d58612583565b90600052602060002001549050919050565b600a546001600160a01b03163314610d945760405162461bcd60e51b815260040161073e90612351565b8051610cb890600b906020840190611e1e565b6000818152600260205260408120546001600160a01b0316806106315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073e565b600b8054610e2b906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e57906124e1565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b505050505081565b60006001600160a01b038216610f175760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f5d5760405162461bcd60e51b815260040161073e90612351565b610f67600061178b565b565b600a546001600160a01b03163314610f935760405162461bcd60e51b815260040161073e90612351565b600d5462010000900460ff16610feb5760405162461bcd60e51b815260206004820152601960248201527f476976656177617920686173206265656e206d696e7465642100000000000000604482015260640161073e565b60005b600d5460ff620100009091048116908216101561105157600d5461101790339061ffff16611771565b600d546110299061ffff1660016123d7565b600d805461ffff191661ffff929092169190911790558061104981612537565b915050610fee565b50600d805462010000900460ff1690600261106c8380612492565b92506101000a81548160ff021916908360ff160217905550565b600a546001600160a01b031633146110b05760405162461bcd60e51b815260040161073e90612351565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b606060018054610646906124e1565b6001600160a01b03821633141561113d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111b333836114d3565b6111cf5760405162461bcd60e51b815260040161073e90612386565b6111db848484846117dd565b50505050565b600c8054610e2b906124e1565b6000818152600260205260409020546060906001600160a01b031661126d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073e565b600061127883611810565b90506000611284611939565b905060008151116112a457604051806020016040528060008152506112ca565b8082600c6040516020016112ba939291906121a7565b6040516020818303038152906040525b949350505050565b606060006112df83610eac565b905060008167ffffffffffffffff8111156112fc576112fc612599565b604051908082528060200260200182016040528015611325578160200160208202803683370190505b50905060005b8281101561136c5761133d8582610b19565b82828151811061134f5761134f612583565b6020908102919091010152806113648161251c565b91505061132b565b509392505050565b600a546001600160a01b0316331461139e5760405162461bcd60e51b815260040161073e90612351565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073e565b61140c8161178b565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061144657506001600160e01b03198216635b5e139f60e01b145b8061063157506301ffc9a760e01b6001600160e01b0319831614610631565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061149a82610da7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661154c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073e565b600061155783610da7565b9050806001600160a01b0316846001600160a01b031614806115925750836001600160a01b0316611587846106c9565b6001600160a01b0316145b806112ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166112ca565b826001600160a01b03166115d982610da7565b6001600160a01b0316146116415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073e565b6001600160a01b0382166116a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073e565b6116ae838383611948565b6116b9600082611465565b6001600160a01b03831660009081526003602052604081208054600192906116e290849061247b565b90915550506001600160a01b03821660009081526003602052604081208054600192906117109084906123fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb8828260405180602001604052806000815250611a00565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117e88484846115c6565b6117f484848484611a33565b6111db5760405162461bcd60e51b815260040161073e906122ff565b6060816118345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561185e57806118488161251c565b91506118579050600a8361243a565b9150611838565b60008167ffffffffffffffff81111561187957611879612599565b6040519080825280601f01601f1916602001820160405280156118a3576020820181803683370190505b509050815b8515611930576118b960018261247b565b905060006118c8600a8861243a565b6118d390600a61245c565b6118dd908861247b565b6118e8906030612415565b905060008160f81b90508084848151811061190557611905612583565b60200101906001600160f81b031916908160001a905350611927600a8961243a565b975050506118a8565b50949350505050565b6060600b8054610646906124e1565b6001600160a01b0383166119a35761199e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119c6565b816001600160a01b0316836001600160a01b0316146119c6576119c68382611b40565b6001600160a01b0382166119dd5761087481611bdd565b826001600160a01b0316826001600160a01b031614610874576108748282611c8c565b611a0a8383611cd0565b611a176000848484611a33565b6108745760405162461bcd60e51b815260040161073e906122ff565b60006001600160a01b0384163b15611b3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a7790339089908890889060040161226b565b602060405180830381600087803b158015611a9157600080fd5b505af1925050508015611ac1575060408051601f3d908101601f19168201909252611abe918101906120d9565b60015b611b1b573d808015611aef576040519150601f19603f3d011682016040523d82523d6000602084013e611af4565b606091505b508051611b135760405162461bcd60e51b815260040161073e906122ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ca565b506001949350505050565b60006001611b4d84610eac565b611b57919061247b565b600083815260076020526040902054909150808214611baa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bef9060019061247b565b60008381526009602052604081205460088054939450909284908110611c1757611c17612583565b906000526020600020015490508060088381548110611c3857611c38612583565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c7057611c7061256d565b6001900381819060005260206000200160009055905550505050565b6000611c9783610eac565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073e565b6000818152600260205260409020546001600160a01b031615611d8b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073e565b611d9760008383611948565b6001600160a01b0382166000908152600360205260408120805460019290611dc09084906123fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e2a906124e1565b90600052602060002090601f016020900481019282611e4c5760008555611e92565b82601f10611e6557805160ff1916838001178555611e92565b82800160010185558215611e92579182015b82811115611e92578251825591602001919060010190611e77565b50611e9e929150611ea2565b5090565b5b80821115611e9e5760008155600101611ea3565b600067ffffffffffffffff80841115611ed257611ed2612599565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa612599565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f4457600080fd5b919050565b600060208284031215611f5b57600080fd5b611f6482611f2d565b9392505050565b60008060408385031215611f7e57600080fd5b611f8783611f2d565b9150611f9560208401611f2d565b90509250929050565b600080600060608486031215611fb357600080fd5b611fbc84611f2d565b9250611fca60208501611f2d565b9150604084013590509250925092565b60008060008060808587031215611ff057600080fd5b611ff985611f2d565b935061200760208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561202a57600080fd5b8501601f8101871361203b57600080fd5b61204a87823560208401611eb7565b91505092959194509250565b6000806040838503121561206957600080fd5b61207283611f2d565b91506020830135801515811461208757600080fd5b809150509250929050565b600080604083850312156120a557600080fd5b6120ae83611f2d565b946020939093013593505050565b6000602082840312156120ce57600080fd5b8135611f64816125af565b6000602082840312156120eb57600080fd5b8151611f64816125af565b60006020828403121561210857600080fd5b813567ffffffffffffffff81111561211f57600080fd5b8201601f8101841361213057600080fd5b6112ca84823560208401611eb7565b60006020828403121561215157600080fd5b5035919050565b60006020828403121561216a57600080fd5b813560ff81168114611f6457600080fd5b600081518084526121938160208601602086016124b5565b601f01601f19169290920160200192915050565b6000845160206121ba8285838a016124b5565b8551918401916121cd8184848a016124b5565b8554920191600090600181811c90808316806121ea57607f831692505b85831081141561220857634e487b7160e01b85526022600452602485fd5b80801561221c576001811461222d5761225a565b60ff1985168852838801955061225a565b60008b81526020902060005b858110156122525781548a820152908401908801612239565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229e9083018461217b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122e0578351835292840192918401916001016122c4565b50909695505050505050565b602081526000611f64602083018461217b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff8083168185168083038211156123f4576123f4612557565b01949350505050565b6000821982111561241057612410612557565b500190565b600060ff821660ff84168060ff0382111561243257612432612557565b019392505050565b60008261245757634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561247657612476612557565b500290565b60008282101561248d5761248d612557565b500390565b600060ff821660ff8416808210156124ac576124ac612557565b90039392505050565b60005b838110156124d05781810151838201526020016124b8565b838111156111db5750506000910152565b600181811c908216806124f557607f821691505b6020821081141561251657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561253057612530612557565b5060010190565b600060ff821660ff81141561254e5761254e612557565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140c57600080fdfea26469706673582212205c0a6f72fe09a06b974fd99e1d5ac4cbcf471a5af2baa6820f30654aed0c6f5264736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d596765675635627a435865636d5132453170374342673770756f317648316f564b71434447674774665753332f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610561578063e985e9c514610583578063f2fde38b146105cc578063f9850b72146105ec57600080fd5b8063b88d4fde146104df578063c6682862146104ff578063c87b56dd14610514578063d0e961d31461053457600080fd5b80637d8966e4116100d15780637d8966e4146104775780638da5cb5b1461048c57806395d89b41146104aa578063a22cb465146104bf57600080fd5b80636c0360eb1461041857806370a082311461042d578063715018a61461044d5780637b6236f81461046257600080fd5b806333bc1c5c1161017a57806355f804b31161014957806355f804b31461038357806361bc221a146103a35780636352211e146103d157806364a49b1b146103f157600080fd5b806333bc1c5c1461030b5780633ccfd60b1461032e57806342842e0e146103435780634f6ccce71461036357600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b857806325529449146102d85780632f745c59146102eb57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046120bc565b61060c565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610637565b60405161021491906122ec565b34801561024b57600080fd5b5061025f61025a36600461213f565b6106c9565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004612092565b610763565b005b3480156102a557600080fd5b506008545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611f9e565b610879565b6102976102e6366004612158565b6108aa565b3480156102f757600080fd5b506102aa610306366004612092565b610b19565b34801561031757600080fd5b50600d546102089065010000000000900460ff1681565b34801561033a57600080fd5b50610297610baf565b34801561034f57600080fd5b5061029761035e366004611f9e565b610cbc565b34801561036f57600080fd5b506102aa61037e36600461213f565b610cd7565b34801561038f57600080fd5b5061029761039e3660046120f6565b610d6a565b3480156103af57600080fd5b50600d546103be9061ffff1681565b60405161ffff9091168152602001610214565b3480156103dd57600080fd5b5061025f6103ec36600461213f565b610da7565b3480156103fd57600080fd5b50610406600a81565b60405160ff9091168152602001610214565b34801561042457600080fd5b50610232610e1e565b34801561043957600080fd5b506102aa610448366004611f49565b610eac565b34801561045957600080fd5b50610297610f33565b34801561046e57600080fd5b50610297610f69565b34801561048357600080fd5b50610297611086565b34801561049857600080fd5b50600a546001600160a01b031661025f565b3480156104b657600080fd5b506102326110d5565b3480156104cb57600080fd5b506102976104da366004612056565b6110e4565b3480156104eb57600080fd5b506102976104fa366004611fda565b6111a9565b34801561050b57600080fd5b506102326111e1565b34801561052057600080fd5b5061023261052f36600461213f565b6111ee565b34801561054057600080fd5b5061055461054f366004611f49565b6112d2565b60405161021491906122a8565b34801561056d57600080fd5b50600d546103be906301000000900461ffff1681565b34801561058f57600080fd5b5061020861059e366004611f6b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105d857600080fd5b506102976105e7366004611f49565b611374565b3480156105f857600080fd5b50600d546104069062010000900460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610631575061063182611415565b92915050565b606060008054610646906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610672906124e1565b80156106bf5780601f10610694576101008083540402835291602001916106bf565b820191906000526020600020905b8154815290600101906020018083116106a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076e82610da7565b9050806001600160a01b0316836001600160a01b031614156107dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073e565b336001600160a01b03821614806107f857506107f8813361059e565b61086a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073e565b6108748383611465565b505050565b61088333826114d3565b61089f5760405162461bcd60e51b815260040161073e90612386565b6108748383836115c6565b60006108b560085490565b600d5490915065010000000000900460ff1661091e5760405162461bcd60e51b815260206004820152602260248201527f5075626c6963206d696e74206973206e6f74206c697665207269676874206e6f6044820152613b9760f11b606482015260840161073e565b336000908152600e6020526040902054421161098a5760405162461bcd60e51b815260206004820152602560248201527f4e6f7420616c6c6f77656420746f204d696e74206f6e207468652073616d6520604482015264426c6f636b60d81b606482015260840161073e565b333b156109e35760405162461bcd60e51b815260206004820152602160248201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6044820152601d60fa1b606482015260840161073e565b600a60ff83161115610a435760405162461bcd60e51b815260206004820152602360248201527f596f752063616e206d696e742061206d6178696d756d206f6620313020436869604482015262636b7360e81b606482015260840161073e565b600d546301000000900461ffff16610a5e60ff8416836123fd565b1115610aac5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d20436869636b7320737570706c79000000604482015260640161073e565b336000908152600e602052604081204290555b8260ff168160ff16101561087457600d54610adf90339061ffff16611771565b600d54610af19061ffff1660016123d7565b600d805461ffff191661ffff9290921691909117905580610b1181612537565b915050610abf565b6000610b2483610eac565b8210610b865760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161073e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bd95760405162461bcd60e51b815260040161073e90612351565b4780610c205760405162461bcd60e51b81526020600482015260166024820152754e6f2062616c616e636520746f20776974686472617760501b604482015260640161073e565b604051600090339083908381818185875af1925050503d8060008114610c62576040519150601f19603f3d011682016040523d82523d6000602084013e610c67565b606091505b5050905080610cb85760405162461bcd60e51b815260206004820152601a60248201527f4661696c656420746f207769746864726177207061796d656e74000000000000604482015260640161073e565b5050565b610874838383604051806020016040528060008152506111a9565b6000610ce260085490565b8210610d455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161073e565b60088281548110610d5857610d58612583565b90600052602060002001549050919050565b600a546001600160a01b03163314610d945760405162461bcd60e51b815260040161073e90612351565b8051610cb890600b906020840190611e1e565b6000818152600260205260408120546001600160a01b0316806106315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073e565b600b8054610e2b906124e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e57906124e1565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b505050505081565b60006001600160a01b038216610f175760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f5d5760405162461bcd60e51b815260040161073e90612351565b610f67600061178b565b565b600a546001600160a01b03163314610f935760405162461bcd60e51b815260040161073e90612351565b600d5462010000900460ff16610feb5760405162461bcd60e51b815260206004820152601960248201527f476976656177617920686173206265656e206d696e7465642100000000000000604482015260640161073e565b60005b600d5460ff620100009091048116908216101561105157600d5461101790339061ffff16611771565b600d546110299061ffff1660016123d7565b600d805461ffff191661ffff929092169190911790558061104981612537565b915050610fee565b50600d805462010000900460ff1690600261106c8380612492565b92506101000a81548160ff021916908360ff160217905550565b600a546001600160a01b031633146110b05760405162461bcd60e51b815260040161073e90612351565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b606060018054610646906124e1565b6001600160a01b03821633141561113d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111b333836114d3565b6111cf5760405162461bcd60e51b815260040161073e90612386565b6111db848484846117dd565b50505050565b600c8054610e2b906124e1565b6000818152600260205260409020546060906001600160a01b031661126d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073e565b600061127883611810565b90506000611284611939565b905060008151116112a457604051806020016040528060008152506112ca565b8082600c6040516020016112ba939291906121a7565b6040516020818303038152906040525b949350505050565b606060006112df83610eac565b905060008167ffffffffffffffff8111156112fc576112fc612599565b604051908082528060200260200182016040528015611325578160200160208202803683370190505b50905060005b8281101561136c5761133d8582610b19565b82828151811061134f5761134f612583565b6020908102919091010152806113648161251c565b91505061132b565b509392505050565b600a546001600160a01b0316331461139e5760405162461bcd60e51b815260040161073e90612351565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073e565b61140c8161178b565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061144657506001600160e01b03198216635b5e139f60e01b145b8061063157506301ffc9a760e01b6001600160e01b0319831614610631565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061149a82610da7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661154c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073e565b600061155783610da7565b9050806001600160a01b0316846001600160a01b031614806115925750836001600160a01b0316611587846106c9565b6001600160a01b0316145b806112ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166112ca565b826001600160a01b03166115d982610da7565b6001600160a01b0316146116415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073e565b6001600160a01b0382166116a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073e565b6116ae838383611948565b6116b9600082611465565b6001600160a01b03831660009081526003602052604081208054600192906116e290849061247b565b90915550506001600160a01b03821660009081526003602052604081208054600192906117109084906123fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb8828260405180602001604052806000815250611a00565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117e88484846115c6565b6117f484848484611a33565b6111db5760405162461bcd60e51b815260040161073e906122ff565b6060816118345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561185e57806118488161251c565b91506118579050600a8361243a565b9150611838565b60008167ffffffffffffffff81111561187957611879612599565b6040519080825280601f01601f1916602001820160405280156118a3576020820181803683370190505b509050815b8515611930576118b960018261247b565b905060006118c8600a8861243a565b6118d390600a61245c565b6118dd908861247b565b6118e8906030612415565b905060008160f81b90508084848151811061190557611905612583565b60200101906001600160f81b031916908160001a905350611927600a8961243a565b975050506118a8565b50949350505050565b6060600b8054610646906124e1565b6001600160a01b0383166119a35761199e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119c6565b816001600160a01b0316836001600160a01b0316146119c6576119c68382611b40565b6001600160a01b0382166119dd5761087481611bdd565b826001600160a01b0316826001600160a01b031614610874576108748282611c8c565b611a0a8383611cd0565b611a176000848484611a33565b6108745760405162461bcd60e51b815260040161073e906122ff565b60006001600160a01b0384163b15611b3557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a7790339089908890889060040161226b565b602060405180830381600087803b158015611a9157600080fd5b505af1925050508015611ac1575060408051601f3d908101601f19168201909252611abe918101906120d9565b60015b611b1b573d808015611aef576040519150601f19603f3d011682016040523d82523d6000602084013e611af4565b606091505b508051611b135760405162461bcd60e51b815260040161073e906122ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ca565b506001949350505050565b60006001611b4d84610eac565b611b57919061247b565b600083815260076020526040902054909150808214611baa576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bef9060019061247b565b60008381526009602052604081205460088054939450909284908110611c1757611c17612583565b906000526020600020015490508060088381548110611c3857611c38612583565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c7057611c7061256d565b6001900381819060005260206000200160009055905550505050565b6000611c9783610eac565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d265760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073e565b6000818152600260205260409020546001600160a01b031615611d8b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073e565b611d9760008383611948565b6001600160a01b0382166000908152600360205260408120805460019290611dc09084906123fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e2a906124e1565b90600052602060002090601f016020900481019282611e4c5760008555611e92565b82601f10611e6557805160ff1916838001178555611e92565b82800160010185558215611e92579182015b82811115611e92578251825591602001919060010190611e77565b50611e9e929150611ea2565b5090565b5b80821115611e9e5760008155600101611ea3565b600067ffffffffffffffff80841115611ed257611ed2612599565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa612599565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f4457600080fd5b919050565b600060208284031215611f5b57600080fd5b611f6482611f2d565b9392505050565b60008060408385031215611f7e57600080fd5b611f8783611f2d565b9150611f9560208401611f2d565b90509250929050565b600080600060608486031215611fb357600080fd5b611fbc84611f2d565b9250611fca60208501611f2d565b9150604084013590509250925092565b60008060008060808587031215611ff057600080fd5b611ff985611f2d565b935061200760208601611f2d565b925060408501359150606085013567ffffffffffffffff81111561202a57600080fd5b8501601f8101871361203b57600080fd5b61204a87823560208401611eb7565b91505092959194509250565b6000806040838503121561206957600080fd5b61207283611f2d565b91506020830135801515811461208757600080fd5b809150509250929050565b600080604083850312156120a557600080fd5b6120ae83611f2d565b946020939093013593505050565b6000602082840312156120ce57600080fd5b8135611f64816125af565b6000602082840312156120eb57600080fd5b8151611f64816125af565b60006020828403121561210857600080fd5b813567ffffffffffffffff81111561211f57600080fd5b8201601f8101841361213057600080fd5b6112ca84823560208401611eb7565b60006020828403121561215157600080fd5b5035919050565b60006020828403121561216a57600080fd5b813560ff81168114611f6457600080fd5b600081518084526121938160208601602086016124b5565b601f01601f19169290920160200192915050565b6000845160206121ba8285838a016124b5565b8551918401916121cd8184848a016124b5565b8554920191600090600181811c90808316806121ea57607f831692505b85831081141561220857634e487b7160e01b85526022600452602485fd5b80801561221c576001811461222d5761225a565b60ff1985168852838801955061225a565b60008b81526020902060005b858110156122525781548a820152908401908801612239565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229e9083018461217b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122e0578351835292840192918401916001016122c4565b50909695505050505050565b602081526000611f64602083018461217b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff8083168185168083038211156123f4576123f4612557565b01949350505050565b6000821982111561241057612410612557565b500190565b600060ff821660ff84168060ff0382111561243257612432612557565b019392505050565b60008261245757634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561247657612476612557565b500290565b60008282101561248d5761248d612557565b500390565b600060ff821660ff8416808210156124ac576124ac612557565b90039392505050565b60005b838110156124d05781810151838201526020016124b8565b838111156111db5750506000910152565b600181811c908216806124f557607f821691505b6020821081141561251657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561253057612530612557565b5060010190565b600060ff821660ff81141561254e5761254e612557565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140c57600080fdfea26469706673582212205c0a6f72fe09a06b974fd99e1d5ac4cbcf471a5af2baa6820f30654aed0c6f5264736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d596765675635627a435865636d5132453170374342673770756f317648316f564b71434447674774665753332f00000000000000000000

-----Decoded View---------------
Arg [0] : tokenBaseUri (string): ipfs://QmYgegV5bzCXecmQ2E1p7CBg7puo1vH1oVKqCDGgGtfWS3/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d596765675635627a435865636d51324531703743426737
Arg [3] : 70756f317648316f564b71434447674774665753332f00000000000000000000


Deployed Bytecode Sourcemap

50099:3962:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41622:224;;;;;;;;;;-1:-1:-1;41622:224:0;;;;;:::i;:::-;;:::i;:::-;;;7824:14:1;;7817:22;7799:41;;7787:2;7772:18;41622:224:0;;;;;;;;29514:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31073:221::-;;;;;;;;;;-1:-1:-1;31073:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6485:32:1;;;6467:51;;6455:2;6440:18;31073:221:0;6321:203:1;30596:411:0;;;;;;;;;;-1:-1:-1;30596:411:0;;;;;:::i;:::-;;:::i;:::-;;42262:113;;;;;;;;;;-1:-1:-1;42350:10:0;:17;42262:113;;;18654:25:1;;;18642:2;18627:18;42262:113:0;18508:177:1;31963:339:0;;;;;;;;;;-1:-1:-1;31963:339:0;;;;;:::i;:::-;;:::i;50818:767::-;;;;;;:::i;:::-;;:::i;41930:256::-;;;;;;;;;;-1:-1:-1;41930:256:0;;;;;:::i;:::-;;:::i;50452:29::-;;;;;;;;;;-1:-1:-1;50452:29:0;;;;;;;;;;;53195:276;;;;;;;;;;;;;:::i;32373:185::-;;;;;;;;;;-1:-1:-1;32373:185:0;;;;;:::i;:::-;;:::i;42452:233::-;;;;;;;;;;-1:-1:-1;42452:233:0;;;;;:::i;:::-;;:::i;52554:102::-;;;;;;;;;;-1:-1:-1;52554:102:0;;;;;:::i;:::-;;:::i;50299:25::-;;;;;;;;;;-1:-1:-1;50299:25:0;;;;;;;;;;;18489:6:1;18477:19;;;18459:38;;18447:2;18432:18;50299:25:0;18315:188:1;29208:239:0;;;;;;;;;;-1:-1:-1;29208:239:0;;;;;:::i;:::-;;:::i;50364:44::-;;;;;;;;;;;;50406:2;50364:44;;;;;18862:4:1;18850:17;;;18832:36;;18820:2;18805:18;50364:44:0;18690:184:1;50227:21:0;;;;;;;;;;;;;:::i;28938:208::-;;;;;;;;;;-1:-1:-1;28938:208:0;;;;;:::i;:::-;;:::i;49411:94::-;;;;;;;;;;;;;:::i;51648:288::-;;;;;;;;;;;;;:::i;52349:81::-;;;;;;;;;;;;;:::i;48760:87::-;;;;;;;;;;-1:-1:-1;48833:6:0;;-1:-1:-1;;;;;48833:6:0;48760:87;;29683:104;;;;;;;;;;;;;:::i;31366:295::-;;;;;;;;;;-1:-1:-1;31366:295:0;;;;;:::i;:::-;;:::i;32629:328::-;;;;;;;;;;-1:-1:-1;32629:328:0;;;;;:::i;:::-;;:::i;50255:37::-;;;;;;;;;;;;;:::i;52664:482::-;;;;;;;;;;-1:-1:-1;52664:482:0;;;;;:::i;:::-;;:::i;51999:342::-;;;;;;;;;;-1:-1:-1;51999:342:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50415:30::-;;;;;;;;;;-1:-1:-1;50415:30:0;;;;;;;;;;;31732:164;;;;;;;;;;-1:-1:-1;31732:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31853:25:0;;;31829:4;31853:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31732:164;49660:192;;;;;;;;;;-1:-1:-1;49660:192:0;;;;;:::i;:::-;;:::i;50331:26::-;;;;;;;;;;-1:-1:-1;50331:26:0;;;;;;;;;;;41622:224;41724:4;-1:-1:-1;;;;;;41748:50:0;;-1:-1:-1;;;41748:50:0;;:90;;;41802:36;41826:11;41802:23;:36::i;:::-;41741:97;41622:224;-1:-1:-1;;41622:224:0:o;29514:100::-;29568:13;29601:5;29594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29514:100;:::o;31073:221::-;31149:7;34556:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34556:16:0;31169:73;;;;-1:-1:-1;;;31169:73:0;;13812:2:1;31169:73:0;;;13794:21:1;13851:2;13831:18;;;13824:30;13890:34;13870:18;;;13863:62;-1:-1:-1;;;13941:18:1;;;13934:42;13993:19;;31169:73:0;;;;;;;;;-1:-1:-1;31262:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31262:24:0;;31073:221::o;30596:411::-;30677:13;30693:23;30708:7;30693:14;:23::i;:::-;30677:39;;30741:5;-1:-1:-1;;;;;30735:11:0;:2;-1:-1:-1;;;;;30735:11:0;;;30727:57;;;;-1:-1:-1;;;30727:57:0;;15763:2:1;30727:57:0;;;15745:21:1;15802:2;15782:18;;;15775:30;15841:34;15821:18;;;15814:62;-1:-1:-1;;;15892:18:1;;;15885:31;15933:19;;30727:57:0;15561:397:1;30727:57:0;27123:10;-1:-1:-1;;;;;30819:21:0;;;;:62;;-1:-1:-1;30844:37:0;30861:5;27123:10;31732:164;:::i;30844:37::-;30797:168;;;;-1:-1:-1;;;30797:168:0;;11801:2:1;30797:168:0;;;11783:21:1;11840:2;11820:18;;;11813:30;11879:34;11859:18;;;11852:62;11950:26;11930:18;;;11923:54;11994:19;;30797:168:0;11599:420:1;30797:168:0;30978:21;30987:2;30991:7;30978:8;:21::i;:::-;30666:341;30596:411;;:::o;31963:339::-;32158:41;27123:10;32191:7;32158:18;:41::i;:::-;32150:103;;;;-1:-1:-1;;;32150:103:0;;;;;;;:::i;:::-;32266:28;32276:4;32282:2;32286:7;32266:9;:28::i;50818:767::-;50886:14;50903:13;42350:10;:17;;42262:113;50903:13;50935:10;;50886:30;;-1:-1:-1;50935:10:0;;;;;50927:57;;;;-1:-1:-1;;;50927:57:0;;11398:2:1;50927:57:0;;;11380:21:1;11437:2;11417:18;;;11410:30;11476:34;11456:18;;;11449:62;-1:-1:-1;;;11527:18:1;;;11520:32;11569:19;;50927:57:0;11196:398:1;50927:57:0;51022:10;51003:30;;;;:18;:30;;;;;;51036:15;-1:-1:-1;50995:98:0;;;;-1:-1:-1;;;50995:98:0;;17351:2:1;50995:98:0;;;17333:21:1;17390:2;17370:18;;;17363:30;17429:34;17409:18;;;17402:62;-1:-1:-1;;;17480:18:1;;;17473:35;17525:19;;50995:98:0;17149:401:1;50995:98:0;51132:10;17723:20;17771:8;51104:76;;;;-1:-1:-1;;;51104:76:0;;18115:2:1;51104:76:0;;;18097:21:1;18154:2;18134:18;;;18127:30;18193:34;18173:18;;;18166:62;-1:-1:-1;;;18244:18:1;;;18237:31;18285:19;;51104:76:0;17913:397:1;51104:76:0;50406:2;51199:35;;;;;51191:83;;;;-1:-1:-1;;;51191:83:0;;13047:2:1;51191:83:0;;;13029:21:1;13086:2;13066:18;;;13059:30;13125:34;13105:18;;;13098:62;-1:-1:-1;;;13176:18:1;;;13169:33;13219:19;;51191:83:0;12845:399:1;51191:83:0;51320:9;;;;;;;51293:23;;;;:6;:23;:::i;:::-;:36;;51285:79;;;;-1:-1:-1;;;51285:79:0;;17757:2:1;51285:79:0;;;17739:21:1;17796:2;17776:18;;;17769:30;17835:31;17815:18;;;17808:59;17884:18;;51285:79:0;17555:353:1;51285:79:0;51406:10;51387:30;;;;:18;:30;;;;;51420:15;51387:48;;51448:130;51465:14;51461:18;;:1;:18;;;51448:130;;;51522:7;;51500:30;;51510:10;;51522:7;;51500:9;:30::i;:::-;51555:7;;:11;;:7;;;:11;:::i;:::-;51545:7;:21;;-1:-1:-1;;51545:21:0;;;;;;;;;;;;51481:3;;;;:::i;:::-;;;;51448:130;;41930:256;42027:7;42063:23;42080:5;42063:16;:23::i;:::-;42055:5;:31;42047:87;;;;-1:-1:-1;;;42047:87:0;;8277:2:1;42047:87:0;;;8259:21:1;8316:2;8296:18;;;8289:30;8355:34;8335:18;;;8328:62;-1:-1:-1;;;8406:18:1;;;8399:41;8457:19;;42047:87:0;8075:407:1;42047:87:0;-1:-1:-1;;;;;;42152:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41930:256::o;53195:276::-;48833:6;;-1:-1:-1;;;;;48833:6:0;27123:10;48980:23;48972:68;;;;-1:-1:-1;;;48972:68:0;;;;;;;:::i;:::-;53261:21:::1;53301:11:::0;53293:46:::1;;;::::0;-1:-1:-1;;;53293:46:0;;15412:2:1;53293:46:0::1;::::0;::::1;15394:21:1::0;15451:2;15431:18;;;15424:30;-1:-1:-1;;;15470:18:1;;;15463:52;15532:18;;53293:46:0::1;15210:346:1::0;53293:46:0::1;53371:35;::::0;53353:12:::1;::::0;53371:10:::1;::::0;53394:7;;53353:12;53371:35;53353:12;53371:35;53394:7;53371:10;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53352:54;;;53425:7;53417:46;;;::::0;-1:-1:-1;;;53417:46:0;;16996:2:1;53417:46:0::1;::::0;::::1;16978:21:1::0;17035:2;17015:18;;;17008:30;17074:28;17054:18;;;17047:56;17120:18;;53417:46:0::1;16794:350:1::0;53417:46:0::1;53232:239;;53195:276::o:0;32373:185::-;32511:39;32528:4;32534:2;32538:7;32511:39;;;;;;;;;;;;:16;:39::i;42452:233::-;42527:7;42563:30;42350:10;:17;;42262:113;42563:30;42555:5;:38;42547:95;;;;-1:-1:-1;;;42547:95:0;;16583:2:1;42547:95:0;;;16565:21:1;16622:2;16602:18;;;16595:30;16661:34;16641:18;;;16634:62;-1:-1:-1;;;16712:18:1;;;16705:42;16764:19;;42547:95:0;16381:408:1;42547:95:0;42660:10;42671:5;42660:17;;;;;;;;:::i;:::-;;;;;;;;;42653:24;;42452:233;;;:::o;52554:102::-;48833:6;;-1:-1:-1;;;;;48833:6:0;27123:10;48980:23;48972:68;;;;-1:-1:-1;;;48972:68:0;;;;;;;:::i;:::-;52628:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;29208:239::-:0;29280:7;29316:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29316:16:0;29351:19;29343:73;;;;-1:-1:-1;;;29343:73:0;;12637:2:1;29343:73:0;;;12619:21:1;12676:2;12656:18;;;12649:30;12715:34;12695:18;;;12688:62;-1:-1:-1;;;12766:18:1;;;12759:39;12815:19;;29343:73:0;12435:405:1;50227:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28938:208::-;29010:7;-1:-1:-1;;;;;29038:19:0;;29030:74;;;;-1:-1:-1;;;29030:74:0;;12226:2:1;29030:74:0;;;12208:21:1;12265:2;12245:18;;;12238:30;12304:34;12284:18;;;12277:62;-1:-1:-1;;;12355:18:1;;;12348:40;12405:19;;29030:74:0;12024:406:1;29030:74:0;-1:-1:-1;;;;;;29122:16:0;;;;;:9;:16;;;;;;;28938:208::o;49411:94::-;48833:6;;-1:-1:-1;;;;;48833:6:0;27123:10;48980:23;48972:68;;;;-1:-1:-1;;;48972:68:0;;;;;;;:::i;:::-;49476:21:::1;49494:1;49476:9;:21::i;:::-;49411:94::o:0;51648:288::-;48833:6;;-1:-1:-1;;;;;48833:6:0;27123:10;48980:23;48972:68;;;;-1:-1:-1;;;48972:68:0;;;;;;;:::i;:::-;51711:8:::1;::::0;;;::::1;;;51703:50;;;::::0;-1:-1:-1;;;51703:50:0;;9872:2:1;51703:50:0::1;::::0;::::1;9854:21:1::0;9911:2;9891:18;;;9884:30;9950:27;9930:18;;;9923:55;9995:18;;51703:50:0::1;9670:349:1::0;51703:50:0::1;51771:7;51766:130;51788:8;::::0;::::1;::::0;;;::::1;::::0;::::1;51784:12:::0;;::::1;;51766:130;;;51840:7;::::0;51818:30:::1;::::0;51828:10:::1;::::0;51840:7:::1;;51818:9;:30::i;:::-;51873:7;::::0;:11:::1;::::0;:7:::1;;::::0;:11:::1;:::i;:::-;51863:7;:21:::0;;-1:-1:-1;;51863:21:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;51798:3;::::1;::::0;::::1;:::i;:::-;;;;51766:130;;;-1:-1:-1::0;51920:8:0::1;::::0;;;;::::1;;;::::0;::::1;51908:20;51920:8:::0;;51908:20:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51648:288::o:0;52349:81::-;48833:6;;-1:-1:-1;;;;;48833:6:0;27123:10;48980:23;48972:68;;;;-1:-1:-1;;;48972:68:0;;;;;;;:::i;:::-;52412:10:::1;::::0;;-1:-1:-1;;52398:24:0;::::1;52412:10:::0;;;;::::1;;;52411:11;52398:24:::0;;::::1;;::::0;;52349:81::o;29683:104::-;29739:13;29772:7;29765:14;;;;;:::i;31366:295::-;-1:-1:-1;;;;;31469:24:0;;27123:10;31469:24;;31461:62;;;;-1:-1:-1;;;31461:62:0;;10631:2:1;31461:62:0;;;10613:21:1;10670:2;10650:18;;;10643:30;10709:27;10689:18;;;10682:55;10754:18;;31461:62:0;10429:349:1;31461:62:0;27123:10;31536:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31536:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31536:53:0;;;;;;;;;;31605:48;;7799:41:1;;;31536:42:0;;27123:10;31605:48;;7772:18:1;31605:48:0;;;;;;;31366:295;;:::o;32629:328::-;32804:41;27123:10;32837:7;32804:18;:41::i;:::-;32796:103;;;;-1:-1:-1;;;32796:103:0;;;;;;;:::i;:::-;32910:39;32924:4;32930:2;32934:7;32943:5;32910:13;:39::i;:::-;32629:328;;;;:::o;50255:37::-;;;;;;;:::i;52664:482::-;34532:4;34556:16;;;:7;:16;;;;;;52762:13;;-1:-1:-1;;;;;34556:16:0;52793:77;;;;-1:-1:-1;;;52793:77:0;;14996:2:1;52793:77:0;;;14978:21:1;15035:2;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;-1:-1:-1;;;15125:18:1;;;15118:45;15180:19;;52793:77:0;14794:411:1;52793:77:0;52891:27;52921:17;52930:7;52921:8;:17::i;:::-;52891:47;;52949:28;52980:10;:8;:10::i;:::-;52949:41;;53049:1;53024:14;53018:28;:32;:120;;;;;;;;;;;;;;;;;53077:14;53094:13;53109;53060:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53018:120;53011:127;52664:482;-1:-1:-1;;;;52664:482:0:o;51999:342::-;52058:16;52087:18;52108:17;52118:6;52108:9;:17::i;:::-;52087:38;;52138:25;52180:10;52166:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52166:25:0;;52138:53;;52206:9;52202:106;52221:10;52217:1;:14;52202:106;;;52266:30;52286:6;52294:1;52266:19;:30::i;:::-;52252:8;52261:1;52252:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52233:3;;;;:::i;:::-;;;;52202:106;;;-1:-1:-1;52325:8:0;51999:342;-1:-1:-1;;;51999:342:0:o;49660:192::-;48833:6;;-1:-1:-1;;;;;48833:6:0;27123:10;48980:23;48972:68;;;;-1:-1:-1;;;48972:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49749:22:0;::::1;49741:73;;;::::0;-1:-1:-1;;;49741:73:0;;9108:2:1;49741:73:0::1;::::0;::::1;9090:21:1::0;9147:2;9127:18;;;9120:30;9186:34;9166:18;;;9159:62;-1:-1:-1;;;9237:18:1;;;9230:36;9283:19;;49741:73:0::1;8906:402:1::0;49741:73:0::1;49825:19;49835:8;49825:9;:19::i;:::-;49660:192:::0;:::o;17400:387::-;17723:20;17771:8;;;17400:387::o;28569:305::-;28671:4;-1:-1:-1;;;;;;28708:40:0;;-1:-1:-1;;;28708:40:0;;:105;;-1:-1:-1;;;;;;;28765:48:0;;-1:-1:-1;;;28765:48:0;28708:105;:158;;;-1:-1:-1;;;;;;;;;;14509:40:0;;;28830:36;14400:157;38449:174;38524:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38524:29:0;-1:-1:-1;;;;;38524:29:0;;;;;;;;:24;;38578:23;38524:24;38578:14;:23::i;:::-;-1:-1:-1;;;;;38569:46:0;;;;;;;;;;;38449:174;;:::o;34761:348::-;34854:4;34556:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34556:16:0;34871:73;;;;-1:-1:-1;;;34871:73:0;;10985:2:1;34871:73:0;;;10967:21:1;11024:2;11004:18;;;10997:30;11063:34;11043:18;;;11036:62;-1:-1:-1;;;11114:18:1;;;11107:42;11166:19;;34871:73:0;10783:408:1;34871:73:0;34955:13;34971:23;34986:7;34971:14;:23::i;:::-;34955:39;;35024:5;-1:-1:-1;;;;;35013:16:0;:7;-1:-1:-1;;;;;35013:16:0;;:51;;;;35057:7;-1:-1:-1;;;;;35033:31:0;:20;35045:7;35033:11;:20::i;:::-;-1:-1:-1;;;;;35033:31:0;;35013:51;:87;;;-1:-1:-1;;;;;;31853:25:0;;;31829:4;31853:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35068:32;31732:164;37753:578;37912:4;-1:-1:-1;;;;;37885:31:0;:23;37900:7;37885:14;:23::i;:::-;-1:-1:-1;;;;;37885:31:0;;37877:85;;;;-1:-1:-1;;;37877:85:0;;14586:2:1;37877:85:0;;;14568:21:1;14625:2;14605:18;;;14598:30;14664:34;14644:18;;;14637:62;-1:-1:-1;;;14715:18:1;;;14708:39;14764:19;;37877:85:0;14384:405:1;37877:85:0;-1:-1:-1;;;;;37981:16:0;;37973:65;;;;-1:-1:-1;;;37973:65:0;;10226:2:1;37973:65:0;;;10208:21:1;10265:2;10245:18;;;10238:30;10304:34;10284:18;;;10277:62;-1:-1:-1;;;10355:18:1;;;10348:34;10399:19;;37973:65:0;10024:400:1;37973:65:0;38051:39;38072:4;38078:2;38082:7;38051:20;:39::i;:::-;38155:29;38172:1;38176:7;38155:8;:29::i;:::-;-1:-1:-1;;;;;38197:15:0;;;;;;:9;:15;;;;;:20;;38216:1;;38197:15;:20;;38216:1;;38197:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38228:13:0;;;;;;:9;:13;;;;;:18;;38245:1;;38228:13;:18;;38245:1;;38228:18;:::i;:::-;;;;-1:-1:-1;;38257:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38257:21:0;-1:-1:-1;;;;;38257:21:0;;;;;;;;;38296:27;;38257:16;;38296:27;;;;;;;37753:578;;;:::o;35451:110::-;35527:26;35537:2;35541:7;35527:26;;;;;;;;;;;;:9;:26::i;49860:173::-;49935:6;;;-1:-1:-1;;;;;49952:17:0;;;-1:-1:-1;;;;;;49952:17:0;;;;;;;49985:40;;49935:6;;;49952:17;49935:6;;49985:40;;49916:16;;49985:40;49905:128;49860:173;:::o;33839:315::-;33996:28;34006:4;34012:2;34016:7;33996:9;:28::i;:::-;34043:48;34066:4;34072:2;34076:7;34085:5;34043:22;:48::i;:::-;34035:111;;;;-1:-1:-1;;;34035:111:0;;;;;;;:::i;53479:573::-;53529:27;53573:7;53569:50;;-1:-1:-1;;53597:10:0;;;;;;;;;;;;-1:-1:-1;;;53597:10:0;;;;;53479:573::o;53569:50::-;53638:2;53629:6;53670:69;53677:6;;53670:69;;53700:5;;;;:::i;:::-;;-1:-1:-1;53720:7:0;;-1:-1:-1;53725:2:0;53720:7;;:::i;:::-;;;53670:69;;;53749:17;53779:3;53769:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53769:14:0;-1:-1:-1;53749:34:0;-1:-1:-1;53803:3:0;53817:198;53824:7;;53817:198;;53852:3;53854:1;53852;:3;:::i;:::-;53848:7;-1:-1:-1;53870:10:0;53900:7;53905:2;53900;:7;:::i;:::-;:12;;53910:2;53900:12;:::i;:::-;53895:17;;:2;:17;:::i;:::-;53884:29;;:2;:29;:::i;:::-;53870:44;;53929:9;53948:4;53941:12;;53929:24;;53978:2;53968:4;53973:1;53968:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;53968:12:0;;;;;;;;-1:-1:-1;53995:8:0;54001:2;53995:8;;:::i;:::-;;;53833:182;;53817:198;;;-1:-1:-1;54039:4:0;53479:573;-1:-1:-1;;;;53479:573:0:o;52438:108::-;52498:13;52531:7;52524:14;;;;;:::i;43298:589::-;-1:-1:-1;;;;;43504:18:0;;43500:187;;43539:40;43571:7;44714:10;:17;;44687:24;;;;:15;:24;;;;;:44;;;44742:24;;;;;;;;;;;;44610:164;43539:40;43500:187;;;43609:2;-1:-1:-1;;;;;43601:10:0;:4;-1:-1:-1;;;;;43601:10:0;;43597:90;;43628:47;43661:4;43667:7;43628:32;:47::i;:::-;-1:-1:-1;;;;;43701:16:0;;43697:183;;43734:45;43771:7;43734:36;:45::i;43697:183::-;43807:4;-1:-1:-1;;;;;43801:10:0;:2;-1:-1:-1;;;;;43801:10:0;;43797:83;;43828:40;43856:2;43860:7;43828:27;:40::i;35788:321::-;35918:18;35924:2;35928:7;35918:5;:18::i;:::-;35969:54;36000:1;36004:2;36008:7;36017:5;35969:22;:54::i;:::-;35947:154;;;;-1:-1:-1;;;35947:154:0;;;;;;;:::i;39188:799::-;39343:4;-1:-1:-1;;;;;39364:13:0;;17723:20;17771:8;39360:620;;39400:72;;-1:-1:-1;;;39400:72:0;;-1:-1:-1;;;;;39400:36:0;;;;;:72;;27123:10;;39451:4;;39457:7;;39466:5;;39400:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39400:72:0;;;;;;;;-1:-1:-1;;39400:72:0;;;;;;;;;;;;:::i;:::-;;;39396:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39642:13:0;;39638:272;;39685:60;;-1:-1:-1;;;39685:60:0;;;;;;;:::i;39638:272::-;39860:6;39854:13;39845:6;39841:2;39837:15;39830:38;39396:529;-1:-1:-1;;;;;;39523:51:0;-1:-1:-1;;;39523:51:0;;-1:-1:-1;39516:58:0;;39360:620;-1:-1:-1;39964:4:0;39188:799;;;;;;:::o;45401:988::-;45667:22;45717:1;45692:22;45709:4;45692:16;:22::i;:::-;:26;;;;:::i;:::-;45729:18;45750:26;;;:17;:26;;;;;;45667:51;;-1:-1:-1;45883:28:0;;;45879:328;;-1:-1:-1;;;;;45950:18:0;;45928:19;45950:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46001:30;;;;;;:44;;;46118:30;;:17;:30;;;;;:43;;;45879:328;-1:-1:-1;46303:26:0;;;;:17;:26;;;;;;;;46296:33;;;-1:-1:-1;;;;;46347:18:0;;;;;:12;:18;;;;;:34;;;;;;;46340:41;45401:988::o;46684:1079::-;46962:10;:17;46937:22;;46962:21;;46982:1;;46962:21;:::i;:::-;46994:18;47015:24;;;:15;:24;;;;;;47388:10;:26;;46937:46;;-1:-1:-1;47015:24:0;;46937:46;;47388:26;;;;;;:::i;:::-;;;;;;;;;47366:48;;47452:11;47427:10;47438;47427:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47532:28;;;:15;:28;;;;;;;:41;;;47704:24;;;;;47697:31;47739:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46755:1008;;;46684:1079;:::o;44188:221::-;44273:14;44290:20;44307:2;44290:16;:20::i;:::-;-1:-1:-1;;;;;44321:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44366:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44188:221:0:o;36445:382::-;-1:-1:-1;;;;;36525:16:0;;36517:61;;;;-1:-1:-1;;;36517:61:0;;13451:2:1;36517:61:0;;;13433:21:1;;;13470:18;;;13463:30;13529:34;13509:18;;;13502:62;13581:18;;36517:61:0;13249:356:1;36517:61:0;34532:4;34556:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34556:16:0;:30;36589:58;;;;-1:-1:-1;;;36589:58:0;;9515:2:1;36589:58:0;;;9497:21:1;9554:2;9534:18;;;9527:30;9593;9573:18;;;9566:58;9641:18;;36589:58:0;9313:352:1;36589:58:0;36660:45;36689:1;36693:2;36697:7;36660:20;:45::i;:::-;-1:-1:-1;;;;;36718:13:0;;;;;;:9;:13;;;;;:18;;36735:1;;36718:13;:18;;36735:1;;36718:18;:::i;:::-;;;;-1:-1:-1;;36747:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36747:21:0;-1:-1:-1;;;;;36747:21:0;;;;;;;;36786:33;;36747:16;;;36786:33;;36747:16;;36786:33;36445:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:269::-;4100:6;4153:2;4141:9;4132:7;4128:23;4124:32;4121:52;;;4169:1;4166;4159:12;4121:52;4208:9;4195:23;4258:4;4251:5;4247:16;4240:5;4237:27;4227:55;;4278:1;4275;4268:12;4317:257;4358:3;4396:5;4390:12;4423:6;4418:3;4411:19;4439:63;4495:6;4488:4;4483:3;4479:14;4472:4;4465:5;4461:16;4439:63;:::i;:::-;4556:2;4535:15;-1:-1:-1;;4531:29:1;4522:39;;;;4563:4;4518:50;;4317:257;-1:-1:-1;;4317:257:1:o;4579:1527::-;4803:3;4841:6;4835:13;4867:4;4880:51;4924:6;4919:3;4914:2;4906:6;4902:15;4880:51;:::i;:::-;4994:13;;4953:16;;;;5016:55;4994:13;4953:16;5038:15;;;5016:55;:::i;:::-;5160:13;;5093:20;;;5133:1;;5220;5242:18;;;;5295;;;;5322:93;;5400:4;5390:8;5386:19;5374:31;;5322:93;5463:2;5453:8;5450:16;5430:18;5427:40;5424:167;;;-1:-1:-1;;;5490:33:1;;5546:4;5543:1;5536:15;5576:4;5497:3;5564:17;5424:167;5607:18;5634:110;;;;5758:1;5753:328;;;;5600:481;;5634:110;-1:-1:-1;;5669:24:1;;5655:39;;5714:20;;;;-1:-1:-1;5634:110:1;;5753:328;18952:1;18945:14;;;18989:4;18976:18;;5848:1;5862:169;5876:8;5873:1;5870:15;5862:169;;;5958:14;;5943:13;;;5936:37;6001:16;;;;5893:10;;5862:169;;;5866:3;;6062:8;6055:5;6051:20;6044:27;;5600:481;-1:-1:-1;6097:3:1;;4579:1527;-1:-1:-1;;;;;;;;;;;4579:1527:1:o;6529:488::-;-1:-1:-1;;;;;6798:15:1;;;6780:34;;6850:15;;6845:2;6830:18;;6823:43;6897:2;6882:18;;6875:34;;;6945:3;6940:2;6925:18;;6918:31;;;6723:4;;6966:45;;6991:19;;6983:6;6966:45;:::i;:::-;6958:53;6529:488;-1:-1:-1;;;;;;6529:488:1:o;7022:632::-;7193:2;7245:21;;;7315:13;;7218:18;;;7337:22;;;7164:4;;7193:2;7416:15;;;;7390:2;7375:18;;;7164:4;7459:169;7473:6;7470:1;7467:13;7459:169;;;7534:13;;7522:26;;7603:15;;;;7568:12;;;;7495:1;7488:9;7459:169;;;-1:-1:-1;7645:3:1;;7022:632;-1:-1:-1;;;;;;7022:632:1:o;7851:219::-;8000:2;7989:9;7982:21;7963:4;8020:44;8060:2;8049:9;8045:18;8037:6;8020:44;:::i;8487:414::-;8689:2;8671:21;;;8728:2;8708:18;;;8701:30;8767:34;8762:2;8747:18;;8740:62;-1:-1:-1;;;8833:2:1;8818:18;;8811:48;8891:3;8876:19;;8487:414::o;14023:356::-;14225:2;14207:21;;;14244:18;;;14237:30;14303:34;14298:2;14283:18;;14276:62;14370:2;14355:18;;14023:356::o;15963:413::-;16165:2;16147:21;;;16204:2;16184:18;;;16177:30;16243:34;16238:2;16223:18;;16216:62;-1:-1:-1;;;16309:2:1;16294:18;;16287:47;16366:3;16351:19;;15963:413::o;19005:224::-;19044:3;19072:6;19105:2;19102:1;19098:10;19135:2;19132:1;19128:10;19166:3;19162:2;19158:12;19153:3;19150:21;19147:47;;;19174:18;;:::i;:::-;19210:13;;19005:224;-1:-1:-1;;;;19005:224:1:o;19234:128::-;19274:3;19305:1;19301:6;19298:1;19295:13;19292:39;;;19311:18;;:::i;:::-;-1:-1:-1;19347:9:1;;19234:128::o;19367:204::-;19405:3;19441:4;19438:1;19434:12;19473:4;19470:1;19466:12;19508:3;19502:4;19498:14;19493:3;19490:23;19487:49;;;19516:18;;:::i;:::-;19552:13;;19367:204;-1:-1:-1;;;19367:204:1:o;19576:217::-;19616:1;19642;19632:132;;19686:10;19681:3;19677:20;19674:1;19667:31;19721:4;19718:1;19711:15;19749:4;19746:1;19739:15;19632:132;-1:-1:-1;19778:9:1;;19576:217::o;19798:168::-;19838:7;19904:1;19900;19896:6;19892:14;19889:1;19886:21;19881:1;19874:9;19867:17;19863:45;19860:71;;;19911:18;;:::i;:::-;-1:-1:-1;19951:9:1;;19798:168::o;19971:125::-;20011:4;20039:1;20036;20033:8;20030:34;;;20044:18;;:::i;:::-;-1:-1:-1;20081:9:1;;19971:125::o;20101:195::-;20139:4;20176;20173:1;20169:12;20208:4;20205:1;20201:12;20233:3;20228;20225:12;20222:38;;;20240:18;;:::i;:::-;20277:13;;;20101:195;-1:-1:-1;;;20101:195:1:o;20301:258::-;20373:1;20383:113;20397:6;20394:1;20391:13;20383:113;;;20473:11;;;20467:18;20454:11;;;20447:39;20419:2;20412:10;20383:113;;;20514:6;20511:1;20508:13;20505:48;;;-1:-1:-1;;20549:1:1;20531:16;;20524:27;20301:258::o;20564:380::-;20643:1;20639:12;;;;20686;;;20707:61;;20761:4;20753:6;20749:17;20739:27;;20707:61;20814:2;20806:6;20803:14;20783:18;20780:38;20777:161;;;20860:10;20855:3;20851:20;20848:1;20841:31;20895:4;20892:1;20885:15;20923:4;20920:1;20913:15;20777:161;;20564:380;;;:::o;20949:135::-;20988:3;-1:-1:-1;;21009:17:1;;21006:43;;;21029:18;;:::i;:::-;-1:-1:-1;21076:1:1;21065:13;;20949:135::o;21089:175::-;21126:3;21170:4;21163:5;21159:16;21199:4;21190:7;21187:17;21184:43;;;21207:18;;:::i;:::-;21256:1;21243:15;;21089:175;-1:-1:-1;;21089:175:1:o;21269:127::-;21330:10;21325:3;21321:20;21318:1;21311:31;21361:4;21358:1;21351:15;21385:4;21382:1;21375:15;21401:127;21462:10;21457:3;21453:20;21450:1;21443:31;21493:4;21490:1;21483:15;21517:4;21514:1;21507:15;21533:127;21594:10;21589:3;21585:20;21582:1;21575:31;21625:4;21622:1;21615:15;21649:4;21646:1;21639:15;21665:127;21726:10;21721:3;21717:20;21714:1;21707:31;21757:4;21754:1;21747:15;21781:4;21778:1;21771:15;21797:131;-1:-1:-1;;;;;;21871:32:1;;21861:43;;21851:71;;21918:1;21915;21908:12

Swarm Source

ipfs://5c0a6f72fe09a06b974fd99e1d5ac4cbcf471a5af2baa6820f30654aed0c6f52
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.