ETH Price: $1,950.68 (-2.88%)
 

Overview

Max Total Supply

75,287,725,000 BASED

Holders

93,683 (0.00%)

Transfers

-
351 ( 222.02%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

$BASED is an onchain experimental community project created purely for entertainment purposes

Contract Source Code Verified (Exact Match)

Contract Name:
Based

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";

contract Based is ERC20, AccessControl, ReentrancyGuard {
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");

    struct Whitelist {
        uint256 phase1NFTsBurned;
        uint256 phase2NFTsBurned;
        uint256 phase3NFTsBurned;
        uint256 claimedTokens;
    }
    // Mapping from token ID to address for whitelisting
    mapping(uint256 => address) public tokenOwner;
    mapping(address => Whitelist) private _whitelistedAddresses;

    bool private _mintEnabled;
    bool private _lpTokenMinted;
    uint8 public _currentBurnPhase;

    // Adjusted token amounts to consider 18 decimal places
    uint256 public phase1TokenAmount = 500000 * 10**18;
    uint256 public phase2TokenAmount = 250000 * 10**18;
    uint256 public phase3TokenAmount = 25000 * 10**18;
    
    // Total NFTs burned for each phase
    uint256 public totalPhase1NFTsBurned;
    uint256 public totalPhase2NFTsBurned;
    uint256 public totalPhase3NFTsBurned;
    
    uint256 public totalTokensClaimed;

    constructor() ERC20("BASED", "BASED") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(ADMIN_ROLE, msg.sender);
        _grantRole(ADMIN_ROLE, 0x618b787EF8A50E409e0093076CDF1c01897bA16F); // cross-chain relayer
        _currentBurnPhase = 0; // Initialize with no active phase
    }

    function whitelistAddress(address account, uint256[] calldata tokenIDs) external onlyRole(ADMIN_ROLE) {
        require(_currentBurnPhase > 0 && _currentBurnPhase <= 3, "Invalid burn phase");
        require(account != address(0), "Not a valid account");

        for (uint i = 0; i < tokenIDs.length; i++) {
            require(tokenOwner[tokenIDs[i]] == address(0), "Token ID already used");  // Check if tokenId is not assigned

            Whitelist storage whitelist = _whitelistedAddresses[account];
            tokenOwner[tokenIDs[i]] = account;  // Assign tokenId to account

            if (_currentBurnPhase == 1) {
                whitelist.phase1NFTsBurned++;
                totalPhase1NFTsBurned++;
            } else if (_currentBurnPhase == 2) {
                whitelist.phase2NFTsBurned++;
                totalPhase2NFTsBurned++;
            } else if (_currentBurnPhase == 3) {
                whitelist.phase3NFTsBurned++;
                totalPhase3NFTsBurned++;
            }
        }
    }

    // Admin function for a one-time mint of LP tokens based on the total claimable amount
    function lpTokenMint(uint256 amountOfTokens) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(!_lpTokenMinted, "LP tokens have already been minted");

        _lpTokenMinted = true;
        _mint(msg.sender, amountOfTokens);
    }

    // Admin function to set the number of tokens for each phase
    function setPhaseTokenAmount(uint256 phase, uint256 amount) external onlyRole(ADMIN_ROLE) {
        require(phase == 1 || phase == 2 || phase == 3, "Invalid phase");
        if (phase == 1) {
            phase1TokenAmount = amount * 10**18;
        } else if (phase == 2) {
            phase2TokenAmount = amount * 10**18;
        } else {
            phase3TokenAmount = amount * 10**18;
        }
    }

    // Admin function to enable/disable minting
    function setMintEnabled(bool enabled) external onlyRole(ADMIN_ROLE) {
        _mintEnabled = enabled;
    }

    // Admin function to set the current burn phase
    function setBurnPhase(uint8 phase) external onlyRole(ADMIN_ROLE) {
        require(phase >= 0 && phase <= 3, "Invalid burn phase");
        _currentBurnPhase = phase;
    }

    // Public view function to get the current burn phase
    function getCurrentBurnPhase() external view returns (uint8) {
        return _currentBurnPhase;
    }

    // Public view function to check if minting is enabled
    function isMintEnabled() external view returns (bool) {
        return _mintEnabled;
    }

    // Public view function to check how many NFTs an address burned for each phase
    function getNFTsBurnedByAddress(address account) external view returns (uint256, uint256, uint256) {
        Whitelist memory whitelist = _whitelistedAddresses[account];
        return (whitelist.phase1NFTsBurned, whitelist.phase2NFTsBurned, whitelist.phase3NFTsBurned);
    }

    // Public view function to check how many tokens an address can claim
    function tokensClaimable(address account) external view returns (uint256) {
        Whitelist memory whitelist = _whitelistedAddresses[account];
        uint256 totalTokens = (whitelist.phase1NFTsBurned * phase1TokenAmount) + (whitelist.phase2NFTsBurned * phase2TokenAmount) + (whitelist.phase3NFTsBurned * phase3TokenAmount);
        return totalTokens - whitelist.claimedTokens;
    }

    // Function to claim tokens based on the combined NFTs burned
    function claim() external nonReentrant {
        require(_mintEnabled, "Minting is not enabled");
        Whitelist storage whitelist = _whitelistedAddresses[msg.sender];
        require(whitelist.phase1NFTsBurned > 0 || whitelist.phase2NFTsBurned > 0 || whitelist.phase3NFTsBurned > 0, "No NFTs burned");

        uint256 claimableAmount = (whitelist.phase1NFTsBurned * phase1TokenAmount) + (whitelist.phase2NFTsBurned * phase2TokenAmount) + (whitelist.phase3NFTsBurned * phase3TokenAmount) - whitelist.claimedTokens;
        require(claimableAmount > 0, "No tokens available to claim");

        whitelist.claimedTokens += claimableAmount;
        totalTokensClaimed += claimableAmount;
        _mint(msg.sender, claimableAmount);
    }

    // Function to grant admin role
    function grantAdminRole(address account) external onlyRole(DEFAULT_ADMIN_ROLE) {
        grantRole(ADMIN_ROLE, account);
    }

    // Function to revoke admin role
    function revokeAdminRole(address account) external onlyRole(DEFAULT_ADMIN_ROLE) {
        revokeRole(ADMIN_ROLE, account);
    }

    // Function to get total claimable tokens
    function getTotalClaimableTokens() public view returns (uint256) {
        return (totalPhase1NFTsBurned * phase1TokenAmount) +
               (totalPhase2NFTsBurned * phase2TokenAmount) +
               (totalPhase3NFTsBurned * phase3TokenAmount) -
               totalTokensClaimed;
    }

    // Function to check token balance for any address
    function getTokenBalance(address account) public view returns (uint256) {
        return balanceOf(account);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)

