ETH Price: $3,284.55 (+1.18%)
Gas: 6 Gwei

Token

boardAPE (bAPE)
 

Overview

Max Total Supply

59,639.399971461186736617 bAPE

Holders

69

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
astromahdi.eth
Balance
0.000000000000000001 bAPE

Value
$0.00
0xa4aa358ca74881ea0560b574860508b98556cec1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
boardApe

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/token/ERC20/[email protected]
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);

    /**
     * @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);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}


// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/lib/Operator.sol



pragma solidity 0.8.1;
contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);

    constructor() {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(_operator == msg.sender, "operator: caller is not the operator");
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(newOperator_ != address(0), "operator: zero address given for new operator");
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }
}


// File contracts/tokens/boardAPE.sol


pragma solidity 0.8.1;
contract boardApe is ERC20Burnable, Operator {
    using SafeMath for uint256;

    // TOTAL MAX SUPPLY = 70,000 boardApe
    uint256 public constant FARMING_POOL_REWARD_ALLOCATION = 59500 ether;
    uint256 public constant COMMUNITY_FUND_POOL_ALLOCATION = 5500 ether;
    uint256 public constant DEV_FUND_POOL_ALLOCATION = 5000 ether;

    uint256 public constant VESTING_DURATION = 365 days;
    uint256 public startTime;
    uint256 public endTime;

    uint256 public communityFundRewardRate;
    uint256 public devFundRewardRate;

    address public communityFund;
    address public devFund;

    uint256 public communityFundLastClaimed;
    uint256 public devFundLastClaimed;

    bool public rewardPoolDistributed = false;

    constructor(uint256 _startTime, address _communityFund, address _devFund) ERC20("boardAPE", "bAPE") {
        _mint(msg.sender, 2 ether); // mint 2 boardAPE for initial LP setup

        startTime = _startTime;
        endTime = startTime + VESTING_DURATION;

        communityFundLastClaimed = startTime;
        devFundLastClaimed = startTime;

        communityFundRewardRate = COMMUNITY_FUND_POOL_ALLOCATION.div(VESTING_DURATION);
        devFundRewardRate = DEV_FUND_POOL_ALLOCATION.div(VESTING_DURATION);

        require(_devFund != address(0), "Address cannot be 0");
        devFund = _devFund;

        require(_communityFund != address(0), "Address cannot be 0");
        communityFund = _communityFund;
    }

    function setTreasuryFund(address _communityFund) external {
        require(msg.sender == devFund, "!dev");
        communityFund = _communityFund;
    }

    function setDevFund(address _devFund) external {
        require(msg.sender == devFund, "!dev");
        require(_devFund != address(0), "zero");
        devFund = _devFund;
    }

    function unclaimedTreasuryFund() public view returns (uint256 _pending) {
        uint256 _now = block.timestamp;
        if (_now > endTime) _now = endTime;
        if (communityFundLastClaimed >= _now) return 0;
        _pending = _now.sub(communityFundLastClaimed).mul(communityFundRewardRate);
    }

    function unclaimedDevFund() public view returns (uint256 _pending) {
        uint256 _now = block.timestamp;
        if (_now > endTime) _now = endTime;
        if (devFundLastClaimed >= _now) return 0;
        _pending = _now.sub(devFundLastClaimed).mul(devFundRewardRate);
    }

    /**
     * @dev Claim pending rewards to community and dev fund
     */
    function claimRewards() external {
        uint256 _pending = unclaimedTreasuryFund();
        if (_pending > 0 && communityFund != address(0)) {
            _mint(communityFund, _pending);
            communityFundLastClaimed = block.timestamp;
        }
        _pending = unclaimedDevFund();
        if (_pending > 0 && devFund != address(0)) {
            _mint(devFund, _pending);
            devFundLastClaimed = block.timestamp;
        }
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(address _farmingIncentiveFund) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_farmingIncentiveFund != address(0), "!_farmingIncentiveFund");
        rewardPoolDistributed = true;
        _mint(_farmingIncentiveFund, FARMING_POOL_REWARD_ALLOCATION);
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"address","name":"_communityFund","type":"address"},{"internalType":"address","name":"_devFund","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COMMUNITY_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FARMING_POOL_REWARD_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amount","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityFundLastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundLastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_farmingIncentiveFund","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_devFund","type":"address"}],"name":"setDevFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_communityFund","type":"address"}],"name":"setTreasuryFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclaimedDevFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unclaimedTreasuryFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600f805460ff191690553480156200001b57600080fd5b5060405162001d1738038062001d178339810160408190526200003e9162000443565b6040805180820182526008815267626f61726441504560c01b6020808301918252835180850190945260048452636241504560e01b9084015281519192916200008a9160039162000380565b508051620000a090600490602084019062000380565b505050620000bd620000b76200023760201b60201c565b6200023b565b620000c762000237565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36200012733671bc16d674ec800006200028d565b60078390556200013c6301e1338084620004fa565b600855600754600d819055600e556200017069012a27d53bc0487000006301e1338062000366602090811b62000b8717901c565b6009556200019969010f0cf064dd592000006301e1338062000366602090811b62000b8717901c565b600a556001600160a01b038116620001ce5760405162461bcd60e51b8152600401620001c59062000483565b60405180910390fd5b600c80546001600160a01b0319166001600160a01b038381169190911790915582166200020f5760405162461bcd60e51b8152600401620001c59062000483565b50600b80546001600160a01b0319166001600160a01b0392909216919091179055506200057d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002b65760405162461bcd60e51b8152600401620001c590620004ba565b620002c4600083836200037b565b8060026000828254620002d89190620004fa565b90915550506001600160a01b0382166000908152602081905260408120805483929062000307908490620004fa565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200034c908590620004f1565b60405180910390a362000362600083836200037b565b5050565b60006200037482846200051f565b9392505050565b505050565b8280546200038e9062000540565b90600052602060002090601f016020900481019282620003b25760008555620003fd565b82601f10620003cd57805160ff1916838001178555620003fd565b82800160010185558215620003fd579182015b82811115620003fd578251825591602001919060010190620003e0565b506200040b9291506200040f565b5090565b5b808211156200040b576000815560010162000410565b80516001600160a01b03811681146200043e57600080fd5b919050565b60008060006060848603121562000458578283fd5b835192506200046a6020850162000426565b91506200047a6040850162000426565b90509250925092565b60208082526013908201527f416464726573732063616e6e6f74206265203000000000000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200051a57634e487b7160e01b81526011600452602481fd5b500190565b6000826200053b57634e487b7160e01b81526012600452602481fd5b500490565b6002810460018216806200055557607f821691505b602082108114156200057757634e487b7160e01b600052602260045260246000fd5b50919050565b61178a806200058d6000396000f3fe608060405234801561001057600080fd5b506004361061023c5760003560e01c806344cdc4541161013b57806395d89b41116100b8578063abb4b1be1161007c578063abb4b1be14610416578063ae4db9191461041e578063dd62ed3e14610431578063f2fde38b14610444578063f746b718146104575761023c565b806395d89b41146103d85780639662676c146103e0578063a06160fd146103e8578063a457c2d7146103f0578063a9059cbb146104035761023c565b806370a08231116100ff57806370a082311461039a578063715018a6146103ad57806378e97925146103b557806379cc6790146103bd5780638da5cb5b146103d05761023c565b806344cdc454146103675780634cfc4d301461036f5780634f337dd51461037757806354575af41461037f578063570ca735146103925761023c565b80632c07a624116101c9578063395093511161018d57806339509351146103295780633bba8eed1461033c57806342966c68146103445780634390d2a8146103575780634456eda21461035f5761023c565b80632c07a624146102f45780632e3367ce146102fc578063313ce567146103045780633197cbb614610319578063372500ab146103215761023c565b8063095ea7b311610210578063095ea7b31461029e57806317764782146102be57806318160ddd146102c657806323b872dd146102ce57806329605e77146102e15761023c565b8062f380f414610241578063040173151461025f57806306fdde0314610274578063092193ab14610289575b600080fd5b61024961046a565b60405161025691906111a5565b60405180910390f35b610267610479565b6040516102569190611669565b61027c61047f565b60405161025691906111dd565b61029c61029736600461106d565b610512565b005b6102b16102ac366004611101565b6105b2565b60405161025691906111d2565b6102676105d4565b610267610622565b6102b16102dc3660046110c1565b610628565b61029c6102ef36600461106d565b610656565b61026761069e565b6102676106e0565b61030c6106e6565b6040516102569190611672565b6102676106eb565b61029c6106f1565b6102b1610337366004611101565b61077d565b6102676107c9565b61029c61035236600461118d565b6107d7565b6102496107e0565b6102b16107ef565b610267610815565b61026761081b565b610267610823565b61029c61038d36600461114c565b610831565b6102496108e1565b6102676103a836600461106d565b6108f0565b61029c61090b565b610267610956565b61029c6103cb366004611101565b61095c565b61024961097c565b61027c61098b565b6102b161099a565b6102676109a3565b6102b16103fe366004611101565b6109b1565b6102b1610411366004611101565b610a12565b610267610a2a565b61029c61042c36600461106d565b610a30565b61026761043f366004611089565b610aa2565b61029c61045236600461106d565b610acd565b61029c61046536600461106d565b610b3b565b600b546001600160a01b031681565b600e5481565b60606003805461048e906116ee565b80601f01602080910402602001604051908101604052809291908181526020018280546104ba906116ee565b80156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b505050505090505b90565b6006546001600160a01b031633146105455760405162461bcd60e51b815260040161053c906114df565b60405180910390fd5b600f5460ff16156105685760405162461bcd60e51b815260040161053c90611273565b6001600160a01b03811661058e5760405162461bcd60e51b815260040161053c9061147a565b600f805460ff191660011790556105af81690c99805fe37d3e300000610b9a565b50565b6000806105bd610c62565b90506105ca818585610c66565b5060019392505050565b60085460009042908111156105e857506008545b80600d54106105fb57600091505061050f565b61061c600954610616600d5484610d1a90919063ffffffff16565b90610d26565b91505090565b60025490565b600080610633610c62565b9050610640858285610d32565b61064b858585610d76565b506001949350505050565b61065e610c62565b6001600160a01b031661066f61097c565b6001600160a01b0316146106955760405162461bcd60e51b815260040161053c906114aa565b6105af81610e9a565b60085460009042908111156106b257506008545b80600e54106106c557600091505061050f565b61061c600a54610616600e5484610d1a90919063ffffffff16565b600a5481565b601290565b60085481565b60006106fb6105d4565b90506000811180156107175750600b546001600160a01b031615155b1561073757600b54610732906001600160a01b031682610b9a565b42600d555b61073f61069e565b905060008111801561075b5750600c546001600160a01b031615155b156105af57600c54610776906001600160a01b031682610b9a565b42600e5550565b600080610788610c62565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506105ca90829086906107c4908790611680565b610c66565b69012a27d53bc04870000081565b6105af81610f18565b600c546001600160a01b031681565b6006546000906001600160a01b0316610806610c62565b6001600160a01b031614905090565b60095481565b6301e1338081565b69010f0cf064dd5920000081565b6006546001600160a01b0316331461085b5760405162461bcd60e51b815260040161053c906114df565b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb9061088990849086906004016111b9565b602060405180830381600087803b1580156108a357600080fd5b505af11580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db919061112c565b50505050565b6006546001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b610913610c62565b6001600160a01b031661092461097c565b6001600160a01b03161461094a5760405162461bcd60e51b815260040161053c906114aa565b6109546000610f29565b565b60075481565b61096e82610968610c62565b83610d32565b6109788282610f7b565b5050565b6005546001600160a01b031690565b60606004805461048e906116ee565b600f5460ff1681565b690c99805fe37d3e30000081565b6000806109bc610c62565b6001600160a01b0380821660009081526001602090815260408083209389168352929052205490915083811015610a055760405162461bcd60e51b815260040161053c906115ed565b61064b8286868403610c66565b600080610a1d610c62565b90506105ca818585610d76565b600d5481565b600c546001600160a01b03163314610a5a5760405162461bcd60e51b815260040161053c9061140f565b6001600160a01b038116610a805760405162461bcd60e51b815260040161053c90611374565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ad5610c62565b6001600160a01b0316610ae661097c565b6001600160a01b031614610b0c5760405162461bcd60e51b815260040161053c906114aa565b6001600160a01b038116610b325760405162461bcd60e51b815260040161053c906112ec565b6105af81610f29565b600c546001600160a01b03163314610b655760405162461bcd60e51b815260040161053c9061140f565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b938284611698565b9392505050565b6001600160a01b038216610bc05760405162461bcd60e51b815260040161053c90611632565b610bcc60008383611068565b8060026000828254610bde9190611680565b90915550506001600160a01b03821660009081526020819052604081208054839290610c0b908490611680565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c4e908590611669565b60405180910390a361097860008383611068565b3390565b6001600160a01b038316610c8c5760405162461bcd60e51b815260040161053c906115a9565b6001600160a01b038216610cb25760405162461bcd60e51b815260040161053c90611332565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610d0d908590611669565b60405180910390a3505050565b6000610b9382846116d7565b6000610b9382846116b8565b6000610d3e8484610aa2565b905060001981146108db5781811015610d695760405162461bcd60e51b815260040161053c90611392565b6108db8484848403610c66565b6001600160a01b038316610d9c5760405162461bcd60e51b815260040161053c90611564565b6001600160a01b038216610dc25760405162461bcd60e51b815260040161053c90611230565b610dcd838383611068565b6001600160a01b03831660009081526020819052604090205481811015610e065760405162461bcd60e51b815260040161053c906113c9565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e3d908490611680565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e879190611669565b60405180910390a36108db848484611068565b6001600160a01b038116610ec05760405162461bcd60e51b815260040161053c9061142d565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6105af610f23610c62565b82610f7b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610fa15760405162461bcd60e51b815260040161053c90611523565b610fad82600083611068565b6001600160a01b03821660009081526020819052604090205481811015610fe65760405162461bcd60e51b815260040161053c906112aa565b6001600160a01b03831660009081526020819052604081208383039055600280548492906110159084906116d7565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611058908690611669565b60405180910390a3611068836000845b505050565b60006020828403121561107e578081fd5b8135610b938161173f565b6000806040838503121561109b578081fd5b82356110a68161173f565b915060208301356110b68161173f565b809150509250929050565b6000806000606084860312156110d5578081fd5b83356110e08161173f565b925060208401356110f08161173f565b929592945050506040919091013590565b60008060408385031215611113578182fd5b823561111e8161173f565b946020939093013593505050565b60006020828403121561113d578081fd5b81518015158114610b93578182fd5b600080600060608486031215611160578283fd5b833561116b8161173f565b92506020840135915060408401356111828161173f565b809150509250925092565b60006020828403121561119e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015611209578581018301518582016040015282016111ed565b8181111561121a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526018908201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600490820152637a65726f60e01b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526004908201526310b232bb60e11b604082015260600190565b6020808252602d908201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260408201526c103732bb9037b832b930ba37b960991b606082015260800190565b6020808252601690820152750857d9985c9b5a5b99d25b98d95b9d1a5d99519d5b9960521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561169357611693611729565b500190565b6000826116b357634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156116d2576116d2611729565b500290565b6000828210156116e9576116e9611729565b500390565b60028104600182168061170257607f821691505b6020821081141561172357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146105af57600080fdfea2646970667358221220fd998c1d73b3c55ef33596b264f116d1ff770e64b8f3712c5378c4e82f4364ff64736f6c63430008010033000000000000000000000000000000000000000000000000000000006240fa800000000000000000000000009f04fe7654e6a749344c5220b31a3053dbe9a52a000000000000000000000000fe16fb55aca52422f769823728127025a389b6f9

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023c5760003560e01c806344cdc4541161013b57806395d89b41116100b8578063abb4b1be1161007c578063abb4b1be14610416578063ae4db9191461041e578063dd62ed3e14610431578063f2fde38b14610444578063f746b718146104575761023c565b806395d89b41146103d85780639662676c146103e0578063a06160fd146103e8578063a457c2d7146103f0578063a9059cbb146104035761023c565b806370a08231116100ff57806370a082311461039a578063715018a6146103ad57806378e97925146103b557806379cc6790146103bd5780638da5cb5b146103d05761023c565b806344cdc454146103675780634cfc4d301461036f5780634f337dd51461037757806354575af41461037f578063570ca735146103925761023c565b80632c07a624116101c9578063395093511161018d57806339509351146103295780633bba8eed1461033c57806342966c68146103445780634390d2a8146103575780634456eda21461035f5761023c565b80632c07a624146102f45780632e3367ce146102fc578063313ce567146103045780633197cbb614610319578063372500ab146103215761023c565b8063095ea7b311610210578063095ea7b31461029e57806317764782146102be57806318160ddd146102c657806323b872dd146102ce57806329605e77146102e15761023c565b8062f380f414610241578063040173151461025f57806306fdde0314610274578063092193ab14610289575b600080fd5b61024961046a565b60405161025691906111a5565b60405180910390f35b610267610479565b6040516102569190611669565b61027c61047f565b60405161025691906111dd565b61029c61029736600461106d565b610512565b005b6102b16102ac366004611101565b6105b2565b60405161025691906111d2565b6102676105d4565b610267610622565b6102b16102dc3660046110c1565b610628565b61029c6102ef36600461106d565b610656565b61026761069e565b6102676106e0565b61030c6106e6565b6040516102569190611672565b6102676106eb565b61029c6106f1565b6102b1610337366004611101565b61077d565b6102676107c9565b61029c61035236600461118d565b6107d7565b6102496107e0565b6102b16107ef565b610267610815565b61026761081b565b610267610823565b61029c61038d36600461114c565b610831565b6102496108e1565b6102676103a836600461106d565b6108f0565b61029c61090b565b610267610956565b61029c6103cb366004611101565b61095c565b61024961097c565b61027c61098b565b6102b161099a565b6102676109a3565b6102b16103fe366004611101565b6109b1565b6102b1610411366004611101565b610a12565b610267610a2a565b61029c61042c36600461106d565b610a30565b61026761043f366004611089565b610aa2565b61029c61045236600461106d565b610acd565b61029c61046536600461106d565b610b3b565b600b546001600160a01b031681565b600e5481565b60606003805461048e906116ee565b80601f01602080910402602001604051908101604052809291908181526020018280546104ba906116ee565b80156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b505050505090505b90565b6006546001600160a01b031633146105455760405162461bcd60e51b815260040161053c906114df565b60405180910390fd5b600f5460ff16156105685760405162461bcd60e51b815260040161053c90611273565b6001600160a01b03811661058e5760405162461bcd60e51b815260040161053c9061147a565b600f805460ff191660011790556105af81690c99805fe37d3e300000610b9a565b50565b6000806105bd610c62565b90506105ca818585610c66565b5060019392505050565b60085460009042908111156105e857506008545b80600d54106105fb57600091505061050f565b61061c600954610616600d5484610d1a90919063ffffffff16565b90610d26565b91505090565b60025490565b600080610633610c62565b9050610640858285610d32565b61064b858585610d76565b506001949350505050565b61065e610c62565b6001600160a01b031661066f61097c565b6001600160a01b0316146106955760405162461bcd60e51b815260040161053c906114aa565b6105af81610e9a565b60085460009042908111156106b257506008545b80600e54106106c557600091505061050f565b61061c600a54610616600e5484610d1a90919063ffffffff16565b600a5481565b601290565b60085481565b60006106fb6105d4565b90506000811180156107175750600b546001600160a01b031615155b1561073757600b54610732906001600160a01b031682610b9a565b42600d555b61073f61069e565b905060008111801561075b5750600c546001600160a01b031615155b156105af57600c54610776906001600160a01b031682610b9a565b42600e5550565b600080610788610c62565b6001600160a01b038082166000908152600160209081526040808320938916835292905220549091506105ca90829086906107c4908790611680565b610c66565b69012a27d53bc04870000081565b6105af81610f18565b600c546001600160a01b031681565b6006546000906001600160a01b0316610806610c62565b6001600160a01b031614905090565b60095481565b6301e1338081565b69010f0cf064dd5920000081565b6006546001600160a01b0316331461085b5760405162461bcd60e51b815260040161053c906114df565b60405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb9061088990849086906004016111b9565b602060405180830381600087803b1580156108a357600080fd5b505af11580156108b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108db919061112c565b50505050565b6006546001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b610913610c62565b6001600160a01b031661092461097c565b6001600160a01b03161461094a5760405162461bcd60e51b815260040161053c906114aa565b6109546000610f29565b565b60075481565b61096e82610968610c62565b83610d32565b6109788282610f7b565b5050565b6005546001600160a01b031690565b60606004805461048e906116ee565b600f5460ff1681565b690c99805fe37d3e30000081565b6000806109bc610c62565b6001600160a01b0380821660009081526001602090815260408083209389168352929052205490915083811015610a055760405162461bcd60e51b815260040161053c906115ed565b61064b8286868403610c66565b600080610a1d610c62565b90506105ca818585610d76565b600d5481565b600c546001600160a01b03163314610a5a5760405162461bcd60e51b815260040161053c9061140f565b6001600160a01b038116610a805760405162461bcd60e51b815260040161053c90611374565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ad5610c62565b6001600160a01b0316610ae661097c565b6001600160a01b031614610b0c5760405162461bcd60e51b815260040161053c906114aa565b6001600160a01b038116610b325760405162461bcd60e51b815260040161053c906112ec565b6105af81610f29565b600c546001600160a01b03163314610b655760405162461bcd60e51b815260040161053c9061140f565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b938284611698565b9392505050565b6001600160a01b038216610bc05760405162461bcd60e51b815260040161053c90611632565b610bcc60008383611068565b8060026000828254610bde9190611680565b90915550506001600160a01b03821660009081526020819052604081208054839290610c0b908490611680565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c4e908590611669565b60405180910390a361097860008383611068565b3390565b6001600160a01b038316610c8c5760405162461bcd60e51b815260040161053c906115a9565b6001600160a01b038216610cb25760405162461bcd60e51b815260040161053c90611332565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610d0d908590611669565b60405180910390a3505050565b6000610b9382846116d7565b6000610b9382846116b8565b6000610d3e8484610aa2565b905060001981146108db5781811015610d695760405162461bcd60e51b815260040161053c90611392565b6108db8484848403610c66565b6001600160a01b038316610d9c5760405162461bcd60e51b815260040161053c90611564565b6001600160a01b038216610dc25760405162461bcd60e51b815260040161053c90611230565b610dcd838383611068565b6001600160a01b03831660009081526020819052604090205481811015610e065760405162461bcd60e51b815260040161053c906113c9565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e3d908490611680565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e879190611669565b60405180910390a36108db848484611068565b6001600160a01b038116610ec05760405162461bcd60e51b815260040161053c9061142d565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6105af610f23610c62565b82610f7b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610fa15760405162461bcd60e51b815260040161053c90611523565b610fad82600083611068565b6001600160a01b03821660009081526020819052604090205481811015610fe65760405162461bcd60e51b815260040161053c906112aa565b6001600160a01b03831660009081526020819052604081208383039055600280548492906110159084906116d7565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611058908690611669565b60405180910390a3611068836000845b505050565b60006020828403121561107e578081fd5b8135610b938161173f565b6000806040838503121561109b578081fd5b82356110a68161173f565b915060208301356110b68161173f565b809150509250929050565b6000806000606084860312156110d5578081fd5b83356110e08161173f565b925060208401356110f08161173f565b929592945050506040919091013590565b60008060408385031215611113578182fd5b823561111e8161173f565b946020939093013593505050565b60006020828403121561113d578081fd5b81518015158114610b93578182fd5b600080600060608486031215611160578283fd5b833561116b8161173f565b92506020840135915060408401356111828161173f565b809150509250925092565b60006020828403121561119e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b81811015611209578581018301518582016040015282016111ed565b8181111561121a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526018908201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600490820152637a65726f60e01b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526004908201526310b232bb60e11b604082015260600190565b6020808252602d908201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260408201526c103732bb9037b832b930ba37b960991b606082015260800190565b6020808252601690820152750857d9985c9b5a5b99d25b98d95b9d1a5d99519d5b9960521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561169357611693611729565b500190565b6000826116b357634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156116d2576116d2611729565b500290565b6000828210156116e9576116e9611729565b500390565b60028104600182168061170257607f821691505b6020821081141561172357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146105af57600080fdfea2646970667358221220fd998c1d73b3c55ef33596b264f116d1ff770e64b8f3712c5378c4e82f4364ff64736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000006240fa800000000000000000000000009f04fe7654e6a749344c5220b31a3053dbe9a52a000000000000000000000000fe16fb55aca52422f769823728127025a389b6f9

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1648425600
Arg [1] : _communityFund (address): 0x9f04fE7654e6a749344c5220B31a3053dBe9A52A
Arg [2] : _devFund (address): 0xFe16fb55aCA52422F769823728127025A389B6F9

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000006240fa80
Arg [1] : 0000000000000000000000009f04fe7654e6a749344c5220b31a3053dbe9a52a
Arg [2] : 000000000000000000000000fe16fb55aca52422f769823728127025a389b6f9


