ETH Price: $3,415.16 (-1.19%)
Gas: 9 Gwei

Token

Gummies Gang (GG)
 

Overview

Max Total Supply

6,969 GG

Holders

3,020

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GG
0x3ea06201f8f7dc29ba776e6ffcdf1ef77528e8b2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A community driven project of 6969 randomly generated highly chewy NFTs on Ethereum. Each Gummies gives holders tasty access to future releases and grants you entry to the Gummies Gang! Over 169+ traits all gummies are fun and unique.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GummiesGang

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 2022-04-07
*/

/**
 *Submitted for verification at Etherscan.io on 2022-03-28
*/

/**
 *Submitted for verification at Etherscan.io on 2022-03-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


//merkle start

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

//merkle end

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);
}
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

interface 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);
}

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);
}

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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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);
    }
}

contract GummiesGang is Ownable, ERC721A, ReentrancyGuard {
    

    using Strings for uint256;
    
    bool public Presale_status = false;
    bool public public_sale_status = false;

    string public baseURI;
    uint public tokenPrice = 0.075 ether;
    uint public presale_price = 0.075 ether;
    uint256 public maxSupply = 6969;
    uint256 public maxPerWallet = 2;
    uint public maxPerTransaction = 2; 
    uint public phase= 6969;
     bytes32 public whitelistMerkleRoot;

    constructor(string memory name, 
        string memory symbol) 
        ERC721A(name, symbol) 
    {}

    function buy(uint256 _count) public payable {
       
        require(public_sale_status == true, "Sale is not Active");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 2");
        require(totalSupply() + _count <= maxSupply, "Reaching max supply");
        require(totalSupply() + _count<= phase, "Not enough tokens left in current phase");
        require(getMintedCount(msg.sender) + _count <= maxPerWallet, "Exceed max per wallet");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        
        _safeMint(msg.sender, _count);

    }
    function buy_presale(uint256 _count, bytes32[] calldata merkleProof) public payable {
        require(Presale_status == true, "Sale is not Active");
         require(MerkleProof.verify(merkleProof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"Your address is not Whitelisted");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 2");
        require(totalSupply() + _count <= maxSupply, "Reaching max supply");
        require(totalSupply() + _count<= phase, "Not enough tokens left in current phase");
        require(getMintedCount(msg.sender) + _count <= maxPerWallet, "Exceed max per wallet");
        require(msg.value >= presale_price, "incorrect ether amount");

        _safeMint(msg.sender, _count);

    }

        function sendGifts(address[] memory _wallets) public onlyOwner{
        require(_wallets.length > 0, "mint at least one token");
        require(totalSupply() + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1 );
        
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

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

    function setmaxPerWallet(uint256 _temp) public onlyOwner() {
        maxPerWallet = _temp;
    }

    function setmaxPerTransaction(uint256 _temp) public onlyOwner() {
        maxPerTransaction = _temp;
    }

    function pre_Sale_status(bool temp) external onlyOwner {
        Presale_status = temp;
    }
    function publicSale_status(bool temp) external onlyOwner {
        public_sale_status = temp;
    }
     function update_public_price(uint price) external onlyOwner {
        tokenPrice = price;
    }
       function update_preSale_price(uint price) external onlyOwner {
        presale_price = price;
    }

    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(owner()).transfer(_balance); //Owner
    }

        function setWhiteListMerkleRoot(bytes32 merkleRoot) public onlyOwner {
		whitelistMerkleRoot = merkleRoot;
	}

         function setPhase(uint256 _newPhase) public onlyOwner() {
        phase = _newPhase;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Presale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"buy_presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"phase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"pre_Sale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","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":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPhase","type":"uint256"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"setmaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"setmaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_preSale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_public_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805461ffff1916905567010a741a46278000600c819055600d55611b39600e8190556002600f8190556010556011553480156200004257600080fd5b50604051620029fa380380620029fa83398101604081905262000065916200025b565b81816200007233620000ae565b815162000087906003906020850190620000fe565b5080516200009d906004906020840190620000fe565b505060016009555062000318915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200010c90620002c5565b90600052602060002090601f0160209004810192826200013057600085556200017b565b82601f106200014b57805160ff19168380011785556200017b565b828001600101855582156200017b579182015b828111156200017b5782518255916020019190600101906200015e565b50620001899291506200018d565b5090565b5b808211156200018957600081556001016200018e565b600082601f830112620001b657600080fd5b81516001600160401b0380821115620001d357620001d362000302565b604051601f8301601f19908116603f01168101908282118183101715620001fe57620001fe62000302565b816040528381526020925086838588010111156200021b57600080fd5b600091505b838210156200023f578582018301518183018401529082019062000220565b83821115620002515760008385830101525b9695505050505050565b600080604083850312156200026f57600080fd5b82516001600160401b03808211156200028757600080fd5b6200029586838701620001a4565b93506020850151915080821115620002ac57600080fd5b50620002bb85828601620001a4565b9150509250929050565b600181811c90821680620002da57607f821691505b60208210811415620002fc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126d280620003286000396000f3fe6080604052600436106102675760003560e01c80637c8255db11610144578063b88d4fde116100b6578063e08e65ea1161007a578063e08e65ea146106cb578063e2a70eaf146106eb578063e985e9c51461070b578063ef5f198514610754578063f2fde38b14610774578063f96254741461079457600080fd5b8063b88d4fde14610648578063ba6dd6f014610668578063c87b56dd14610682578063d5abeb01146106a2578063d96a094a146106b857600080fd5b8063969745e811610108578063969745e8146105a657806397d6696b146105bc578063a0bcfc7f146105dc578063a22cb465146105fc578063aa98e0c61461061c578063b1c9fe6e1461063257600080fd5b80637c8255db1461051e5780637ff9b5961461053e5780638da5cb5b1461055457806395d89b411461057257806395ea5e671461058757600080fd5b80633ccfd60b116101dd57806360d3e1ae116101a157806360d3e1ae146104745780636352211e1461049457806363adc5a5146104b45780636c0360eb146104d457806370a08231146104e9578063715018a61461050957600080fd5b80633ccfd60b146103f357806342842e0e14610408578063453c2310146104285780634b980d671461043e5780634f6ccce71461045457600080fd5b806312065fe01161022f57806312065fe01461033d57806318160ddd1461035a5780631cef37e41461037357806323b872dd146103935780632cc82655146103b35780632f745c59146103d357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb578063108bfbfa1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046122a8565b6107a7565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610814565b6040516102989190612440565b3480156102cf57600080fd5b506102e36102de36600461228f565b6108a6565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612197565b6108ea565b005b34801561032957600080fd5b5061031b61033836600461228f565b610978565b34801561034957600080fd5b50475b604051908152602001610298565b34801561036657600080fd5b506002546001540361034c565b34801561037f57600080fd5b5061031b61038e366004612274565b6109b0565b34801561039f57600080fd5b5061031b6103ae3660046120b6565b6109f4565b3480156103bf57600080fd5b5061031b6103ce36600461228f565b6109ff565b3480156103df57600080fd5b5061034c6103ee366004612197565b610a2e565b3480156103ff57600080fd5b5061031b610b21565b34801561041457600080fd5b5061031b6104233660046120b6565b610b9a565b34801561043457600080fd5b5061034c600f5481565b34801561044a57600080fd5b5061034c60105481565b34801561046057600080fd5b5061034c61046f36600461228f565b610bb5565b34801561048057600080fd5b5061031b61048f36600461228f565b610c58565b3480156104a057600080fd5b506102e36104af36600461228f565b610c87565b3480156104c057600080fd5b5061031b6104cf36600461228f565b610c99565b3480156104e057600080fd5b506102b6610cc8565b3480156104f557600080fd5b5061034c610504366004612068565b610d56565b34801561051557600080fd5b5061031b610da4565b34801561052a57600080fd5b5061031b6105393660046121c1565b610dda565b34801561054a57600080fd5b5061034c600c5481565b34801561056057600080fd5b506000546001600160a01b03166102e3565b34801561057e57600080fd5b506102b6610ec4565b34801561059357600080fd5b50600a5461028c90610100900460ff1681565b3480156105b257600080fd5b5061034c600d5481565b3480156105c857600080fd5b5061034c6105d7366004612068565b610ed3565b3480156105e857600080fd5b5061031b6105f73660046122e2565b610ede565b34801561060857600080fd5b5061031b61061736600461216d565b610f1b565b34801561062857600080fd5b5061034c60125481565b34801561063e57600080fd5b5061034c60115481565b34801561065457600080fd5b5061031b6106633660046120f2565b610fb1565b34801561067457600080fd5b50600a5461028c9060ff1681565b34801561068e57600080fd5b506102b661069d36600461228f565b610feb565b3480156106ae57600080fd5b5061034c600e5481565b61031b6106c636600461228f565b6110b6565b3480156106d757600080fd5b5061031b6106e636600461228f565b6112ca565b3480156106f757600080fd5b5061031b61070636600461228f565b6112f9565b34801561071757600080fd5b5061028c610726366004612083565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561076057600080fd5b5061031b61076f366004612274565b611328565b34801561078057600080fd5b5061031b61078f366004612068565b611365565b61031b6107a236600461232a565b6113fd565b60006001600160e01b031982166380ac58cd60e01b14806107d857506001600160e01b03198216635b5e139f60e01b145b806107f357506001600160e01b0319821663780e9d6360e01b145b8061080e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610823906125c4565b80601f016020809104026020016040519081016040528092919081815260200182805461084f906125c4565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b60006108b1826116be565b6108ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108f582610c87565b9050806001600160a01b0316836001600160a01b0316141561092a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094a57506109488133610726565b155b15610968576040516367d9dca160e11b815260040160405180910390fd5b6109738383836116ea565b505050565b6000546001600160a01b031633146109ab5760405162461bcd60e51b81526004016109a290612453565b60405180910390fd5b601055565b6000546001600160a01b031633146109da5760405162461bcd60e51b81526004016109a290612453565b600a80549115156101000261ff0019909216919091179055565b610973838383611746565b6000546001600160a01b03163314610a295760405162461bcd60e51b81526004016109a290612453565b601155565b6000610a3983610d56565b8210610a58576040516306ed618760e11b815260040160405180910390fd5b600154600080805b83811015610b1b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610ac75750610b13565b80516001600160a01b031615610adc57805192505b876001600160a01b0316836001600160a01b03161415610b115786841415610b0a5750935061080e92505050565b6001909301925b505b600101610a60565b50600080fd5b6000546001600160a01b03163314610b4b5760405162461bcd60e51b81526004016109a290612453565b47610b5e6000546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610b96573d6000803e3d6000fd5b5050565b61097383838360405180602001604052806000815250610fb1565b60015460009081805b82811015610c3e57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c355785831415610c2e5750949350505050565b6001909201915b50600101610bbe565b506040516329c8c00760e21b815260040160405180910390fd5b6000546001600160a01b03163314610c825760405162461bcd60e51b81526004016109a290612453565b600f55565b6000610c928261195a565b5192915050565b6000546001600160a01b03163314610cc35760405162461bcd60e51b81526004016109a290612453565b600d55565b600b8054610cd5906125c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d01906125c4565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b505050505081565b60006001600160a01b038216610d7f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610dce5760405162461bcd60e51b81526004016109a290612453565b610dd86000611a75565b565b6000546001600160a01b03163314610e045760405162461bcd60e51b81526004016109a290612453565b6000815111610e255760405162461bcd60e51b81526004016109a290612488565b600e54815160025460015403610e3b9190612536565b1115610e825760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016109a2565b60005b8151811015610b9657610eb2828281518110610ea357610ea361265a565b60200260200101516001611ac5565b80610ebc816125ff565b915050610e85565b606060048054610823906125c4565b600061080e82611adf565b6000546001600160a01b03163314610f085760405162461bcd60e51b81526004016109a290612453565b8051610b9690600b906020840190611f4c565b6001600160a01b038216331415610f455760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fbc848484611746565b610fc884848484611b34565b610fe5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ff6826116be565b61105a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a2565b6000611064611c43565b9050600081511161108457604051806020016040528060008152506110af565b8061108e84611c52565b60405160200161109f9291906123d4565b6040516020818303038152906040525b9392505050565b600a5460ff6101009091041615156001146111085760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b60448201526064016109a2565b600081116111285760405162461bcd60e51b81526004016109a290612488565b6010548111156111725760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109a2565b600e54816111836002546001540390565b61118d9190612536565b11156111d15760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109a2565b601154816111e26002546001540390565b6111ec9190612536565b111561120a5760405162461bcd60e51b81526004016109a2906124bf565b600f548161121733610ed3565b6112219190612536565b11156112675760405162461bcd60e51b8152602060048201526015602482015274115e18d95959081b585e081c195c881dd85b1b195d605a1b60448201526064016109a2565b80600c546112759190612562565b3410156112bd5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109a2565b6112c73382611ac5565b50565b6000546001600160a01b031633146112f45760405162461bcd60e51b81526004016109a290612453565b601255565b6000546001600160a01b031633146113235760405162461bcd60e51b81526004016109a290612453565b600c55565b6000546001600160a01b031633146113525760405162461bcd60e51b81526004016109a290612453565b600a805460ff1916911515919091179055565b6000546001600160a01b0316331461138f5760405162461bcd60e51b81526004016109a290612453565b6001600160a01b0381166113f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a2565b6112c781611a75565b600a5460ff1615156001146114495760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b60448201526064016109a2565b6114be828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611d4f565b61150a5760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742057686974656c69737465640060448201526064016109a2565b6000831161152a5760405162461bcd60e51b81526004016109a290612488565b6010548311156115745760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109a2565b600e54836115856002546001540390565b61158f9190612536565b11156115d35760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109a2565b601154836115e46002546001540390565b6115ee9190612536565b111561160c5760405162461bcd60e51b81526004016109a2906124bf565b600f548361161933610ed3565b6116239190612536565b11156116695760405162461bcd60e51b8152602060048201526015602482015274115e18d95959081b585e081c195c881dd85b1b195d605a1b60448201526064016109a2565b600d543410156116b45760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109a2565b6109733384611ac5565b60006001548210801561080e575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117518261195a565b80519091506000906001600160a01b0316336001600160a01b0316148061177f5750815161177f9033610726565b8061179a57503361178f846108a6565b6001600160a01b0316145b9050806117ba57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117ef5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661181657604051633a954ecd60e21b815260040160405180910390fd5b61182660008484600001516116ea565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166119105760015481101561191057825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091526001548290811015611a5c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a5a5780516001600160a01b0316156119f1579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a55579392505050565b6119f1565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b96828260405180602001604052806000815250611d65565b60006001600160a01b038216611b08576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b15611c3757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b78903390899088908890600401612403565b602060405180830381600087803b158015611b9257600080fd5b505af1925050508015611bc2575060408051601f3d908101601f19168201909252611bbf918101906122c5565b60015b611c1d573d808015611bf0576040519150601f19603f3d011682016040523d82523d6000602084013e611bf5565b606091505b508051611c15576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c3b565b5060015b949350505050565b6060600b8054610823906125c4565b606081611c765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca05780611c8a816125ff565b9150611c999050600a8361254e565b9150611c7a565b6000816001600160401b03811115611cba57611cba612670565b6040519080825280601f01601f191660200182016040528015611ce4576020820181803683370190505b5090505b8415611c3b57611cf9600183612581565b9150611d06600a8661261a565b611d11906030612536565b60f81b818381518110611d2657611d2661265a565b60200101906001600160f81b031916908160001a905350611d48600a8661254e565b9450611ce8565b600082611d5c8584611d72565b14949350505050565b6109738383836001611de6565b600081815b8451811015611dde576000858281518110611d9457611d9461265a565b60200260200101519050808311611dba5760008381526020829052604090209250611dcb565b600081815260208490526040902092505b5080611dd6816125ff565b915050611d77565b509392505050565b6001546001600160a01b038516611e0f57604051622e076360e81b815260040160405180910390fd5b83611e2d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611f435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611f195750611f176000888488611b34565b155b15611f37576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ec2565b50600155611953565b828054611f58906125c4565b90600052602060002090601f016020900481019282611f7a5760008555611fc0565b82601f10611f9357805160ff1916838001178555611fc0565b82800160010185558215611fc0579182015b82811115611fc0578251825591602001919060010190611fa5565b50611fcc929150611fd0565b5090565b5b80821115611fcc5760008155600101611fd1565b60006001600160401b03831115611ffe57611ffe612670565b612011601f8401601f1916602001612506565b905082815283838301111561202557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461205357600080fd5b919050565b8035801515811461205357600080fd5b60006020828403121561207a57600080fd5b6110af8261203c565b6000806040838503121561209657600080fd5b61209f8361203c565b91506120ad6020840161203c565b90509250929050565b6000806000606084860312156120cb57600080fd5b6120d48461203c565b92506120e26020850161203c565b9150604084013590509250925092565b6000806000806080858703121561210857600080fd5b6121118561203c565b935061211f6020860161203c565b92506040850135915060608501356001600160401b0381111561214157600080fd5b8501601f8101871361215257600080fd5b61216187823560208401611fe5565b91505092959194509250565b6000806040838503121561218057600080fd5b6121898361203c565b91506120ad60208401612058565b600080604083850312156121aa57600080fd5b6121b38361203c565b946020939093013593505050565b600060208083850312156121d457600080fd5b82356001600160401b03808211156121eb57600080fd5b818501915085601f8301126121ff57600080fd5b81358181111561221157612211612670565b8060051b9150612222848301612506565b8181528481019084860184860187018a101561223d57600080fd5b600095505b83861015612267576122538161203c565b835260019590950194918601918601612242565b5098975050505050505050565b60006020828403121561228657600080fd5b6110af82612058565b6000602082840312156122a157600080fd5b5035919050565b6000602082840312156122ba57600080fd5b81356110af81612686565b6000602082840312156122d757600080fd5b81516110af81612686565b6000602082840312156122f457600080fd5b81356001600160401b0381111561230a57600080fd5b8201601f8101841361231b57600080fd5b611c3b84823560208401611fe5565b60008060006040848603121561233f57600080fd5b8335925060208401356001600160401b038082111561235d57600080fd5b818601915086601f83011261237157600080fd5b81358181111561238057600080fd5b8760208260051b850101111561239557600080fd5b6020830194508093505050509250925092565b600081518084526123c0816020860160208601612598565b601f01601f19169290920160200192915050565b600083516123e6818460208801612598565b8351908301906123fa818360208801612598565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612436908301846123a8565b9695505050505050565b6020815260006110af60208301846123a8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b60208082526027908201527f4e6f7420656e6f75676820746f6b656e73206c65667420696e2063757272656e6040820152667420706861736560c81b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561252e5761252e612670565b604052919050565b600082198211156125495761254961262e565b500190565b60008261255d5761255d612644565b500490565b600081600019048311821515161561257c5761257c61262e565b500290565b6000828210156125935761259361262e565b500390565b60005b838110156125b357818101518382015260200161259b565b83811115610fe55750506000910152565b600181811c908216806125d857607f821691505b602082108114156125f957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126135761261361262e565b5060010190565b60008261262957612629612644565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112c757600080fdfea2646970667358221220b620db81dc78c93961c9bbda0ffc48cc1bf06686c5cf4f93c60c5b57a79f903564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c47756d6d6965732047616e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024747000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80637c8255db11610144578063b88d4fde116100b6578063e08e65ea1161007a578063e08e65ea146106cb578063e2a70eaf146106eb578063e985e9c51461070b578063ef5f198514610754578063f2fde38b14610774578063f96254741461079457600080fd5b8063b88d4fde14610648578063ba6dd6f014610668578063c87b56dd14610682578063d5abeb01146106a2578063d96a094a146106b857600080fd5b8063969745e811610108578063969745e8146105a657806397d6696b146105bc578063a0bcfc7f146105dc578063a22cb465146105fc578063aa98e0c61461061c578063b1c9fe6e1461063257600080fd5b80637c8255db1461051e5780637ff9b5961461053e5780638da5cb5b1461055457806395d89b411461057257806395ea5e671461058757600080fd5b80633ccfd60b116101dd57806360d3e1ae116101a157806360d3e1ae146104745780636352211e1461049457806363adc5a5146104b45780636c0360eb146104d457806370a08231146104e9578063715018a61461050957600080fd5b80633ccfd60b146103f357806342842e0e14610408578063453c2310146104285780634b980d671461043e5780634f6ccce71461045457600080fd5b806312065fe01161022f57806312065fe01461033d57806318160ddd1461035a5780631cef37e41461037357806323b872dd146103935780632cc82655146103b35780632f745c59146103d357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb578063108bfbfa1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046122a8565b6107a7565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610814565b6040516102989190612440565b3480156102cf57600080fd5b506102e36102de36600461228f565b6108a6565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612197565b6108ea565b005b34801561032957600080fd5b5061031b61033836600461228f565b610978565b34801561034957600080fd5b50475b604051908152602001610298565b34801561036657600080fd5b506002546001540361034c565b34801561037f57600080fd5b5061031b61038e366004612274565b6109b0565b34801561039f57600080fd5b5061031b6103ae3660046120b6565b6109f4565b3480156103bf57600080fd5b5061031b6103ce36600461228f565b6109ff565b3480156103df57600080fd5b5061034c6103ee366004612197565b610a2e565b3480156103ff57600080fd5b5061031b610b21565b34801561041457600080fd5b5061031b6104233660046120b6565b610b9a565b34801561043457600080fd5b5061034c600f5481565b34801561044a57600080fd5b5061034c60105481565b34801561046057600080fd5b5061034c61046f36600461228f565b610bb5565b34801561048057600080fd5b5061031b61048f36600461228f565b610c58565b3480156104a057600080fd5b506102e36104af36600461228f565b610c87565b3480156104c057600080fd5b5061031b6104cf36600461228f565b610c99565b3480156104e057600080fd5b506102b6610cc8565b3480156104f557600080fd5b5061034c610504366004612068565b610d56565b34801561051557600080fd5b5061031b610da4565b34801561052a57600080fd5b5061031b6105393660046121c1565b610dda565b34801561054a57600080fd5b5061034c600c5481565b34801561056057600080fd5b506000546001600160a01b03166102e3565b34801561057e57600080fd5b506102b6610ec4565b34801561059357600080fd5b50600a5461028c90610100900460ff1681565b3480156105b257600080fd5b5061034c600d5481565b3480156105c857600080fd5b5061034c6105d7366004612068565b610ed3565b3480156105e857600080fd5b5061031b6105f73660046122e2565b610ede565b34801561060857600080fd5b5061031b61061736600461216d565b610f1b565b34801561062857600080fd5b5061034c60125481565b34801561063e57600080fd5b5061034c60115481565b34801561065457600080fd5b5061031b6106633660046120f2565b610fb1565b34801561067457600080fd5b50600a5461028c9060ff1681565b34801561068e57600080fd5b506102b661069d36600461228f565b610feb565b3480156106ae57600080fd5b5061034c600e5481565b61031b6106c636600461228f565b6110b6565b3480156106d757600080fd5b5061031b6106e636600461228f565b6112ca565b3480156106f757600080fd5b5061031b61070636600461228f565b6112f9565b34801561071757600080fd5b5061028c610726366004612083565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561076057600080fd5b5061031b61076f366004612274565b611328565b34801561078057600080fd5b5061031b61078f366004612068565b611365565b61031b6107a236600461232a565b6113fd565b60006001600160e01b031982166380ac58cd60e01b14806107d857506001600160e01b03198216635b5e139f60e01b145b806107f357506001600160e01b0319821663780e9d6360e01b145b8061080e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610823906125c4565b80601f016020809104026020016040519081016040528092919081815260200182805461084f906125c4565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b60006108b1826116be565b6108ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108f582610c87565b9050806001600160a01b0316836001600160a01b0316141561092a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094a57506109488133610726565b155b15610968576040516367d9dca160e11b815260040160405180910390fd5b6109738383836116ea565b505050565b6000546001600160a01b031633146109ab5760405162461bcd60e51b81526004016109a290612453565b60405180910390fd5b601055565b6000546001600160a01b031633146109da5760405162461bcd60e51b81526004016109a290612453565b600a80549115156101000261ff0019909216919091179055565b610973838383611746565b6000546001600160a01b03163314610a295760405162461bcd60e51b81526004016109a290612453565b601155565b6000610a3983610d56565b8210610a58576040516306ed618760e11b815260040160405180910390fd5b600154600080805b83811015610b1b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610ac75750610b13565b80516001600160a01b031615610adc57805192505b876001600160a01b0316836001600160a01b03161415610b115786841415610b0a5750935061080e92505050565b6001909301925b505b600101610a60565b50600080fd5b6000546001600160a01b03163314610b4b5760405162461bcd60e51b81526004016109a290612453565b47610b5e6000546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610b96573d6000803e3d6000fd5b5050565b61097383838360405180602001604052806000815250610fb1565b60015460009081805b82811015610c3e57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610c355785831415610c2e5750949350505050565b6001909201915b50600101610bbe565b506040516329c8c00760e21b815260040160405180910390fd5b6000546001600160a01b03163314610c825760405162461bcd60e51b81526004016109a290612453565b600f55565b6000610c928261195a565b5192915050565b6000546001600160a01b03163314610cc35760405162461bcd60e51b81526004016109a290612453565b600d55565b600b8054610cd5906125c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d01906125c4565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b505050505081565b60006001600160a01b038216610d7f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610dce5760405162461bcd60e51b81526004016109a290612453565b610dd86000611a75565b565b6000546001600160a01b03163314610e045760405162461bcd60e51b81526004016109a290612453565b6000815111610e255760405162461bcd60e51b81526004016109a290612488565b600e54815160025460015403610e3b9190612536565b1115610e825760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016109a2565b60005b8151811015610b9657610eb2828281518110610ea357610ea361265a565b60200260200101516001611ac5565b80610ebc816125ff565b915050610e85565b606060048054610823906125c4565b600061080e82611adf565b6000546001600160a01b03163314610f085760405162461bcd60e51b81526004016109a290612453565b8051610b9690600b906020840190611f4c565b6001600160a01b038216331415610f455760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fbc848484611746565b610fc884848484611b34565b610fe5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ff6826116be565b61105a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a2565b6000611064611c43565b9050600081511161108457604051806020016040528060008152506110af565b8061108e84611c52565b60405160200161109f9291906123d4565b6040516020818303038152906040525b9392505050565b600a5460ff6101009091041615156001146111085760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b60448201526064016109a2565b600081116111285760405162461bcd60e51b81526004016109a290612488565b6010548111156111725760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109a2565b600e54816111836002546001540390565b61118d9190612536565b11156111d15760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109a2565b601154816111e26002546001540390565b6111ec9190612536565b111561120a5760405162461bcd60e51b81526004016109a2906124bf565b600f548161121733610ed3565b6112219190612536565b11156112675760405162461bcd60e51b8152602060048201526015602482015274115e18d95959081b585e081c195c881dd85b1b195d605a1b60448201526064016109a2565b80600c546112759190612562565b3410156112bd5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109a2565b6112c73382611ac5565b50565b6000546001600160a01b031633146112f45760405162461bcd60e51b81526004016109a290612453565b601255565b6000546001600160a01b031633146113235760405162461bcd60e51b81526004016109a290612453565b600c55565b6000546001600160a01b031633146113525760405162461bcd60e51b81526004016109a290612453565b600a805460ff1916911515919091179055565b6000546001600160a01b0316331461138f5760405162461bcd60e51b81526004016109a290612453565b6001600160a01b0381166113f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a2565b6112c781611a75565b600a5460ff1615156001146114495760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b60448201526064016109a2565b6114be828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611d4f565b61150a5760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742057686974656c69737465640060448201526064016109a2565b6000831161152a5760405162461bcd60e51b81526004016109a290612488565b6010548311156115745760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109a2565b600e54836115856002546001540390565b61158f9190612536565b11156115d35760405162461bcd60e51b81526020600482015260136024820152725265616368696e67206d617820737570706c7960681b60448201526064016109a2565b601154836115e46002546001540390565b6115ee9190612536565b111561160c5760405162461bcd60e51b81526004016109a2906124bf565b600f548361161933610ed3565b6116239190612536565b11156116695760405162461bcd60e51b8152602060048201526015602482015274115e18d95959081b585e081c195c881dd85b1b195d605a1b60448201526064016109a2565b600d543410156116b45760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109a2565b6109733384611ac5565b60006001548210801561080e575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117518261195a565b80519091506000906001600160a01b0316336001600160a01b0316148061177f5750815161177f9033610726565b8061179a57503361178f846108a6565b6001600160a01b0316145b9050806117ba57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117ef5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661181657604051633a954ecd60e21b815260040160405180910390fd5b61182660008484600001516116ea565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166119105760015481101561191057825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091526001548290811015611a5c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a5a5780516001600160a01b0316156119f1579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a55579392505050565b6119f1565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b96828260405180602001604052806000815250611d65565b60006001600160a01b038216611b08576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b60006001600160a01b0384163b15611c3757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b78903390899088908890600401612403565b602060405180830381600087803b158015611b9257600080fd5b505af1925050508015611bc2575060408051601f3d908101601f19168201909252611bbf918101906122c5565b60015b611c1d573d808015611bf0576040519150601f19603f3d011682016040523d82523d6000602084013e611bf5565b606091505b508051611c15576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c3b565b5060015b949350505050565b6060600b8054610823906125c4565b606081611c765750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca05780611c8a816125ff565b9150611c999050600a8361254e565b9150611c7a565b6000816001600160401b03811115611cba57611cba612670565b6040519080825280601f01601f191660200182016040528015611ce4576020820181803683370190505b5090505b8415611c3b57611cf9600183612581565b9150611d06600a8661261a565b611d11906030612536565b60f81b818381518110611d2657611d2661265a565b60200101906001600160f81b031916908160001a905350611d48600a8661254e565b9450611ce8565b600082611d5c8584611d72565b14949350505050565b6109738383836001611de6565b600081815b8451811015611dde576000858281518110611d9457611d9461265a565b60200260200101519050808311611dba5760008381526020829052604090209250611dcb565b600081815260208490526040902092505b5080611dd6816125ff565b915050611d77565b509392505050565b6001546001600160a01b038516611e0f57604051622e076360e81b815260040160405180910390fd5b83611e2d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611f435760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611f195750611f176000888488611b34565b155b15611f37576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ec2565b50600155611953565b828054611f58906125c4565b90600052602060002090601f016020900481019282611f7a5760008555611fc0565b82601f10611f9357805160ff1916838001178555611fc0565b82800160010185558215611fc0579182015b82811115611fc0578251825591602001919060010190611fa5565b50611fcc929150611fd0565b5090565b5b80821115611fcc5760008155600101611fd1565b60006001600160401b03831115611ffe57611ffe612670565b612011601f8401601f1916602001612506565b905082815283838301111561202557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461205357600080fd5b919050565b8035801515811461205357600080fd5b60006020828403121561207a57600080fd5b6110af8261203c565b6000806040838503121561209657600080fd5b61209f8361203c565b91506120ad6020840161203c565b90509250929050565b6000806000606084860312156120cb57600080fd5b6120d48461203c565b92506120e26020850161203c565b9150604084013590509250925092565b6000806000806080858703121561210857600080fd5b6121118561203c565b935061211f6020860161203c565b92506040850135915060608501356001600160401b0381111561214157600080fd5b8501601f8101871361215257600080fd5b61216187823560208401611fe5565b91505092959194509250565b6000806040838503121561218057600080fd5b6121898361203c565b91506120ad60208401612058565b600080604083850312156121aa57600080fd5b6121b38361203c565b946020939093013593505050565b600060208083850312156121d457600080fd5b82356001600160401b03808211156121eb57600080fd5b818501915085601f8301126121ff57600080fd5b81358181111561221157612211612670565b8060051b9150612222848301612506565b8181528481019084860184860187018a101561223d57600080fd5b600095505b83861015612267576122538161203c565b835260019590950194918601918601612242565b5098975050505050505050565b60006020828403121561228657600080fd5b6110af82612058565b6000602082840312156122a157600080fd5b5035919050565b6000602082840312156122ba57600080fd5b81356110af81612686565b6000602082840312156122d757600080fd5b81516110af81612686565b6000602082840312156122f457600080fd5b81356001600160401b0381111561230a57600080fd5b8201601f8101841361231b57600080fd5b611c3b84823560208401611fe5565b60008060006040848603121561233f57600080fd5b8335925060208401356001600160401b038082111561235d57600080fd5b818601915086601f83011261237157600080fd5b81358181111561238057600080fd5b8760208260051b850101111561239557600080fd5b6020830194508093505050509250925092565b600081518084526123c0816020860160208601612598565b601f01601f19169290920160200192915050565b600083516123e6818460208801612598565b8351908301906123fa818360208801612598565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612436908301846123a8565b9695505050505050565b6020815260006110af60208301846123a8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b60208082526027908201527f4e6f7420656e6f75676820746f6b656e73206c65667420696e2063757272656e6040820152667420706861736560c81b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561252e5761252e612670565b604052919050565b600082198211156125495761254961262e565b500190565b60008261255d5761255d612644565b500490565b600081600019048311821515161561257c5761257c61262e565b500290565b6000828210156125935761259361262e565b500390565b60005b838110156125b357818101518382015260200161259b565b83811115610fe55750506000910152565b600181811c908216806125d857607f821691505b602082108114156125f957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126135761261361262e565b5060010190565b60008261262957612629612644565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112c757600080fdfea2646970667358221220b620db81dc78c93961c9bbda0ffc48cc1bf06686c5cf4f93c60c5b57a79f903564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c47756d6d6965732047616e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024747000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Gummies Gang
Arg [1] : symbol (string): GG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 47756d6d6965732047616e670000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4747000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45328:3906:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26914:372;;;;;;;;;;-1:-1:-1;26914:372:0;;;;;:::i;:::-;;:::i;:::-;;;7753:14:1;;7746:22;7728:41;;7716:2;7701:18;26914:372:0;;;;;;;;29524:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31042:204::-;;;;;;;;;;-1:-1:-1;31042:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7051:32:1;;;7033:51;;7021:2;7006:18;31042:204:0;6887:203:1;30605:371:0;;;;;;;;;;-1:-1:-1;30605:371:0;;;;;:::i;:::-;;:::i;:::-;;48092:108;;;;;;;;;;-1:-1:-1;48092:108:0;;;;;:::i;:::-;;:::i;48632:95::-;;;;;;;;;;-1:-1:-1;48698:21:0;48632:95;;;7926:25:1;;;7914:2;7899:18;48632:95:0;7780:177:1;24151:280:0;;;;;;;;;;-1:-1:-1;24396:12:0;;24380:13;;:28;24151:280;;48309:101;;;;;;;;;;-1:-1:-1;48309:101:0;;;;;:::i;:::-;;:::i;31899:170::-;;;;;;;;;;-1:-1:-1;31899:170:0;;;;;:::i;:::-;;:::i;49137:92::-;;;;;;;;;;-1:-1:-1;49137:92:0;;;;;:::i;:::-;;:::i;25737:1105::-;;;;;;;;;;-1:-1:-1;25737:1105:0;;;;;:::i;:::-;;:::i;48852:149::-;;;;;;;;;;;;;:::i;32140:185::-;;;;;;;;;;-1:-1:-1;32140:185:0;;;;;:::i;:::-;;:::i;45682:31::-;;;;;;;;;;;;;;;;45720:33;;;;;;;;;;;;;;;;24724:713;;;;;;;;;;-1:-1:-1;24724:713:0;;;;;:::i;:::-;;:::i;47986:98::-;;;;;;;;;;-1:-1:-1;47986:98:0;;;;;:::i;:::-;;:::i;29333:124::-;;;;;;;;;;-1:-1:-1;29333:124:0;;;;;:::i;:::-;;:::i;48523:101::-;;;;;;;;;;-1:-1:-1;48523:101:0;;;;;:::i;:::-;;:::i;45527:21::-;;;;;;;;;;;;;:::i;27350:206::-;;;;;;;;;;-1:-1:-1;27350:206:0;;;;;:::i;:::-;;:::i;1505:94::-;;;;;;;;;;;;;:::i;47434:328::-;;;;;;;;;;-1:-1:-1;47434:328:0;;;;;:::i;:::-;;:::i;45555:36::-;;;;;;;;;;;;;;;;854:87;;;;;;;;;;-1:-1:-1;900:7:0;927:6;-1:-1:-1;;;;;927:6:0;854:87;;29693:104;;;;;;;;;;;;;:::i;45480:38::-;;;;;;;;;;-1:-1:-1;45480:38:0;;;;;;;;;;;45598:39;;;;;;;;;;;;;;;;48735:109;;;;;;;;;;-1:-1:-1;48735:109:0;;;;;:::i;:::-;;:::i;47770:92::-;;;;;;;;;;-1:-1:-1;47770:92:0;;;;;:::i;:::-;;:::i;31318:279::-;;;;;;;;;;-1:-1:-1;31318:279:0;;;;;:::i;:::-;;:::i;45792:34::-;;;;;;;;;;;;;;;;45761:23;;;;;;;;;;;;;;;;32396:342;;;;;;;;;;-1:-1:-1;32396:342:0;;;;;:::i;:::-;;:::i;45439:34::-;;;;;;;;;;-1:-1:-1;45439:34:0;;;;;;;;29868:334;;;;;;;;;;-1:-1:-1;29868:334:0;;;;;:::i;:::-;;:::i;45644:31::-;;;;;;;;;;;;;;;;45947:655;;;;;;:::i;:::-;;:::i;49013:111::-;;;;;;;;;;-1:-1:-1;49013:111:0;;;;;:::i;:::-;;:::i;48417:97::-;;;;;;;;;;-1:-1:-1;48417:97:0;;;;;:::i;:::-;;:::i;31668:164::-;;;;;;;;;;-1:-1:-1;31668:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31789:25:0;;;31765:4;31789:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31668:164;48208:95;;;;;;;;;;-1:-1:-1;48208:95:0;;;;;:::i;:::-;;:::i;1754:192::-;;;;;;;;;;-1:-1:-1;1754:192:0;;;;;:::i;:::-;;:::i;46608:814::-;;;;;;:::i;:::-;;:::i;26914:372::-;27016:4;-1:-1:-1;;;;;;27053:40:0;;-1:-1:-1;;;27053:40:0;;:105;;-1:-1:-1;;;;;;;27110:48:0;;-1:-1:-1;;;27110:48:0;27053:105;:172;;;-1:-1:-1;;;;;;;27175:50:0;;-1:-1:-1;;;27175:50:0;27053:172;:225;;;-1:-1:-1;;;;;;;;;;21550:40:0;;;27242:36;27033:245;26914:372;-1:-1:-1;;26914:372:0:o;29524:100::-;29578:13;29611:5;29604:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29524:100;:::o;31042:204::-;31110:7;31135:16;31143:7;31135;:16::i;:::-;31130:64;;31160:34;;-1:-1:-1;;;31160:34:0;;;;;;;;;;;31130:64;-1:-1:-1;31214:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31214:24:0;;31042:204::o;30605:371::-;30678:13;30694:24;30710:7;30694:15;:24::i;:::-;30678:40;;30739:5;-1:-1:-1;;;;;30733:11:0;:2;-1:-1:-1;;;;;30733:11:0;;30729:48;;;30753:24;;-1:-1:-1;;;30753:24:0;;;;;;;;;;;30729:48;317:10;-1:-1:-1;;;;;30794:21:0;;;;;;:63;;-1:-1:-1;30820:37:0;30837:5;317:10;31668:164;:::i;30820:37::-;30819:38;30794:63;30790:138;;;30881:35;;-1:-1:-1;;;30881:35:0;;;;;;;;;;;30790:138;30940:28;30949:2;30953:7;30962:5;30940:8;:28::i;:::-;30667:309;30605:371;;:::o;48092:108::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;;;;;;;;;48167:17:::1;:25:::0;48092:108::o;48309:101::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;48377:18:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;48377:25:0;;::::1;::::0;;;::::1;::::0;;48309:101::o;31899:170::-;32033:28;32043:4;32049:2;32053:7;32033:9;:28::i;49137:92::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;49204:5:::1;:17:::0;49137:92::o;25737:1105::-;25826:7;25859:16;25869:5;25859:9;:16::i;:::-;25850:5;:25;25846:61;;25884:23;;-1:-1:-1;;;25884:23:0;;;;;;;;;;;25846:61;25943:13;;25918:22;;;26193:557;26213:14;26209:1;:18;26193:557;;;26253:31;26287:14;;;:11;:14;;;;;;;;;26253:48;;;;;;;;;-1:-1:-1;;;;;26253:48:0;;;;-1:-1:-1;;;26253:48:0;;-1:-1:-1;;;;;26253:48:0;;;;;;;;-1:-1:-1;;;26253:48:0;;;;;;;;;;;;;;;;26320:73;;26365:8;;;26320:73;26415:14;;-1:-1:-1;;;;;26415:28:0;;26411:111;;26488:14;;;-1:-1:-1;26411:111:0;26565:5;-1:-1:-1;;;;;26544:26:0;:17;-1:-1:-1;;;;;26544:26:0;;26540:195;;;26614:5;26599:11;:20;26595:85;;;-1:-1:-1;26655:1:0;-1:-1:-1;26648:8:0;;-1:-1:-1;;;26648:8:0;26595:85;26702:13;;;;;26540:195;26234:516;26193:557;26229:3;;26193:557;;;;26826:8;;;48852:149;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;48918:21:::1;48958:7;900::::0;927:6;-1:-1:-1;;;;;927:6:0;;854:87;48958:7:::1;-1:-1:-1::0;;;;;48950:25:0::1;:35;48976:8;48950:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48891:110;48852:149::o:0;32140:185::-;32278:39;32295:4;32301:2;32305:7;32278:39;;;;;;;;;;;;:16;:39::i;24724:713::-;24836:13;;24791:7;;;;25050:328;25070:14;25066:1;:18;25050:328;;;25110:31;25144:14;;;:11;:14;;;;;;;;;25110:48;;;;;;;;;-1:-1:-1;;;;;25110:48:0;;;;-1:-1:-1;;;25110:48:0;;-1:-1:-1;;;;;25110:48:0;;;;;;;;-1:-1:-1;;;25110:48:0;;;;;;;;;;;;;;25177:186;;25242:5;25227:11;:20;25223:85;;;-1:-1:-1;25283:1:0;24724:713;-1:-1:-1;;;;24724:713:0:o;25223:85::-;25330:13;;;;;25177:186;-1:-1:-1;25086:3:0;;25050:328;;;;25406:23;;-1:-1:-1;;;25406:23:0;;;;;;;;;;;47986:98;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;48056:12:::1;:20:::0;47986:98::o;29333:124::-;29397:7;29424:20;29436:7;29424:11;:20::i;:::-;:25;;29333:124;-1:-1:-1;;29333:124:0:o;48523:101::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;48595:13:::1;:21:::0;48523:101::o;45527:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27350:206::-;27414:7;-1:-1:-1;;;;;27438:19:0;;27434:60;;27466:28;;-1:-1:-1;;;27466:28:0;;;;;;;;;;;27434:60;-1:-1:-1;;;;;;27520:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27520:27:0;;27350:206::o;1505:94::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;1570:21:::1;1588:1;1570:9;:21::i;:::-;1505:94::o:0;47434:328::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;47533:1:::1;47515:8;:15;:19;47507:55;;;;-1:-1:-1::0;;;47507:55:0::1;;;;;;;:::i;:::-;47616:9;::::0;47597:15;;24396:12;;24380:13;;:28;47581:31:::1;;;;:::i;:::-;:44;;47573:79;;;::::0;-1:-1:-1;;;47573:79:0;;12090:2:1;47573:79:0::1;::::0;::::1;12072:21:1::0;12129:2;12109:18;;;12102:30;-1:-1:-1;;;12148:18:1;;;12141:52;12210:18;;47573:79:0::1;11888:346:1::0;47573:79:0::1;47667:6;47663:81;47683:8;:15;47679:1;:19;47663:81;;;47718:26;47728:8;47737:1;47728:11;;;;;;;;:::i;:::-;;;;;;;47741:1;47718:9;:26::i;:::-;47700:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47663:81;;29693:104:::0;29749:13;29782:7;29775:14;;;;;:::i;48735:109::-;48795:7;48818:20;48832:5;48818:13;:20::i;47770:92::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;47840:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;31318:279::-:0;-1:-1:-1;;;;;31409:24:0;;317:10;31409:24;31405:54;;;31442:17;;-1:-1:-1;;;31442:17:0;;;;;;;;;;;31405:54;317:10;31472:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31472:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31472:53:0;;;;;;;;;;31541:48;;7728:41:1;;;31472:42:0;;317:10;31541:48;;7701:18:1;31541:48:0;;;;;;;31318:279;;:::o;32396:342::-;32563:28;32573:4;32579:2;32583:7;32563:9;:28::i;:::-;32607:48;32630:4;32636:2;32640:7;32649:5;32607:22;:48::i;:::-;32602:129;;32679:40;;-1:-1:-1;;;32679:40:0;;;;;;;;;;;32602:129;32396:342;;;;:::o;29868:334::-;29941:13;29975:16;29983:7;29975;:16::i;:::-;29967:76;;;;-1:-1:-1;;;29967:76:0;;10554:2:1;29967:76:0;;;10536:21:1;10593:2;10573:18;;;10566:30;10632:34;10612:18;;;10605:62;-1:-1:-1;;;10683:18:1;;;10676:45;10738:19;;29967:76:0;10352:411:1;29967:76:0;30056:21;30080:10;:8;:10::i;:::-;30056:34;;30132:1;30114:7;30108:21;:25;:86;;;;;;;;;;;;;;;;;30160:7;30169:18;:7;:16;:18::i;:::-;30143:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30108:86;30101:93;29868:334;-1:-1:-1;;;29868:334:0:o;45947:655::-;46019:18;;;;;;;;:26;;:18;:26;46011:57;;;;-1:-1:-1;;;46011:57:0;;9495:2:1;46011:57:0;;;9477:21:1;9534:2;9514:18;;;9507:30;-1:-1:-1;;;9553:18:1;;;9546:48;9611:18;;46011:57:0;9293:342:1;46011:57:0;46096:1;46087:6;:10;46079:46;;;;-1:-1:-1;;;46079:46:0;;;;;;;:::i;:::-;46154:17;;46144:6;:27;;46136:61;;;;-1:-1:-1;;;46136:61:0;;8795:2:1;46136:61:0;;;8777:21:1;8834:2;8814:18;;;8807:30;-1:-1:-1;;;8853:18:1;;;8846:51;8914:18;;46136:61:0;8593:345:1;46136:61:0;46242:9;;46232:6;46216:13;24396:12;;24380:13;;:28;;24151:280;46216:13;:22;;;;:::i;:::-;:35;;46208:67;;;;-1:-1:-1;;;46208:67:0;;12441:2:1;46208:67:0;;;12423:21:1;12480:2;12460:18;;;12453:30;-1:-1:-1;;;12499:18:1;;;12492:49;12558:18;;46208:67:0;12239:343:1;46208:67:0;46319:5;;46310:6;46294:13;24396:12;;24380:13;;:28;;24151:280;46294:13;:22;;;;:::i;:::-;:30;;46286:82;;;;-1:-1:-1;;;46286:82:0;;;;;;;:::i;:::-;46426:12;;46416:6;46387:26;46402:10;46387:14;:26::i;:::-;:35;;;;:::i;:::-;:51;;46379:85;;;;-1:-1:-1;;;46379:85:0;;9145:2:1;46379:85:0;;;9127:21:1;9184:2;9164:18;;;9157:30;-1:-1:-1;;;9203:18:1;;;9196:51;9264:18;;46379:85:0;8943:345:1;46379:85:0;46509:6;46496:10;;:19;;;;:::i;:::-;46483:9;:32;;46475:67;;;;-1:-1:-1;;;46475:67:0;;9842:2:1;46475:67:0;;;9824:21:1;9881:2;9861:18;;;9854:30;-1:-1:-1;;;9900:18:1;;;9893:52;9962:18;;46475:67:0;9640:346:1;46475:67:0;46563:29;46573:10;46585:6;46563:9;:29::i;:::-;45947:655;:::o;49013:111::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;49087:19:::1;:32:::0;49013:111::o;48417:97::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;48488:10:::1;:18:::0;48417:97::o;48208:95::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;48274:14:::1;:21:::0;;-1:-1:-1;;48274:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48208:95::o;1754:192::-;900:7;927:6;-1:-1:-1;;;;;927:6:0;317:10;1074:23;1066:68;;;;-1:-1:-1;;;1066:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1843:22:0;::::1;1835:73;;;::::0;-1:-1:-1;;;1835:73:0;;8388:2:1;1835:73:0::1;::::0;::::1;8370:21:1::0;8427:2;8407:18;;;8400:30;8466:34;8446:18;;;8439:62;-1:-1:-1;;;8517:18:1;;;8510:36;8563:19;;1835:73:0::1;8186:402:1::0;1835:73:0::1;1919:19;1929:8;1919:9;:19::i;46608:814::-:0;46711:14;;;;:22;;:14;:22;46703:53;;;;-1:-1:-1;;;46703:53:0;;9495:2:1;46703:53:0;;;9477:21:1;9534:2;9514:18;;;9507:30;-1:-1:-1;;;9553:18:1;;;9546:48;9611:18;;46703:53:0;9293:342:1;46703:53:0;46776:91;46795:11;;46776:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46807:19:0;;46837:28;;-1:-1:-1;;46854:10:0;6327:2:1;6323:15;6319:53;46837:28:0;;;6307:66:1;46807:19:0;;-1:-1:-1;6389:12:1;;;-1:-1:-1;46837:28:0;;;;;;;;;;;;46827:39;;;;;;46776:18;:91::i;:::-;46768:134;;;;-1:-1:-1;;;46768:134:0;;11322:2:1;46768:134:0;;;11304:21:1;11361:2;11341:18;;;11334:30;11400:33;11380:18;;;11373:61;11451:18;;46768:134:0;11120:355:1;46768:134:0;46930:1;46921:6;:10;46913:46;;;;-1:-1:-1;;;46913:46:0;;;;;;;:::i;:::-;46988:17;;46978:6;:27;;46970:61;;;;-1:-1:-1;;;46970:61:0;;8795:2:1;46970:61:0;;;8777:21:1;8834:2;8814:18;;;8807:30;-1:-1:-1;;;8853:18:1;;;8846:51;8914:18;;46970:61:0;8593:345:1;46970:61:0;47076:9;;47066:6;47050:13;24396:12;;24380:13;;:28;;24151:280;47050:13;:22;;;;:::i;:::-;:35;;47042:67;;;;-1:-1:-1;;;47042:67:0;;12441:2:1;47042:67:0;;;12423:21:1;12480:2;12460:18;;;12453:30;-1:-1:-1;;;12499:18:1;;;12492:49;12558:18;;47042:67:0;12239:343:1;47042:67:0;47153:5;;47144:6;47128:13;24396:12;;24380:13;;:28;;24151:280;47128:13;:22;;;;:::i;:::-;:30;;47120:82;;;;-1:-1:-1;;;47120:82:0;;;;;;;:::i;:::-;47260:12;;47250:6;47221:26;47236:10;47221:14;:26::i;:::-;:35;;;;:::i;:::-;:51;;47213:85;;;;-1:-1:-1;;;47213:85:0;;9145:2:1;47213:85:0;;;9127:21:1;9184:2;9164:18;;;9157:30;-1:-1:-1;;;9203:18:1;;;9196:51;9264:18;;47213:85:0;8943:345:1;47213:85:0;47330:13;;47317:9;:26;;47309:61;;;;-1:-1:-1;;;47309:61:0;;9842:2:1;47309:61:0;;;9824:21:1;9881:2;9861:18;;;9854:30;-1:-1:-1;;;9900:18:1;;;9893:52;9962:18;;47309:61:0;9640:346:1;47309:61:0;47383:29;47393:10;47405:6;47383:9;:29::i;32993:144::-;33050:4;33084:13;;33074:7;:23;:55;;;;-1:-1:-1;;33102:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33102:27:0;;;;33101:28;;32993:144::o;40199:196::-;40314:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40314:29:0;-1:-1:-1;;;;;40314:29:0;;;;;;;;;40359:28;;40314:24;;40359:28;;;;;;;40199:196;;;:::o;35700:2112::-;35815:35;35853:20;35865:7;35853:11;:20::i;:::-;35928:18;;35815:58;;-1:-1:-1;35886:22:0;;-1:-1:-1;;;;;35912:34:0;317:10;-1:-1:-1;;;;;35912:34:0;;:101;;;-1:-1:-1;35980:18:0;;35963:50;;317:10;31668:164;:::i;35963:50::-;35912:154;;;-1:-1:-1;317:10:0;36030:20;36042:7;36030:11;:20::i;:::-;-1:-1:-1;;;;;36030:36:0;;35912:154;35886:181;;36085:17;36080:66;;36111:35;;-1:-1:-1;;;36111:35:0;;;;;;;;;;;36080:66;36183:4;-1:-1:-1;;;;;36161:26:0;:13;:18;;;-1:-1:-1;;;;;36161:26:0;;36157:67;;36196:28;;-1:-1:-1;;;36196:28:0;;;;;;;;;;;36157:67;-1:-1:-1;;;;;36239:16:0;;36235:52;;36264:23;;-1:-1:-1;;;36264:23:0;;;;;;;;;;;36235:52;36408:49;36425:1;36429:7;36438:13;:18;;;36408:8;:49::i;:::-;-1:-1:-1;;;;;36753:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36753:31:0;;;-1:-1:-1;;;;;36753:31:0;;;-1:-1:-1;;36753:31:0;;;;;;;36799:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36799:29:0;;;;;;;;;;;36845:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36890:61:0;;;;-1:-1:-1;;;36935:15:0;36890:61;;;;;;;;;;;37225:11;;;37255:24;;;;;:29;37225:11;;37255:29;37251:445;;37480:13;;37466:11;:27;37462:219;;;37550:18;;;37518:24;;;:11;:24;;;;;;;;:50;;37633:28;;;;-1:-1:-1;;;;;37591:70:0;-1:-1:-1;;;37591:70:0;-1:-1:-1;;;;;;37591:70:0;;;-1:-1:-1;;;;;37518:50:0;;;37591:70;;;;;;;37462:219;36728:979;37743:7;37739:2;-1:-1:-1;;;;;37724:27:0;37733:4;-1:-1:-1;;;;;37724:27:0;;;;;;;;;;;37762:42;35804:2008;;35700:2112;;;:::o;28188:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28354:13:0;;28298:7;;28347:20;;28343:861;;;28388:31;28422:17;;;:11;:17;;;;;;;;;28388:51;;;;;;;;;-1:-1:-1;;;;;28388:51:0;;;;-1:-1:-1;;;28388:51:0;;-1:-1:-1;;;;;28388:51:0;;;;;;;;-1:-1:-1;;;28388:51:0;;;;;;;;;;;;;;28458:731;;28508:14;;-1:-1:-1;;;;;28508:28:0;;28504:101;;28572:9;28188:1083;-1:-1:-1;;;28188:1083:0:o;28504:101::-;-1:-1:-1;;;28949:6:0;28994:17;;;;:11;:17;;;;;;;;;28982:29;;;;;;;;;-1:-1:-1;;;;;28982:29:0;;;;;-1:-1:-1;;;28982:29:0;;-1:-1:-1;;;;;28982:29:0;;;;;;;;-1:-1:-1;;;28982:29:0;;;;;;;;;;;;;29042:28;29038:109;;29110:9;28188:1083;-1:-1:-1;;;28188:1083:0:o;29038:109::-;28909:261;;;28369:835;28343:861;29232:31;;-1:-1:-1;;;29232:31:0;;;;;;;;;;;1954:173;2010:16;2029:6;;-1:-1:-1;;;;;2046:17:0;;;-1:-1:-1;;;;;;2046:17:0;;;;;;2079:40;;2029:6;;;;;;;2079:40;;2010:16;2079:40;1999:128;1954:173;:::o;33145:104::-;33214:27;33224:2;33228:8;33214:27;;;;;;;;;;;;:9;:27::i;27564:207::-;27625:7;-1:-1:-1;;;;;27649:19:0;;27645:59;;27677:27;;-1:-1:-1;;;27677:27:0;;;;;;;;;;;27645:59;-1:-1:-1;;;;;;27730:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27730:32:0;;-1:-1:-1;;;;;27730:32:0;;27564:207::o;40960:790::-;41115:4;-1:-1:-1;;;;;41136:13:0;;14545:20;14593:8;41132:611;;41172:72;;-1:-1:-1;;;41172:72:0;;-1:-1:-1;;;;;41172:36:0;;;;;:72;;317:10;;41223:4;;41229:7;;41238:5;;41172:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41172:72:0;;;;;;;;-1:-1:-1;;41172:72:0;;;;;;;;;;;;:::i;:::-;;;41168:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41418:13:0;;41414:259;;41468:40;;-1:-1:-1;;;41468:40:0;;;;;;;;;;;41414:259;41623:6;41617:13;41608:6;41604:2;41600:15;41593:38;41168:520;-1:-1:-1;;;;;;41295:55:0;-1:-1:-1;;;41295:55:0;;-1:-1:-1;41288:62:0;;41132:611;-1:-1:-1;41727:4:0;41132:611;40960:790;;;;;;:::o;47870:108::-;47930:13;47963:7;47956:14;;;;;:::i;43569:723::-;43625:13;43846:10;43842:53;;-1:-1:-1;;43873:10:0;;;;;;;;;;;;-1:-1:-1;;;43873:10:0;;;;;43569:723::o;43842:53::-;43920:5;43905:12;43961:78;43968:9;;43961:78;;43994:8;;;;:::i;:::-;;-1:-1:-1;44017:10:0;;-1:-1:-1;44025:2:0;44017:10;;:::i;:::-;;;43961:78;;;44049:19;44081:6;-1:-1:-1;;;;;44071:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44071:17:0;;44049:39;;44099:154;44106:10;;44099:154;;44133:11;44143:1;44133:11;;:::i;:::-;;-1:-1:-1;44202:10:0;44210:2;44202:5;:10;:::i;:::-;44189:24;;:2;:24;:::i;:::-;44176:39;;44159:6;44166;44159:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44159:56:0;;;;;;;;-1:-1:-1;44230:11:0;44239:2;44230:11;;:::i;:::-;;;44099:154;;5115:190;5240:4;5293;5264:25;5277:5;5284:4;5264:12;:25::i;:::-;:33;;5115:190;-1:-1:-1;;;;5115:190:0:o;33612:163::-;33735:32;33741:2;33745:8;33755:5;33762:4;33735:5;:32::i;5666:675::-;5749:7;5792:4;5749:7;5807:497;5831:5;:12;5827:1;:16;5807:497;;;5865:20;5888:5;5894:1;5888:8;;;;;;;;:::i;:::-;;;;;;;5865:31;;5931:12;5915;:28;5911:382;;6417:13;6467:15;;;6503:4;6496:15;;;6550:4;6534:21;;6043:57;;5911:382;;;6417:13;6467:15;;;6503:4;6496:15;;;6550:4;6534:21;;6220:57;;5911:382;-1:-1:-1;5845:3:0;;;;:::i;:::-;;;;5807:497;;;-1:-1:-1;6321:12:0;5666:675;-1:-1:-1;;;5666:675:0:o;34034:1412::-;34196:13;;-1:-1:-1;;;;;34224:16:0;;34220:48;;34249:19;;-1:-1:-1;;;34249:19:0;;;;;;;;;;;34220:48;34283:13;34279:44;;34305:18;;-1:-1:-1;;;34305:18:0;;;;;;;;;;;34279:44;-1:-1:-1;;;;;34674:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34733:49:0;;-1:-1:-1;;;;;34674:44:0;;;;;;;34733:49;;;-1:-1:-1;;;;;34674:44:0;;;;;;34733:49;;;;;;;;;;;;;;;;34799:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34849:66:0;;;;-1:-1:-1;;;34899:15:0;34849:66;;;;;;;;;;;34799:25;;34984:328;35004:8;35000:1;:12;34984:328;;;35043:38;;35068:12;;-1:-1:-1;;;;;35043:38:0;;;35060:1;;35043:38;;35060:1;;35043:38;35104:4;:68;;;;;35113:59;35144:1;35148:2;35152:12;35166:5;35113:22;:59::i;:::-;35112:60;35104:68;35100:164;;;35204:40;;-1:-1:-1;;;35204:40:0;;;;;;;;;;;35100:164;35282:14;;;;;35014:3;34984:328;;;-1:-1:-1;35328:13:0;:28;35378:60;32396:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;-1:-1:-1;;;;;3030:2:1;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:180::-;3958:6;4011:2;3999:9;3990:7;3986:23;3982:32;3979:52;;;4027:1;4024;4017:12;3979:52;-1:-1:-1;4050:23:1;;3899:180;-1:-1:-1;3899:180:1:o;4084:245::-;4142:6;4195:2;4183:9;4174:7;4170:23;4166:32;4163:52;;;4211:1;4208;4201:12;4163:52;4250:9;4237:23;4269:30;4293:5;4269:30;:::i;4334:249::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4504:9;4498:16;4523:30;4547:5;4523:30;:::i;4588:450::-;4657:6;4710:2;4698:9;4689:7;4685:23;4681:32;4678:52;;;4726:1;4723;4716:12;4678:52;4766:9;4753:23;-1:-1:-1;;;;;4791:6:1;4788:30;4785:50;;;4831:1;4828;4821:12;4785:50;4854:22;;4907:4;4899:13;;4895:27;-1:-1:-1;4885:55:1;;4936:1;4933;4926:12;4885:55;4959:73;5024:7;5019:2;5006:16;5001:2;4997;4993:11;4959:73;:::i;5228:683::-;5323:6;5331;5339;5392:2;5380:9;5371:7;5367:23;5363:32;5360:52;;;5408:1;5405;5398:12;5360:52;5444:9;5431:23;5421:33;;5505:2;5494:9;5490:18;5477:32;-1:-1:-1;;;;;5569:2:1;5561:6;5558:14;5555:34;;;5585:1;5582;5575:12;5555:34;5623:6;5612:9;5608:22;5598:32;;5668:7;5661:4;5657:2;5653:13;5649:27;5639:55;;5690:1;5687;5680:12;5639:55;5730:2;5717:16;5756:2;5748:6;5745:14;5742:34;;;5772:1;5769;5762:12;5742:34;5825:7;5820:2;5810:6;5807:1;5803:14;5799:2;5795:23;5791:32;5788:45;5785:65;;;5846:1;5843;5836:12;5785:65;5877:2;5873;5869:11;5859:21;;5899:6;5889:16;;;;;5228:683;;;;;:::o;5916:257::-;5957:3;5995:5;5989:12;6022:6;6017:3;6010:19;6038:63;6094:6;6087:4;6082:3;6078:14;6071:4;6064:5;6060:16;6038:63;:::i;:::-;6155:2;6134:15;-1:-1:-1;;6130:29:1;6121:39;;;;6162:4;6117:50;;5916:257;-1:-1:-1;;5916:257:1:o;6412:470::-;6591:3;6629:6;6623:13;6645:53;6691:6;6686:3;6679:4;6671:6;6667:17;6645:53;:::i;:::-;6761:13;;6720:16;;;;6783:57;6761:13;6720:16;6817:4;6805:17;;6783:57;:::i;:::-;6856:20;;6412:470;-1:-1:-1;;;;6412:470:1:o;7095:488::-;-1:-1:-1;;;;;7364:15:1;;;7346:34;;7416:15;;7411:2;7396:18;;7389:43;7463:2;7448:18;;7441:34;;;7511:3;7506:2;7491:18;;7484:31;;;7289:4;;7532:45;;7557:19;;7549:6;7532:45;:::i;:::-;7524:53;7095:488;-1:-1:-1;;;;;;7095:488:1:o;7962:219::-;8111:2;8100:9;8093:21;8074:4;8131:44;8171:2;8160:9;8156:18;8148:6;8131:44;:::i;9991:356::-;10193:2;10175:21;;;10212:18;;;10205:30;10271:34;10266:2;10251:18;;10244:62;10338:2;10323:18;;9991:356::o;10768:347::-;10970:2;10952:21;;;11009:2;10989:18;;;10982:30;11048:25;11043:2;11028:18;;11021:53;11106:2;11091:18;;10768:347::o;11480:403::-;11682:2;11664:21;;;11721:2;11701:18;;;11694:30;11760:34;11755:2;11740:18;;11733:62;-1:-1:-1;;;11826:2:1;11811:18;;11804:37;11873:3;11858:19;;11480:403::o;12769:275::-;12840:2;12834:9;12905:2;12886:13;;-1:-1:-1;;12882:27:1;12870:40;;-1:-1:-1;;;;;12925:34:1;;12961:22;;;12922:62;12919:88;;;12987:18;;:::i;:::-;13023:2;13016:22;12769:275;;-1:-1:-1;12769:275:1:o;13049:128::-;13089:3;13120:1;13116:6;13113:1;13110:13;13107:39;;;13126:18;;:::i;:::-;-1:-1:-1;13162:9:1;;13049:128::o;13182:120::-;13222:1;13248;13238:35;;13253:18;;:::i;:::-;-1:-1:-1;13287:9:1;;13182:120::o;13307:168::-;13347:7;13413:1;13409;13405:6;13401:14;13398:1;13395:21;13390:1;13383:9;13376:17;13372:45;13369:71;;;13420:18;;:::i;:::-;-1:-1:-1;13460:9:1;;13307:168::o;13480:125::-;13520:4;13548:1;13545;13542:8;13539:34;;;13553:18;;:::i;:::-;-1:-1:-1;13590:9:1;;13480:125::o;13610:258::-;13682:1;13692:113;13706:6;13703:1;13700:13;13692:113;;;13782:11;;;13776:18;13763:11;;;13756:39;13728:2;13721:10;13692:113;;;13823:6;13820:1;13817:13;13814:48;;;-1:-1:-1;;13858:1:1;13840:16;;13833:27;13610:258::o;13873:380::-;13952:1;13948:12;;;;13995;;;14016:61;;14070:4;14062:6;14058:17;14048:27;;14016:61;14123:2;14115:6;14112:14;14092:18;14089:38;14086:161;;;14169:10;14164:3;14160:20;14157:1;14150:31;14204:4;14201:1;14194:15;14232:4;14229:1;14222:15;14086:161;;13873:380;;;:::o;14258:135::-;14297:3;-1:-1:-1;;14318:17:1;;14315:43;;;14338:18;;:::i;:::-;-1:-1:-1;14385:1:1;14374:13;;14258:135::o;14398:112::-;14430:1;14456;14446:35;;14461:18;;:::i;:::-;-1:-1:-1;14495:9:1;;14398:112::o;14515:127::-;14576:10;14571:3;14567:20;14564:1;14557:31;14607:4;14604:1;14597:15;14631:4;14628:1;14621:15;14647:127;14708:10;14703:3;14699:20;14696:1;14689:31;14739:4;14736:1;14729:15;14763:4;14760:1;14753:15;14779:127;14840:10;14835:3;14831:20;14828:1;14821:31;14871:4;14868:1;14861:15;14895:4;14892:1;14885:15;14911:127;14972:10;14967:3;14963:20;14960:1;14953:31;15003:4;15000:1;14993:15;15027:4;15024:1;15017:15;15043:131;-1:-1:-1;;;;;;15117:32:1;;15107:43;;15097:71;;15164:1;15161;15154:12

Swarm Source

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