pragma solidity ^0.8.20;

import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address account => bool) hasRole;
        bytes32 adminRole;
    }

    mapping(bytes32 role => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual returns (bool) {
        return _roles[role].hasRole[account];
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address callerConfirmation) public virtual {
        if (callerConfirmation != _msgSender()) {
            revert AccessControlBadConfirmation();
        }

        _revokeRole(role, callerConfirmation);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)

pragma solidity ^0.8.20;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     */
    function renounceRole(bytes32 role, address callerConfirmation) external;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
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;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    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 making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentBurnPhase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentBurnPhase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getNFTsBurnedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalClaimableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"lpTokenMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase1TokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2TokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase3TokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"phase","type":"uint8"}],"name":"setBurnPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"phase","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPhaseTokenAmount","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":"","type":"uint256"}],"name":"tokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"tokensClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPhase1NFTsBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPhase2NFTsBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPhase3NFTsBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526969e10de76676d0800000600a556934f086f3b33b68400000600b5569054b40b1f852bda00000600c553480156200003b57600080fd5b50604080518082018252600580825264109054d15160da1b602080840182905284518086019095529184529083015290600362000079838262000254565b50600462000088828262000254565b50506001600655506200009d600033620000fc565b50620000b960008051602062001a9283398151915233620000fc565b50620000e960008051602062001a9283398151915273618b787ef8a50e409e0093076cdf1c01897ba16f620000fc565b506009805462ff00001916905562000320565b60008281526005602090815260408083206001600160a01b038516845290915281205460ff16620001a55760008381526005602090815260408083206001600160a01b03861684529091529020805460ff191660011790556200015c3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001620001a9565b5060005b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001da57607f821691505b602082108103620001fb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024f57600081815260208120601f850160051c810160208610156200022a5750805b601f850160051c820191505b818110156200024b5782815560010162000236565b5050505b505050565b81516001600160401b03811115620002705762000270620001af565b6200028881620002818454620001c5565b8462000201565b602080601f831160018114620002c05760008415620002a75750858301515b600019600386901b1c1916600185901b1785556200024b565b600085815260208120601f198616915b82811015620002f157888601518255948401946001909101908401620002d0565b5085821015620003105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61176280620003306000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063658473531161013b5780639eeea571116100b8578063d547741f1161007c578063d547741f146104e8578063dd62ed3e146104fb578063e5e1a96014610534578063e68a4f2f146105ad578063f46a04eb146105b657600080fd5b80639eeea571146104a8578063a217fddf146104b1578063a3ec6547146104b9578063a9059cbb146104c2578063c634b78e146104d557600080fd5b8063849eb39f116100ff578063849eb39f1461045e5780638f8fa1d01461047157806391d148541461047a57806395d89b411461048d5780639a19c7b01461049557600080fd5b806365847353146103f157806365ccdd0f146103fa57806370a082311461040d57806375b238fc146104365780638057006e1461044b57600080fd5b8063313ce567116101c9578063495d14c31161018d578063495d14c3146103a95780634dc80e15146103bc5780634e71d92d146103cf5780635912c046146103d7578063602fde57146103e057600080fd5b8063313ce5671461035b578063346de50a1461037057806336568abe1461037b5780633aecd0e31461038e578063455bb04c146103a157600080fd5b806318160ddd1161021057806318160ddd146102c95780631caaa487146102d157806323b872dd14610312578063248a9ca3146103255780632f2ff15d1461034857600080fd5b806301ffc9a71461024d57806306fdde03146102755780630755ade01461028a578063095ea7b3146102a15780630a6e7b6a146102b4575b600080fd5b61026061025b3660046113d8565b6105c9565b60405190151581526020015b60405180910390f35b61027d610600565b60405161026c9190611409565b610293600a5481565b60405190815260200161026c565b6102606102af366004611473565b610692565b6102c76102c236600461149d565b6106aa565b005b600254610293565b6102fa6102df366004611523565b6007602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b61026061032036600461153c565b610940565b610293610333366004611523565b60009081526005602052604090206001015490565b6102c7610356366004611578565b610964565b60125b60405160ff909116815260200161026c565b60095460ff16610260565b6102c7610389366004611578565b61098f565b61029361039c3660046115a4565b6109c7565b6102936109e5565b6102c76103b7366004611523565b610a3d565b6102936103ca3660046115a4565b610ac8565b6102c7610b6d565b61029360105481565b60095462010000900460ff1661035e565b610293600c5481565b6102c76104083660046115bf565b610d23565b61029361041b3660046115a4565b6001600160a01b031660009081526020819052604090205490565b61029360008051602061170d83398151915281565b60095461035e9062010000900460ff1681565b6102c761046c3660046115e1565b610def565b610293600d5481565b610260610488366004611578565b610e6f565b61027d610e9a565b6102c76104a33660046115a4565b610ea9565b610293600e5481565b610293600081565b610293600f5481565b6102606104d0366004611473565b610ecc565b6102c76104e33660046115a4565b610eda565b6102c76104f6366004611578565b610efd565b610293610509366004611604565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105926105423660046115a4565b6001600160a01b0316600090815260086020908152604091829020825160808101845281548082526001830154938201849052600283015494820185905260039092015460609091015292909190565b6040805193845260208401929092529082015260600161026c565b610293600b5481565b6102c76105c436600461162e565b610f22565b60006001600160e01b03198216637965db0b60e01b14806105fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461060f90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611650565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b6000336106a0818585610f4e565b5060019392505050565b60008051602061170d8339815191526106c281610f5b565b60095462010000900460ff16158015906106e9575060095460036201000090910460ff1611155b61072f5760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206275726e20706861736560701b60448201526064015b60405180910390fd5b6001600160a01b03841661077b5760405162461bcd60e51b8152602060048201526013602482015272139bdd0818481d985b1a59081858d8dbdd5b9d606a1b6044820152606401610726565b60005b8281101561093957600060078186868581811061079d5761079d61168a565b60209081029290920135835250810191909152604001600020546001600160a01b0316146108055760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88125108185b1c9958591e481d5cd959605a1b6044820152606401610726565b6001600160a01b03851660009081526008602052604081209086906007908787868181106108355761083561168a565b6020908102929092013583525081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905560095462010000900460ff166001036108ac57805481600061088d836116b6565b9091555050600d80549060006108a2836116b6565b9190505550610926565b60095462010000900460ff166002036108e6576001810180549060006108d1836116b6565b9091555050600e80549060006108a2836116b6565b60095462010000900460ff166003036109265760028101805490600061090b836116b6565b9091555050600f8054906000610920836116b6565b91905055505b5080610931816116b6565b91505061077e565b5050505050565b60003361094e858285610f68565b610959858585610fe0565b506001949350505050565b60008281526005602052604090206001015461097f81610f5b565b610989838361103f565b50505050565b6001600160a01b03811633146109b85760405163334bd91960e11b815260040160405180910390fd5b6109c282826110d3565b505050565b6001600160a01b0381166000908152602081905260408120546105fa565b6000601054600c54600f546109fa91906116cf565b600b54600e54610a0a91906116cf565b600a54600d54610a1a91906116cf565b610a2491906116e6565b610a2e91906116e6565b610a3891906116f9565b905090565b6000610a4881610f5b565b600954610100900460ff1615610aab5760405162461bcd60e51b815260206004820152602260248201527f4c5020746f6b656e73206861766520616c7265616479206265656e206d696e74604482015261195960f21b6064820152608401610726565b6009805461ff001916610100179055610ac43383611140565b5050565b6001600160a01b03811660009081526008602090815260408083208151608081018352815481526001820154938101939093526002810154918301829052600301546060830152600c548391610b1e91906116cf565b600b548360200151610b3091906116cf565b600a548451610b3f91906116cf565b610b4991906116e6565b610b5391906116e6565b9050816060015181610b6591906116f9565b949350505050565b610b75611176565b60095460ff16610bc05760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610726565b3360009081526008602052604090208054151580610be2575060008160010154115b80610bf1575060008160020154115b610c2e5760405162461bcd60e51b815260206004820152600e60248201526d139bc81391951cc8189d5c9b995960921b6044820152606401610726565b60008160030154600c548360020154610c4791906116cf565b600b548460010154610c5991906116cf565b600a548554610c6891906116cf565b610c7291906116e6565b610c7c91906116e6565b610c8691906116f9565b905060008111610cd85760405162461bcd60e51b815260206004820152601c60248201527f4e6f20746f6b656e7320617661696c61626c6520746f20636c61696d000000006044820152606401610726565b80826003016000828254610cec91906116e6565b925050819055508060106000828254610d0591906116e6565b90915550610d1590503382611140565b5050610d216001600655565b565b60008051602061170d833981519152610d3b81610f5b565b8260011480610d4a5750826002145b80610d555750826003145b610d915760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420706861736560981b6044820152606401610726565b82600103610db357610dab82670de0b6b3a76400006116cf565b600a55505050565b82600203610dd557610dcd82670de0b6b3a76400006116cf565b600b55505050565b610de782670de0b6b3a76400006116cf565b600c55505050565b60008051602061170d833981519152610e0781610f5b565b60038260ff161115610e505760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206275726e20706861736560701b6044820152606401610726565b506009805460ff909216620100000262ff000019909216919091179055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461060f90611650565b6000610eb481610f5b565b610ac460008051602061170d83398151915283610efd565b6000336106a0818585610fe0565b6000610ee581610f5b565b610ac460008051602061170d83398151915283610964565b600082815260056020526040902060010154610f1881610f5b565b61098983836110d3565b60008051602061170d833981519152610f3a81610f5b565b506009805460ff1916911515919091179055565b6109c283838360016111a0565b610f658133611275565b50565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146109895781811015610fd157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610726565b610989848484840360006111a0565b6001600160a01b03831661100a57604051634b637e8f60e11b815260006004820152602401610726565b6001600160a01b0382166110345760405163ec442f0560e01b815260006004820152602401610726565b6109c28383836112ae565b600061104b8383610e6f565b6110cb5760008381526005602090815260408083206001600160a01b03861684529091529020805460ff191660011790556110833390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016105fa565b5060006105fa565b60006110df8383610e6f565b156110cb5760008381526005602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45060016105fa565b6001600160a01b03821661116a5760405163ec442f0560e01b815260006004820152602401610726565b610ac4600083836112ae565b60026006540361119957604051633ee5aeb560e01b815260040160405180910390fd5b6002600655565b6001600160a01b0384166111ca5760405163e602df0560e01b815260006004820152602401610726565b6001600160a01b0383166111f457604051634a1406b160e11b815260006004820152602401610726565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561098957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161126791815260200190565b60405180910390a350505050565b61127f8282610e6f565b610ac45760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610726565b6001600160a01b0383166112d95780600260008282546112ce91906116e6565b9091555061134b9050565b6001600160a01b0383166000908152602081905260409020548181101561132c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610726565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661136757600280548290039055611386565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113cb91815260200190565b60405180910390a3505050565b6000602082840312156113ea57600080fd5b81356001600160e01b03198116811461140257600080fd5b9392505050565b600060208083528351808285015260005b818110156114365785810183015185820160400152820161141a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461146e57600080fd5b919050565b6000806040838503121561148657600080fd5b61148f83611457565b946020939093013593505050565b6000806000604084860312156114b257600080fd5b6114bb84611457565b9250602084013567ffffffffffffffff808211156114d857600080fd5b818601915086601f8301126114ec57600080fd5b8135818111156114fb57600080fd5b8760208260051b850101111561151057600080fd5b6020830194508093505050509250925092565b60006020828403121561153557600080fd5b5035919050565b60008060006060848603121561155157600080fd5b61155a84611457565b925061156860208501611457565b9150604084013590509250925092565b6000806040838503121561158b57600080fd5b8235915061159b60208401611457565b90509250929050565b6000602082840312156115b657600080fd5b61140282611457565b600080604083850312156115d257600080fd5b50508035926020909101359150565b6000602082840312156115f357600080fd5b813560ff8116811461140257600080fd5b6000806040838503121561161757600080fd5b61162083611457565b915061159b60208401611457565b60006020828403121561164057600080fd5b8135801515811461140257600080fd5b600181811c9082168061166457607f821691505b60208210810361168457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016116c8576116c86116a0565b5060010190565b80820281158282048414176105fa576105fa6116a0565b808201808211156105fa576105fa6116a0565b818103818111156105fa576105fa6116a056fea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a26469706673582212205b9fdc28b3569d0280c9479700bba143f674a65224659aefc47697ca42d3f92c64736f6c63430008140033a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063658473531161013b5780639eeea571116100b8578063d547741f1161007c578063d547741f146104e8578063dd62ed3e146104fb578063e5e1a96014610534578063e68a4f2f146105ad578063f46a04eb146105b657600080fd5b80639eeea571146104a8578063a217fddf146104b1578063a3ec6547146104b9578063a9059cbb146104c2578063c634b78e146104d557600080fd5b8063849eb39f116100ff578063849eb39f1461045e5780638f8fa1d01461047157806391d148541461047a57806395d89b411461048d5780639a19c7b01461049557600080fd5b806365847353146103f157806365ccdd0f146103fa57806370a082311461040d57806375b238fc146104365780638057006e1461044b57600080fd5b8063313ce567116101c9578063495d14c31161018d578063495d14c3146103a95780634dc80e15146103bc5780634e71d92d146103cf5780635912c046146103d7578063602fde57146103e057600080fd5b8063313ce5671461035b578063346de50a1461037057806336568abe1461037b5780633aecd0e31461038e578063455bb04c146103a157600080fd5b806318160ddd1161021057806318160ddd146102c95780631caaa487146102d157806323b872dd14610312578063248a9ca3146103255780632f2ff15d1461034857600080fd5b806301ffc9a71461024d57806306fdde03146102755780630755ade01461028a578063095ea7b3146102a15780630a6e7b6a146102b4575b600080fd5b61026061025b3660046113d8565b6105c9565b60405190151581526020015b60405180910390f35b61027d610600565b60405161026c9190611409565b610293600a5481565b60405190815260200161026c565b6102606102af366004611473565b610692565b6102c76102c236600461149d565b6106aa565b005b600254610293565b6102fa6102df366004611523565b6007602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b61026061032036600461153c565b610940565b610293610333366004611523565b60009081526005602052604090206001015490565b6102c7610356366004611578565b610964565b60125b60405160ff909116815260200161026c565b60095460ff16610260565b6102c7610389366004611578565b61098f565b61029361039c3660046115a4565b6109c7565b6102936109e5565b6102c76103b7366004611523565b610a3d565b6102936103ca3660046115a4565b610ac8565b6102c7610b6d565b61029360105481565b60095462010000900460ff1661035e565b610293600c5481565b6102c76104083660046115bf565b610d23565b61029361041b3660046115a4565b6001600160a01b031660009081526020819052604090205490565b61029360008051602061170d83398151915281565b60095461035e9062010000900460ff1681565b6102c761046c3660046115e1565b610def565b610293600d5481565b610260610488366004611578565b610e6f565b61027d610e9a565b6102c76104a33660046115a4565b610ea9565b610293600e5481565b610293600081565b610293600f5481565b6102606104d0366004611473565b610ecc565b6102c76104e33660046115a4565b610eda565b6102c76104f6366004611578565b610efd565b610293610509366004611604565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105926105423660046115a4565b6001600160a01b0316600090815260086020908152604091829020825160808101845281548082526001830154938201849052600283015494820185905260039092015460609091015292909190565b6040805193845260208401929092529082015260600161026c565b610293600b5481565b6102c76105c436600461162e565b610f22565b60006001600160e01b03198216637965db0b60e01b14806105fa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461060f90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611650565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b6000336106a0818585610f4e565b5060019392505050565b60008051602061170d8339815191526106c281610f5b565b60095462010000900460ff16158015906106e9575060095460036201000090910460ff1611155b61072f5760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206275726e20706861736560701b60448201526064015b60405180910390fd5b6001600160a01b03841661077b5760405162461bcd60e51b8152602060048201526013602482015272139bdd0818481d985b1a59081858d8dbdd5b9d606a1b6044820152606401610726565b60005b8281101561093957600060078186868581811061079d5761079d61168a565b60209081029290920135835250810191909152604001600020546001600160a01b0316146108055760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88125108185b1c9958591e481d5cd959605a1b6044820152606401610726565b6001600160a01b03851660009081526008602052604081209086906007908787868181106108355761083561168a565b6020908102929092013583525081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905560095462010000900460ff166001036108ac57805481600061088d836116b6565b9091555050600d80549060006108a2836116b6565b9190505550610926565b60095462010000900460ff166002036108e6576001810180549060006108d1836116b6565b9091555050600e80549060006108a2836116b6565b60095462010000900460ff166003036109265760028101805490600061090b836116b6565b9091555050600f8054906000610920836116b6565b91905055505b5080610931816116b6565b91505061077e565b5050505050565b60003361094e858285610f68565b610959858585610fe0565b506001949350505050565b60008281526005602052604090206001015461097f81610f5b565b610989838361103f565b50505050565b6001600160a01b03811633146109b85760405163334bd91960e11b815260040160405180910390fd5b6109c282826110d3565b505050565b6001600160a01b0381166000908152602081905260408120546105fa565b6000601054600c54600f546109fa91906116cf565b600b54600e54610a0a91906116cf565b600a54600d54610a1a91906116cf565b610a2491906116e6565b610a2e91906116e6565b610a3891906116f9565b905090565b6000610a4881610f5b565b600954610100900460ff1615610aab5760405162461bcd60e51b815260206004820152602260248201527f4c5020746f6b656e73206861766520616c7265616479206265656e206d696e74604482015261195960f21b6064820152608401610726565b6009805461ff001916610100179055610ac43383611140565b5050565b6001600160a01b03811660009081526008602090815260408083208151608081018352815481526001820154938101939093526002810154918301829052600301546060830152600c548391610b1e91906116cf565b600b548360200151610b3091906116cf565b600a548451610b3f91906116cf565b610b4991906116e6565b610b5391906116e6565b9050816060015181610b6591906116f9565b949350505050565b610b75611176565b60095460ff16610bc05760405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b6044820152606401610726565b3360009081526008602052604090208054151580610be2575060008160010154115b80610bf1575060008160020154115b610c2e5760405162461bcd60e51b815260206004820152600e60248201526d139bc81391951cc8189d5c9b995960921b6044820152606401610726565b60008160030154600c548360020154610c4791906116cf565b600b548460010154610c5991906116cf565b600a548554610c6891906116cf565b610c7291906116e6565b610c7c91906116e6565b610c8691906116f9565b905060008111610cd85760405162461bcd60e51b815260206004820152601c60248201527f4e6f20746f6b656e7320617661696c61626c6520746f20636c61696d000000006044820152606401610726565b80826003016000828254610cec91906116e6565b925050819055508060106000828254610d0591906116e6565b90915550610d1590503382611140565b5050610d216001600655565b565b60008051602061170d833981519152610d3b81610f5b565b8260011480610d4a5750826002145b80610d555750826003145b610d915760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420706861736560981b6044820152606401610726565b82600103610db357610dab82670de0b6b3a76400006116cf565b600a55505050565b82600203610dd557610dcd82670de0b6b3a76400006116cf565b600b55505050565b610de782670de0b6b3a76400006116cf565b600c55505050565b60008051602061170d833981519152610e0781610f5b565b60038260ff161115610e505760405162461bcd60e51b8152602060048201526012602482015271496e76616c6964206275726e20706861736560701b6044820152606401610726565b506009805460ff909216620100000262ff000019909216919091179055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461060f90611650565b6000610eb481610f5b565b610ac460008051602061170d83398151915283610efd565b6000336106a0818585610fe0565b6000610ee581610f5b565b610ac460008051602061170d83398151915283610964565b600082815260056020526040902060010154610f1881610f5b565b61098983836110d3565b60008051602061170d833981519152610f3a81610f5b565b506009805460ff1916911515919091179055565b6109c283838360016111a0565b610f658133611275565b50565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146109895781811015610fd157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610726565b610989848484840360006111a0565b6001600160a01b03831661100a57604051634b637e8f60e11b815260006004820152602401610726565b6001600160a01b0382166110345760405163ec442f0560e01b815260006004820152602401610726565b6109c28383836112ae565b600061104b8383610e6f565b6110cb5760008381526005602090815260408083206001600160a01b03861684529091529020805460ff191660011790556110833390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45060016105fa565b5060006105fa565b60006110df8383610e6f565b156110cb5760008381526005602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45060016105fa565b6001600160a01b03821661116a5760405163ec442f0560e01b815260006004820152602401610726565b610ac4600083836112ae565b60026006540361119957604051633ee5aeb560e01b815260040160405180910390fd5b6002600655565b6001600160a01b0384166111ca5760405163e602df0560e01b815260006004820152602401610726565b6001600160a01b0383166111f457604051634a1406b160e11b815260006004820152602401610726565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561098957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161126791815260200190565b60405180910390a350505050565b61127f8282610e6f565b610ac45760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610726565b6001600160a01b0383166112d95780600260008282546112ce91906116e6565b9091555061134b9050565b6001600160a01b0383166000908152602081905260409020548181101561132c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610726565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661136757600280548290039055611386565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113cb91815260200190565b60405180910390a3505050565b6000602082840312156113ea57600080fd5b81356001600160e01b03198116811461140257600080fd5b9392505050565b600060208083528351808285015260005b818110156114365785810183015185820160400152820161141a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461146e57600080fd5b919050565b6000806040838503121561148657600080fd5b61148f83611457565b946020939093013593505050565b6000806000604084860312156114b257600080fd5b6114bb84611457565b9250602084013567ffffffffffffffff808211156114d857600080fd5b818601915086601f8301126114ec57600080fd5b8135818111156114fb57600080fd5b8760208260051b850101111561151057600080fd5b6020830194508093505050509250925092565b60006020828403121561153557600080fd5b5035919050565b60008060006060848603121561155157600080fd5b61155a84611457565b925061156860208501611457565b9150604084013590509250925092565b6000806040838503121561158b57600080fd5b8235915061159b60208401611457565b90509250929050565b6000602082840312156115b657600080fd5b61140282611457565b600080604083850312156115d257600080fd5b50508035926020909101359150565b6000602082840312156115f357600080fd5b813560ff8116811461140257600080fd5b6000806040838503121561161757600080fd5b61162083611457565b915061159b60208401611457565b60006020828403121561164057600080fd5b8135801515811461140257600080fd5b600181811c9082168061166457607f821691505b60208210810361168457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016116c8576116c86116a0565b5060010190565b80820281158282048414176105fa576105fa6116a0565b808201808211156105fa576105fa6116a0565b818103818111156105fa576105fa6116a056fea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a26469706673582212205b9fdc28b3569d0280c9479700bba143f674a65224659aefc47697ca42d3f92c64736f6c63430008140033

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.