Deployed Bytecode Sourcemap

29405:3726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29960:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30072:33;;;:::i;:::-;;;;;;;:::i;6710:100::-;;;:::i;:::-;;;;;;;:::i;32494:348::-;;;;;;:::i;:::-;;:::i;:::-;;9061:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31264:308::-;;;:::i;7830:108::-;;;:::i;9842:295::-;;;;;;:::i;:::-;;:::i;28949:115::-;;;;;;:::i;:::-;;:::i;31580:285::-;;;:::i;29919:32::-;;;:::i;7672:93::-;;;:::i;:::-;;;;;;;:::i;29843:22::-;;;:::i;31952:462::-;;;:::i;10546:240::-;;;;;;:::i;:::-;;:::i;29610:67::-;;;:::i;32850:83::-;;;;;;:::i;:::-;;:::i;29995:22::-;;;:::i;28841:100::-;;;:::i;29874:38::-;;;:::i;29754:51::-;;;:::i;29684:61::-;;;:::i;32941:187::-;;;;;;:::i;:::-;;:::i;28613:85::-;;;:::i;8001:127::-;;;;;;:::i;:::-;;:::i;27429:103::-;;;:::i;29812:24::-;;;:::i;18504:164::-;;;;;;:::i;:::-;;:::i;26778:87::-;;;:::i;6929:104::-;;;:::i;30114:41::-;;;:::i;29535:68::-;;;:::i;11289:438::-;;;;;;:::i;:::-;;:::i;8334:193::-;;;;;;:::i;:::-;;:::i;30026:39::-;;;:::i;31073:183::-;;;;;;:::i;:::-;;:::i;8590:151::-;;;;;;:::i;:::-;;:::i;27687:201::-;;;;;;:::i;:::-;;:::i;30909:156::-;;;;;;:::i;:::-;;:::i;29960:28::-;;;-1:-1:-1;;;;;29960:28:0;;:::o;30072:33::-;;;;:::o;6710:100::-;6764:13;6797:5;6790:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6710:100;;:::o;32494:348::-;28749:9;;-1:-1:-1;;;;;28749:9:0;28762:10;28749:23;28741:72;;;;-1:-1:-1;;;28741:72:0;;;;;;;:::i;:::-;;;;;;;;;32593:21:::1;::::0;::::1;;32592:22;32584:59;;;;-1:-1:-1::0;;;32584:59:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32662:35:0;::::1;32654:70;;;;-1:-1:-1::0;;;32654:70:0::1;;;;;;;:::i;:::-;32735:21;:28:::0;;-1:-1:-1;;32735:28:0::1;32759:4;32735:28;::::0;;32774:60:::1;32780:21:::0;29592:11:::1;32774:5;:60::i;:::-;32494:348:::0;:::o;9061:201::-;9144:4;9161:13;9177:12;:10;:12::i;:::-;9161:28;;9200:32;9209:5;9216:7;9225:6;9200:8;:32::i;:::-;-1:-1:-1;9250:4:0;;9061:201;-1:-1:-1;;;9061:201:0:o;31264:308::-;31399:7;;31318:16;;31362:15;;31392:14;;31388:34;;;-1:-1:-1;31415:7:0;;31388:34;31465:4;31437:24;;:32;31433:46;;31478:1;31471:8;;;;;31433:46;31501:63;31540:23;;31501:34;31510:24;;31501:4;:8;;:34;;;;:::i;:::-;:38;;:63::i;:::-;31490:74;;31264:308;;:::o;7830:108::-;7918:12;;7830:108;:::o;9842:295::-;9973:4;9990:15;10008:12;:10;:12::i;:::-;9990:30;;10031:38;10047:4;10053:7;10062:6;10031:15;:38::i;:::-;10080:27;10090:4;10096:2;10100:6;10080:9;:27::i;:::-;-1:-1:-1;10125:4:0;;9842:295;-1:-1:-1;;;;9842:295:0:o;28949:115::-;27009:12;:10;:12::i;:::-;-1:-1:-1;;;;;26998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;26998:23:0;;26990:68;;;;-1:-1:-1;;;26990:68:0;;;;;;;:::i;:::-;29025:31:::1;29043:12;29025:17;:31::i;31580:285::-:0;31710:7;;31629:16;;31673:15;;31703:14;;31699:34;;;-1:-1:-1;31726:7:0;;31699:34;31770:4;31748:18;;:26;31744:40;;31783:1;31776:8;;;;;31744:40;31806:51;31839:17;;31806:28;31815:18;;31806:4;:8;;:28;;;;:::i;29919:32::-;;;;:::o;7672:93::-;7755:2;7672:93;:::o;29843:22::-;;;;:::o;31952:462::-;31996:16;32015:23;:21;:23::i;:::-;31996:42;;32064:1;32053:8;:12;:43;;;;-1:-1:-1;32069:13:0;;-1:-1:-1;;;;;32069:13:0;:27;;32053:43;32049:163;;;32119:13;;32113:30;;-1:-1:-1;;;;;32119:13:0;32134:8;32113:5;:30::i;:::-;32185:15;32158:24;:42;32049:163;32233:18;:16;:18::i;:::-;32222:29;;32277:1;32266:8;:12;:37;;;;-1:-1:-1;32282:7:0;;-1:-1:-1;;;;;32282:7:0;:21;;32266:37;32262:145;;;32326:7;;32320:24;;-1:-1:-1;;;;;32326:7:0;32335:8;32320:5;:24::i;:::-;32380:15;32359:18;:36;31952:462;:::o;10546:240::-;10634:4;10651:13;10667:12;:10;:12::i;:::-;-1:-1:-1;;;;;10715:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;10651:28;;-1:-1:-1;10690:66:0;;10651:28;;10706:7;;10715:40;;10745:10;;10715:40;:::i;:::-;10690:8;:66::i;29610:67::-;29667:10;29610:67;:::o;32850:83::-;32907:18;32918:6;32907:10;:18::i;29995:22::-;;;-1:-1:-1;;;;;29995:22:0;;:::o;28841:100::-;28924:9;;28884:4;;-1:-1:-1;;;;;28924:9:0;28908:12;:10;:12::i;:::-;-1:-1:-1;;;;;28908:25:0;;28901:32;;28841:100;:::o;29874:38::-;;;;:::o;29754:51::-;29797:8;29754:51;:::o;29684:61::-;29735:10;29684:61;:::o;32941:187::-;28749:9;;-1:-1:-1;;;;;28749:9:0;28762:10;28749:23;28741:72;;;;-1:-1:-1;;;28741:72:0;;;;;;;:::i;:::-;33091:29:::1;::::0;-1:-1:-1;;;33091:29:0;;-1:-1:-1;;;;;33091:15:0;::::1;::::0;::::1;::::0;:29:::1;::::0;33107:3;;33112:7;;33091:29:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32941:187:::0;;;:::o;28613:85::-;28681:9;;-1:-1:-1;;;;;28681:9:0;28613:85;:::o;8001:127::-;-1:-1:-1;;;;;8102:18:0;8075:7;8102:18;;;;;;;;;;;;8001:127::o;27429:103::-;27009:12;:10;:12::i;:::-;-1:-1:-1;;;;;26998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;26998:23:0;;26990:68;;;;-1:-1:-1;;;26990:68:0;;;;;;;:::i;:::-;27494:30:::1;27521:1;27494:18;:30::i;:::-;27429:103::o:0;29812:24::-;;;;:::o;18504:164::-;18581:46;18597:7;18606:12;:10;:12::i;:::-;18620:6;18581:15;:46::i;:::-;18638:22;18644:7;18653:6;18638:5;:22::i;:::-;18504:164;;:::o;26778:87::-;26851:6;;-1:-1:-1;;;;;26851:6:0;26778:87;:::o;6929:104::-;6985:13;7018:7;7011:14;;;;;:::i;30114:41::-;;;;;;:::o;29535:68::-;29592:11;29535:68;:::o;11289:438::-;11382:4;11399:13;11415:12;:10;:12::i;:::-;-1:-1:-1;;;;;11465:18:0;;;11438:24;11465:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;11399:28;;-1:-1:-1;11511:35:0;;;;11503:85;;;;-1:-1:-1;;;11503:85:0;;;;;;;:::i;:::-;11624:60;11633:5;11640:7;11668:15;11649:16;:34;11624:8;:60::i;8334:193::-;8413:4;8430:13;8446:12;:10;:12::i;:::-;8430:28;;8469;8479:5;8486:2;8490:6;8469:9;:28::i;30026:39::-;;;;:::o;31073:183::-;31153:7;;-1:-1:-1;;;;;31153:7:0;31139:10;:21;31131:38;;;;-1:-1:-1;;;31131:38:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31188:22:0;;31180:39;;;;-1:-1:-1;;;31180:39:0;;;;;;;:::i;:::-;31230:7;:18;;-1:-1:-1;;;;;;31230:18:0;-1:-1:-1;;;;;31230:18:0;;;;;;;;;;31073:183::o;8590:151::-;-1:-1:-1;;;;;8706:18:0;;;8679:7;8706:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8590:151::o;27687:201::-;27009:12;:10;:12::i;:::-;-1:-1:-1;;;;;26998:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;26998:23:0;;26990:68;;;;-1:-1:-1;;;26990:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27776:22:0;::::1;27768:73;;;;-1:-1:-1::0;;;27768:73:0::1;;;;;;;:::i;:::-;27852:28;27871:8;27852:18;:28::i;30909:156::-:0;31000:7;;-1:-1:-1;;;;;31000:7:0;30986:10;:21;30978:38;;;;-1:-1:-1;;;30978:38:0;;;;;;;:::i;:::-;31027:13;:30;;-1:-1:-1;;;;;;31027:30:0;-1:-1:-1;;;;;31027:30:0;;;;;;;;;;30909:156::o;22682:98::-;22740:7;22767:5;22771:1;22767;:5;:::i;:::-;22760:12;22682:98;-1:-1:-1;;;22682:98:0:o;13164:399::-;-1:-1:-1;;;;;13248:21:0;;13240:65;;;;-1:-1:-1;;;13240:65:0;;;;;;;:::i;:::-;13318:49;13347:1;13351:7;13360:6;13318:20;:49::i;:::-;13396:6;13380:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13413:18:0;;:9;:18;;;;;;;;;;:28;;13435:6;;13413:9;:28;;13435:6;;13413:28;:::i;:::-;;;;-1:-1:-1;;13457:37:0;;-1:-1:-1;;;;;13457:37:0;;;13474:1;;13457:37;;;;13487:6;;13457:37;:::i;:::-;;;;;;;;13507:48;13535:1;13539:7;13548:6;13507:19;:48::i;4344:98::-;4424:10;4344:98;:::o;14925:380::-;-1:-1:-1;;;;;15061:19:0;;15053:68;;;;-1:-1:-1;;;15053:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15140:21:0;;15132:68;;;;-1:-1:-1;;;15132:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15213:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15265:32;;;;;15243:6;;15265:32;:::i;:::-;;;;;;;;14925:380;;;:::o;21926:98::-;21984:7;22011:5;22015:1;22011;:5;:::i;22283:98::-;22341:7;22368:5;22372:1;22368;:5;:::i;15592:453::-;15727:24;15754:25;15764:5;15771:7;15754:9;:25::i;:::-;15727:52;;-1:-1:-1;;15794:16:0;:37;15790:248;;15876:6;15856:16;:26;;15848:68;;;;-1:-1:-1;;;15848:68:0;;;;;;;:::i;:::-;15960:51;15969:5;15976:7;16004:6;15985:16;:25;15960:8;:51::i;12206:671::-;-1:-1:-1;;;;;12337:18:0;;12329:68;;;;-1:-1:-1;;;12329:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12416:16:0;;12408:64;;;;-1:-1:-1;;;12408:64:0;;;;;;;:::i;:::-;12485:38;12506:4;12512:2;12516:6;12485:20;:38::i;:::-;-1:-1:-1;;;;;12558:15:0;;12536:19;12558:15;;;;;;;;;;;12592:21;;;;12584:72;;;;-1:-1:-1;;;12584:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12692:15:0;;;:9;:15;;;;;;;;;;;12710:20;;;12692:38;;12752:13;;;;;;;;:23;;12724:6;;12692:9;12752:23;;12724:6;;12752:23;:::i;:::-;;;;;;;;12808:2;-1:-1:-1;;;;;12793:26:0;12802:4;-1:-1:-1;;;;;12793:26:0;;12812:6;12793:26;;;;;;:::i;:::-;;;;;;;;12832:37;12852:4;12858:2;12862:6;12832:19;:37::i;29072:257::-;-1:-1:-1;;;;;29149:26:0;;29141:84;;;;-1:-1:-1;;;29141:84:0;;;;;;;:::i;:::-;29241:45;;-1:-1:-1;;;;;29241:45:0;;;29269:1;;29241:45;;29269:1;;29241:45;29297:9;:24;;-1:-1:-1;;;;;;29297:24:0;-1:-1:-1;;;;;29297:24:0;;;;;;;;;;29072:257::o;18094:91::-;18150:27;18156:12;:10;:12::i;:::-;18170:6;18150:5;:27::i;28048:191::-;28141:6;;;-1:-1:-1;;;;;28158:17:0;;;-1:-1:-1;;;;;;28158:17:0;;;;;;;28191:40;;28141:6;;;28158:17;28141:6;;28191:40;;28122:16;;28191:40;28048:191;;:::o;13896:591::-;-1:-1:-1;;;;;13980:21:0;;13972:67;;;;-1:-1:-1;;;13972:67:0;;;;;;;:::i;:::-;14052:49;14073:7;14090:1;14094:6;14052:20;:49::i;:::-;-1:-1:-1;;;;;14139:18:0;;14114:22;14139:18;;;;;;;;;;;14176:24;;;;14168:71;;;;-1:-1:-1;;;14168:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14275:18:0;;:9;:18;;;;;;;;;;14296:23;;;14275:44;;14341:12;:22;;14313:6;;14275:9;14341:22;;14313:6;;14341:22;:::i;:::-;;;;-1:-1:-1;;14381:37:0;;14407:1;;-1:-1:-1;;;;;14381:37:0;;;;;;;14411:6;;14381:37;:::i;:::-;;;;;;;;14431:48;14451:7;14468:1;14472:6;14431:48;13896:591;;;:::o;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;278:402::-;;;407:2;395:9;386:7;382:23;378:32;375:2;;;428:6;420;413:22;375:2;472:9;459:23;491:33;518:5;491:33;:::i;:::-;543:5;-1:-1:-1;600:2:1;585:18;;572:32;613:35;572:32;613:35;:::i;:::-;667:7;657:17;;;365:315;;;;;:::o;685:470::-;;;;831:2;819:9;810:7;806:23;802:32;799:2;;;852:6;844;837:22;799:2;896:9;883:23;915:33;942:5;915:33;:::i;:::-;967:5;-1:-1:-1;1024:2:1;1009:18;;996:32;1037:35;996:32;1037:35;:::i;:::-;789:366;;1091:7;;-1:-1:-1;;;1145:2:1;1130:18;;;;1117:32;;789:366::o;1160:327::-;;;1289:2;1277:9;1268:7;1264:23;1260:32;1257:2;;;1310:6;1302;1295:22;1257:2;1354:9;1341:23;1373:33;1400:5;1373:33;:::i;:::-;1425:5;1477:2;1462:18;;;;1449:32;;-1:-1:-1;;;1247:240:1:o;1492:297::-;;1612:2;1600:9;1591:7;1587:23;1583:32;1580:2;;;1633:6;1625;1618:22;1580:2;1670:9;1664:16;1723:5;1716:13;1709:21;1702:5;1699:32;1689:2;;1750:6;1742;1735:22;1794:483;;;;1953:2;1941:9;1932:7;1928:23;1924:32;1921:2;;;1974:6;1966;1959:22;1921:2;2018:9;2005:23;2037:33;2064:5;2037:33;:::i;:::-;2089:5;-1:-1:-1;2141:2:1;2126:18;;2113:32;;-1:-1:-1;2197:2:1;2182:18;;2169:32;2210:35;2169:32;2210:35;:::i;:::-;2264:7;2254:17;;;1911:366;;;;;:::o;2282:190::-;;2394:2;2382:9;2373:7;2369:23;2365:32;2362:2;;;2415:6;2407;2400:22;2362:2;-1:-1:-1;2443:23:1;;2352:120;-1:-1:-1;2352:120:1:o;2477:203::-;-1:-1:-1;;;;;2641:32:1;;;;2623:51;;2611:2;2596:18;;2578:102::o;2685:274::-;-1:-1:-1;;;;;2877:32:1;;;;2859:51;;2941:2;2926:18;;2919:34;2847:2;2832:18;;2814:145::o;2964:187::-;3129:14;;3122:22;3104:41;;3092:2;3077:18;;3059:92::o;3156:603::-;;3297:2;3326;3315:9;3308:21;3358:6;3352:13;3401:6;3396:2;3385:9;3381:18;3374:34;3426:4;3439:140;3453:6;3450:1;3447:13;3439:140;;;3548:14;;;3544:23;;3538:30;3514:17;;;3533:2;3510:26;3503:66;3468:10;;3439:140;;;3597:6;3594:1;3591:13;3588:2;;;3667:4;3662:2;3653:6;3642:9;3638:22;3634:31;3627:45;3588:2;-1:-1:-1;3743:2:1;3722:15;-1:-1:-1;;3718:29:1;3703:45;;;;3750:2;3699:54;;3277:482;-1:-1:-1;;;3277:482:1:o;3764:399::-;3966:2;3948:21;;;4005:2;3985:18;;;3978:30;4044:34;4039:2;4024:18;;4017:62;-1:-1:-1;;;4110:2:1;4095:18;;4088:33;4153:3;4138:19;;3938:225::o;4168:348::-;4370:2;4352:21;;;4409:2;4389:18;;;4382:30;4448:26;4443:2;4428:18;;4421:54;4507:2;4492:18;;4342:174::o;4521:398::-;4723:2;4705:21;;;4762:2;4742:18;;;4735:30;4801:34;4796:2;4781:18;;4774:62;-1:-1:-1;;;4867:2:1;4852:18;;4845:32;4909:3;4894:19;;4695:224::o;4924:402::-;5126:2;5108:21;;;5165:2;5145:18;;;5138:30;5204:34;5199:2;5184:18;;5177:62;-1:-1:-1;;;5270:2:1;5255:18;;5248:36;5316:3;5301:19;;5098:228::o;5331:398::-;5533:2;5515:21;;;5572:2;5552:18;;;5545:30;5611:34;5606:2;5591:18;;5584:62;-1:-1:-1;;;5677:2:1;5662:18;;5655:32;5719:3;5704:19;;5505:224::o;5734:327::-;5936:2;5918:21;;;5975:1;5955:18;;;5948:29;-1:-1:-1;;;6008:2:1;5993:18;;5986:34;6052:2;6037:18;;5908:153::o;6066:353::-;6268:2;6250:21;;;6307:2;6287:18;;;6280:30;6346:31;6341:2;6326:18;;6319:59;6410:2;6395:18;;6240:179::o;6424:402::-;6626:2;6608:21;;;6665:2;6645:18;;;6638:30;6704:34;6699:2;6684:18;;6677:62;-1:-1:-1;;;6770:2:1;6755:18;;6748:36;6816:3;6801:19;;6598:228::o;6831:327::-;7033:2;7015:21;;;7072:1;7052:18;;;7045:29;-1:-1:-1;;;7105:2:1;7090:18;;7083:34;7149:2;7134:18;;7005:153::o;7163:409::-;7365:2;7347:21;;;7404:2;7384:18;;;7377:30;7443:34;7438:2;7423:18;;7416:62;-1:-1:-1;;;7509:2:1;7494:18;;7487:43;7562:3;7547:19;;7337:235::o;7577:346::-;7779:2;7761:21;;;7818:2;7798:18;;;7791:30;-1:-1:-1;;;7852:2:1;7837:18;;7830:52;7914:2;7899:18;;7751:172::o;7928:356::-;8130:2;8112:21;;;8149:18;;;8142:30;8208:34;8203:2;8188:18;;8181:62;8275:2;8260:18;;8102:182::o;8289:400::-;8491:2;8473:21;;;8530:2;8510:18;;;8503:30;8569:34;8564:2;8549:18;;8542:62;-1:-1:-1;;;8635:2:1;8620:18;;8613:34;8679:3;8664:19;;8463:226::o;8694:397::-;8896:2;8878:21;;;8935:2;8915:18;;;8908:30;8974:34;8969:2;8954:18;;8947:62;-1:-1:-1;;;9040:2:1;9025:18;;9018:31;9081:3;9066:19;;8868:223::o;9096:401::-;9298:2;9280:21;;;9337:2;9317:18;;;9310:30;9376:34;9371:2;9356:18;;9349:62;-1:-1:-1;;;9442:2:1;9427:18;;9420:35;9487:3;9472:19;;9270:227::o;9502:400::-;9704:2;9686:21;;;9743:2;9723:18;;;9716:30;9782:34;9777:2;9762:18;;9755:62;-1:-1:-1;;;9848:2:1;9833:18;;9826:34;9892:3;9877:19;;9676:226::o;9907:401::-;10109:2;10091:21;;;10148:2;10128:18;;;10121:30;10187:34;10182:2;10167:18;;10160:62;-1:-1:-1;;;10253:2:1;10238:18;;10231:35;10298:3;10283:19;;10081:227::o;10313:355::-;10515:2;10497:21;;;10554:2;10534:18;;;10527:30;10593:33;10588:2;10573:18;;10566:61;10659:2;10644:18;;10487:181::o;10673:177::-;10819:25;;;10807:2;10792:18;;10774:76::o;10855:184::-;11027:4;11015:17;;;;10997:36;;10985:2;10970:18;;10952:87::o;11044:128::-;;11115:1;11111:6;11108:1;11105:13;11102:2;;;11121:18;;:::i;:::-;-1:-1:-1;11157:9:1;;11092:80::o;11177:217::-;;11243:1;11233:2;;-1:-1:-1;;;11268:31:1;;11322:4;11319:1;11312:15;11350:4;11275:1;11340:15;11233:2;-1:-1:-1;11379:9:1;;11223:171::o;11399:168::-;;11505:1;11501;11497:6;11493:14;11490:1;11487:21;11482:1;11475:9;11468:17;11464:45;11461:2;;;11512:18;;:::i;:::-;-1:-1:-1;11552:9:1;;11451:116::o;11572:125::-;;11640:1;11637;11634:8;11631:2;;;11645:18;;:::i;:::-;-1:-1:-1;11682:9:1;;11621:76::o;11702:380::-;11787:1;11777:12;;11834:1;11824:12;;;11845:2;;11899:4;11891:6;11887:17;11877:27;;11845:2;11952;11944:6;11941:14;11921:18;11918:38;11915:2;;;11998:10;11993:3;11989:20;11986:1;11979:31;12033:4;12030:1;12023:15;12061:4;12058:1;12051:15;11915:2;;11757:325;;;:::o;12087:127::-;12148:10;12143:3;12139:20;12136:1;12129:31;12179:4;12176:1;12169:15;12203:4;12200:1;12193:15;12219:133;-1:-1:-1;;;;;12296:31:1;;12286:42;;12276:2;;12342:1;12339;12332:12

Swarm Source

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