S Price: $0.730835 (+8.60%)

Token

Cobra Share (GCOBRA)

Overview

Max Total Supply

1 GCOBRA

Holders

1

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1 GCOBRA

Value
$0.00
0xc6568bf26a3ef8c2c72cd73a4093b77616dedf64
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
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:
GCobra

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-28
*/

pragma solidity >=0.6.0 <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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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/utils/Context.sol



pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity >=0.6.0 <0.8.0;


// File: contracts/owner/Operator.sol



pragma solidity 0.6.12;



contract Operator is Context, Ownable {
    address private _operator;

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

    constructor() internal {
        _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: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity >=0.6.0 <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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @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 value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 _decimals;
    }

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol



pragma solidity >=0.6.0 <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 {
    using SafeMath for uint256;

    /**
     * @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 {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: contracts/GCobra.sol



pragma solidity 0.6.12;

contract GCobra is ERC20Burnable, Operator {
    using SafeMath for uint256;

    // TOTAL MAX SUPPLY = 50,000 GCOBRA
    uint256 public constant FARMING_POOL_REWARD_ALLOCATION = 44000 ether; // 44,000
    uint256 public constant COMMUNITY_FUND_POOL_ALLOCATION = 3500 ether;
    uint256 public constant DEV_FUND_POOL_ALLOCATION = 2499 ether;

    uint256 public constant VESTING_DURATION = 180 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) public ERC20("Cobra Share", "GCOBRA") {
        _mint(msg.sender, 1 ether); // mint 1 COBRA Share for initial pools deployment

        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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

6080604052600f805460ff191690553480156200001b57600080fd5b506040516200201538038062002015833981810160405260608110156200004157600080fd5b50805160208083015160409384015184518086018652600b81526a436f62726120536861726560a81b8185019081528651808801909752600687526547434f42524160d01b948701949094528051949592949193909291620000a691600391620004c4565b508051620000bc906004906020840190620004c4565b50506005805460ff19166012179055506000620000d8620002e1565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000138620002e1565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36200019833670de0b6b3a7640000620002e5565b600783905562ed4e00808401600855600d849055600e849055620001d39068bdbc41e0348b30000090620003f4602090811b6200116c17901c565b600955620001fa688778977bbb052c000062ed4e00620003f4602090811b6200116c17901c565b600a556001600160a01b0381166200024f576040805162461bcd60e51b81526020600482015260136024820152720416464726573732063616e6e6f74206265203606c1b604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b03838116919091179091558216620002b9576040805162461bcd60e51b81526020600482015260136024820152720416464726573732063616e6e6f74206265203606c1b604482015290519081900360640190fd5b50600b80546001600160a01b0319166001600160a01b03929092169190911790555062000560565b3390565b6001600160a01b03821662000341576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200034f600083836200045d565b6200036b816002546200046260201b620011d31790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200039e918390620011d362000462821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008082116200044b576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816200045557fe5b049392505050565b505050565b600082820183811015620004bd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200050757805160ff191683800117855562000537565b8280016001018555821562000537579182015b82811115620005375782518255916020019190600101906200051a565b506200054592915062000549565b5090565b5b808211156200054557600081556001016200054a565b611aa580620005706000396000f3fe608060405234801561001057600080fd5b50600436106102ac5760003560e01c806344cdc4541161017b57806395d89b41116100d8578063abb4b1be1161008c578063dd62ed3e11610071578063dd62ed3e1461063d578063f2fde38b1461066b578063f746b71814610691576102ac565b8063abb4b1be1461060f578063ae4db91914610617576102ac565b8063a06160fd116100bd578063a06160fd146105af578063a457c2d7146105b7578063a9059cbb146105e3576102ac565b806395d89b411461059f5780639662676c146105a7576102ac565b806370a082311161012f57806378e979251161011457806378e979251461056357806379cc67901461056b5780638da5cb5b14610597576102ac565b806370a0823114610535578063715018a61461055b576102ac565b80634f337dd5116101605780634f337dd5146104ef57806354575af4146104f7578063570ca7351461052d576102ac565b806344cdc454146104df5780634cfc4d30146104e7576102ac565b80632c07a6241161022957806339509351116101dd57806342966c68116101c257806342966c68146104b25780634390d2a8146104cf5780634456eda2146104d7576102ac565b8063395093511461047e5780633bba8eed146104aa576102ac565b8063313ce5671161020e578063313ce567146104505780633197cbb61461046e578063372500ab14610476576102ac565b80632c07a624146104405780632e3367ce14610448576102ac565b8063095ea7b31161028057806318160ddd1161026557806318160ddd146103dc57806323b872dd146103e457806329605e771461041a576102ac565b8063095ea7b31461039457806317764782146103d4576102ac565b8062f380f4146102b157806304017315146102d557806306fdde03146102ef578063092193ab1461036c575b600080fd5b6102b96106b7565b604080516001600160a01b039092168252519081900360200190f35b6102dd6106c6565b60408051918252519081900360200190f35b6102f76106cc565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610331578181015183820152602001610319565b50505050905090810190601f16801561035e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103926004803603602081101561038257600080fd5b50356001600160a01b0316610763565b005b6103c0600480360360408110156103aa57600080fd5b506001600160a01b038135169060200135610883565b604080519115158252519081900360200190f35b6102dd6108a1565b6102dd6108ef565b6103c0600480360360608110156103fa57600080fd5b506001600160a01b038135811691602081013590911690604001356108f5565b6103926004803603602081101561043057600080fd5b50356001600160a01b031661097c565b6102dd6109f9565b6102dd610a3b565b610458610a41565b6040805160ff9092168252519081900360200190f35b6102dd610a4a565b610392610a50565b6103c06004803603604081101561049457600080fd5b506001600160a01b038135169060200135610adc565b6102dd610b2a565b610392600480360360208110156104c857600080fd5b5035610b37565b6102b9610b40565b6103c0610b4f565b6102dd610b75565b6102dd610b7b565b6102dd610b82565b6103926004803603606081101561050d57600080fd5b506001600160a01b03813581169160208101359160409091013516610b8f565b6102b9610c60565b6102dd6004803603602081101561054b57600080fd5b50356001600160a01b0316610c6f565b610392610c8a565b6102dd610d5b565b6103926004803603604081101561058157600080fd5b506001600160a01b038135169060200135610d61565b6102b9610dbb565b6102f7610dcf565b6103c0610e30565b6102dd610e39565b6103c0600480360360408110156105cd57600080fd5b506001600160a01b038135169060200135610e47565b6103c0600480360360408110156105f957600080fd5b506001600160a01b038135169060200135610eaf565b6102dd610ec3565b6103926004803603602081101561062d57600080fd5b50356001600160a01b0316610ec9565b6102dd6004803603604081101561065357600080fd5b506001600160a01b0381358116916020013516610f9d565b6103926004803603602081101561068157600080fd5b50356001600160a01b0316610fc8565b610392600480360360208110156106a757600080fd5b50356001600160a01b03166110f5565b600b546001600160a01b031681565b600e5481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b505050505090505b90565b6006546001600160a01b031633146107ac5760405162461bcd60e51b81526004018080602001828103825260248152602001806119bd6024913960400191505060405180910390fd5b600f5460ff1615610804576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b03811661085f576040805162461bcd60e51b815260206004820152601660248201527f215f6661726d696e67496e63656e7469766546756e6400000000000000000000604482015290519081900360640190fd5b600f805460ff19166001179055610880816909513ea9de0243800000611234565b50565b6000610897610890611324565b8484611328565b5060015b92915050565b60085460009042908111156108b557506008545b80600d54106108c8576000915050610760565b6108e96009546108e3600d548461141490919063ffffffff16565b90611471565b91505090565b60025490565b60006109028484846114ca565b6109728461090e611324565b61096d85604051806060016040528060288152602001611971602891396001600160a01b038a1660009081526001602052604081209061094c611324565b6001600160a01b031681526020810191909152604001600020549190611625565b611328565b5060019392505050565b610984611324565b6001600160a01b0316610995610dbb565b6001600160a01b0316146109f0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610880816116bc565b6008546000904290811115610a0d57506008545b80600e5410610a20576000915050610760565b6108e9600a546108e3600e548461141490919063ffffffff16565b600a5481565b60055460ff1690565b60085481565b6000610a5a6108a1565b9050600081118015610a765750600b546001600160a01b031615155b15610a9657600b54610a91906001600160a01b031682611234565b42600d555b610a9e6109f9565b9050600081118015610aba5750600c546001600160a01b031615155b1561088057600c54610ad5906001600160a01b031682611234565b42600e5550565b6000610897610ae9611324565b8461096d8560016000610afa611324565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906111d3565b68bdbc41e0348b30000081565b61088081611766565b600c546001600160a01b031681565b6006546000906001600160a01b0316610b66611324565b6001600160a01b031614905090565b60095481565b62ed4e0081565b688778977bbb052c000081565b6006546001600160a01b03163314610bd85760405162461bcd60e51b81526004018080602001828103825260248152602001806119bd6024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610c2f57600080fd5b505af1158015610c43573d6000803e3d6000fd5b505050506040513d6020811015610c5957600080fd5b5050505050565b6006546001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b610c92611324565b6001600160a01b0316610ca3610dbb565b6001600160a01b031614610cfe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805474ffffffffffffffffffffffffffffffffffffffff0019169055565b60075481565b6000610d988260405180606001604052806024815260200161199960249139610d9186610d8c611324565b610f9d565b9190611625565b9050610dac83610da6611324565b83611328565b610db68383611773565b505050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107585780601f1061072d57610100808354040283529160200191610758565b600f5460ff1681565b6909513ea9de024380000081565b6000610897610e54611324565b8461096d85604051806060016040528060258152602001611a4b6025913960016000610e7e611324565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611625565b6000610897610ebc611324565b84846114ca565b600d5481565b600c546001600160a01b03163314610f11576040805162461bcd60e51b8152602060048083019190915260248201526310b232bb60e11b604482015290519081900360640190fd5b6001600160a01b038116610f6e576040805162461bcd60e51b8152602060048083019190915260248201527f7a65726f00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610fd0611324565b6001600160a01b0316610fe1610dbb565b6001600160a01b03161461103c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166110815760405162461bcd60e51b81526004018080602001828103825260268152602001806118b56026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600c546001600160a01b0316331461113d576040805162461bcd60e51b8152602060048083019190915260248201526310b232bb60e11b604482015290519081900360640190fd5b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60008082116111c2576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816111cb57fe5b049392505050565b60008282018381101561122d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661128f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61129b60008383610db6565b6002546112a890826111d3565b6002556001600160a01b0382166000908152602081905260409020546112ce90826111d3565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b6001600160a01b03831661136d5760405162461bcd60e51b8152600401808060200182810382526024815260200180611a276024913960400191505060405180910390fd5b6001600160a01b0382166113b25760405162461bcd60e51b81526004018080602001828103825260228152602001806118db6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008282111561146b576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826114805750600061089b565b8282028284828161148d57fe5b041461122d5760405162461bcd60e51b81526004018080602001828103825260218152602001806119506021913960400191505060405180910390fd5b6001600160a01b03831661150f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611a026025913960400191505060405180910390fd5b6001600160a01b0382166115545760405162461bcd60e51b81526004018080602001828103825260238152602001806118706023913960400191505060405180910390fd5b61155f838383610db6565b61159c816040518060600160405280602681526020016118fd602691396001600160a01b0386166000908152602081905260409020549190611625565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115cb90826111d3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116b45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611679578181015183820152602001611661565b50505050905090810190601f1680156116a65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166117015760405162461bcd60e51b815260040180806020018281038252602d815260200180611923602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610880611771611324565b825b6001600160a01b0382166117b85760405162461bcd60e51b81526004018080602001828103825260218152602001806119e16021913960400191505060405180910390fd5b6117c482600083610db6565b61180181604051806060016040528060228152602001611893602291396001600160a01b0385166000908152602081905260409020549190611625565b6001600160a01b0383166000908152602081905260409020556002546118279082611414565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6ca8d1db0caab6c48a285505b6c2084a65ca1c490828a3fcca6b0f23890b1e564736f6c634300060c00330000000000000000000000000000000000000000000000000000000067c5a7d0000000000000000000000000d5794185aafff4b41a044ed985cadb2d22c9f530000000000000000000000000c6568bf26a3ef8c2c72cd73a4093b77616dedf64

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102ac5760003560e01c806344cdc4541161017b57806395d89b41116100d8578063abb4b1be1161008c578063dd62ed3e11610071578063dd62ed3e1461063d578063f2fde38b1461066b578063f746b71814610691576102ac565b8063abb4b1be1461060f578063ae4db91914610617576102ac565b8063a06160fd116100bd578063a06160fd146105af578063a457c2d7146105b7578063a9059cbb146105e3576102ac565b806395d89b411461059f5780639662676c146105a7576102ac565b806370a082311161012f57806378e979251161011457806378e979251461056357806379cc67901461056b5780638da5cb5b14610597576102ac565b806370a0823114610535578063715018a61461055b576102ac565b80634f337dd5116101605780634f337dd5146104ef57806354575af4146104f7578063570ca7351461052d576102ac565b806344cdc454146104df5780634cfc4d30146104e7576102ac565b80632c07a6241161022957806339509351116101dd57806342966c68116101c257806342966c68146104b25780634390d2a8146104cf5780634456eda2146104d7576102ac565b8063395093511461047e5780633bba8eed146104aa576102ac565b8063313ce5671161020e578063313ce567146104505780633197cbb61461046e578063372500ab14610476576102ac565b80632c07a624146104405780632e3367ce14610448576102ac565b8063095ea7b31161028057806318160ddd1161026557806318160ddd146103dc57806323b872dd146103e457806329605e771461041a576102ac565b8063095ea7b31461039457806317764782146103d4576102ac565b8062f380f4146102b157806304017315146102d557806306fdde03146102ef578063092193ab1461036c575b600080fd5b6102b96106b7565b604080516001600160a01b039092168252519081900360200190f35b6102dd6106c6565b60408051918252519081900360200190f35b6102f76106cc565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610331578181015183820152602001610319565b50505050905090810190601f16801561035e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103926004803603602081101561038257600080fd5b50356001600160a01b0316610763565b005b6103c0600480360360408110156103aa57600080fd5b506001600160a01b038135169060200135610883565b604080519115158252519081900360200190f35b6102dd6108a1565b6102dd6108ef565b6103c0600480360360608110156103fa57600080fd5b506001600160a01b038135811691602081013590911690604001356108f5565b6103926004803603602081101561043057600080fd5b50356001600160a01b031661097c565b6102dd6109f9565b6102dd610a3b565b610458610a41565b6040805160ff9092168252519081900360200190f35b6102dd610a4a565b610392610a50565b6103c06004803603604081101561049457600080fd5b506001600160a01b038135169060200135610adc565b6102dd610b2a565b610392600480360360208110156104c857600080fd5b5035610b37565b6102b9610b40565b6103c0610b4f565b6102dd610b75565b6102dd610b7b565b6102dd610b82565b6103926004803603606081101561050d57600080fd5b506001600160a01b03813581169160208101359160409091013516610b8f565b6102b9610c60565b6102dd6004803603602081101561054b57600080fd5b50356001600160a01b0316610c6f565b610392610c8a565b6102dd610d5b565b6103926004803603604081101561058157600080fd5b506001600160a01b038135169060200135610d61565b6102b9610dbb565b6102f7610dcf565b6103c0610e30565b6102dd610e39565b6103c0600480360360408110156105cd57600080fd5b506001600160a01b038135169060200135610e47565b6103c0600480360360408110156105f957600080fd5b506001600160a01b038135169060200135610eaf565b6102dd610ec3565b6103926004803603602081101561062d57600080fd5b50356001600160a01b0316610ec9565b6102dd6004803603604081101561065357600080fd5b506001600160a01b0381358116916020013516610f9d565b6103926004803603602081101561068157600080fd5b50356001600160a01b0316610fc8565b610392600480360360208110156106a757600080fd5b50356001600160a01b03166110f5565b600b546001600160a01b031681565b600e5481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107585780601f1061072d57610100808354040283529160200191610758565b820191906000526020600020905b81548152906001019060200180831161073b57829003601f168201915b505050505090505b90565b6006546001600160a01b031633146107ac5760405162461bcd60e51b81526004018080602001828103825260248152602001806119bd6024913960400191505060405180910390fd5b600f5460ff1615610804576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b03811661085f576040805162461bcd60e51b815260206004820152601660248201527f215f6661726d696e67496e63656e7469766546756e6400000000000000000000604482015290519081900360640190fd5b600f805460ff19166001179055610880816909513ea9de0243800000611234565b50565b6000610897610890611324565b8484611328565b5060015b92915050565b60085460009042908111156108b557506008545b80600d54106108c8576000915050610760565b6108e96009546108e3600d548461141490919063ffffffff16565b90611471565b91505090565b60025490565b60006109028484846114ca565b6109728461090e611324565b61096d85604051806060016040528060288152602001611971602891396001600160a01b038a1660009081526001602052604081209061094c611324565b6001600160a01b031681526020810191909152604001600020549190611625565b611328565b5060019392505050565b610984611324565b6001600160a01b0316610995610dbb565b6001600160a01b0316146109f0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610880816116bc565b6008546000904290811115610a0d57506008545b80600e5410610a20576000915050610760565b6108e9600a546108e3600e548461141490919063ffffffff16565b600a5481565b60055460ff1690565b60085481565b6000610a5a6108a1565b9050600081118015610a765750600b546001600160a01b031615155b15610a9657600b54610a91906001600160a01b031682611234565b42600d555b610a9e6109f9565b9050600081118015610aba5750600c546001600160a01b031615155b1561088057600c54610ad5906001600160a01b031682611234565b42600e5550565b6000610897610ae9611324565b8461096d8560016000610afa611324565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906111d3565b68bdbc41e0348b30000081565b61088081611766565b600c546001600160a01b031681565b6006546000906001600160a01b0316610b66611324565b6001600160a01b031614905090565b60095481565b62ed4e0081565b688778977bbb052c000081565b6006546001600160a01b03163314610bd85760405162461bcd60e51b81526004018080602001828103825260248152602001806119bd6024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610c2f57600080fd5b505af1158015610c43573d6000803e3d6000fd5b505050506040513d6020811015610c5957600080fd5b5050505050565b6006546001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b610c92611324565b6001600160a01b0316610ca3610dbb565b6001600160a01b031614610cfe576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805474ffffffffffffffffffffffffffffffffffffffff0019169055565b60075481565b6000610d988260405180606001604052806024815260200161199960249139610d9186610d8c611324565b610f9d565b9190611625565b9050610dac83610da6611324565b83611328565b610db68383611773565b505050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107585780601f1061072d57610100808354040283529160200191610758565b600f5460ff1681565b6909513ea9de024380000081565b6000610897610e54611324565b8461096d85604051806060016040528060258152602001611a4b6025913960016000610e7e611324565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611625565b6000610897610ebc611324565b84846114ca565b600d5481565b600c546001600160a01b03163314610f11576040805162461bcd60e51b8152602060048083019190915260248201526310b232bb60e11b604482015290519081900360640190fd5b6001600160a01b038116610f6e576040805162461bcd60e51b8152602060048083019190915260248201527f7a65726f00000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610fd0611324565b6001600160a01b0316610fe1610dbb565b6001600160a01b03161461103c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166110815760405162461bcd60e51b81526004018080602001828103825260268152602001806118b56026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600c546001600160a01b0316331461113d576040805162461bcd60e51b8152602060048083019190915260248201526310b232bb60e11b604482015290519081900360640190fd5b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60008082116111c2576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816111cb57fe5b049392505050565b60008282018381101561122d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661128f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61129b60008383610db6565b6002546112a890826111d3565b6002556001600160a01b0382166000908152602081905260409020546112ce90826111d3565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b6001600160a01b03831661136d5760405162461bcd60e51b8152600401808060200182810382526024815260200180611a276024913960400191505060405180910390fd5b6001600160a01b0382166113b25760405162461bcd60e51b81526004018080602001828103825260228152602001806118db6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008282111561146b576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826114805750600061089b565b8282028284828161148d57fe5b041461122d5760405162461bcd60e51b81526004018080602001828103825260218152602001806119506021913960400191505060405180910390fd5b6001600160a01b03831661150f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611a026025913960400191505060405180910390fd5b6001600160a01b0382166115545760405162461bcd60e51b81526004018080602001828103825260238152602001806118706023913960400191505060405180910390fd5b61155f838383610db6565b61159c816040518060600160405280602681526020016118fd602691396001600160a01b0386166000908152602081905260409020549190611625565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115cb90826111d3565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116b45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611679578181015183820152602001611661565b50505050905090810190601f1680156116a65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166117015760405162461bcd60e51b815260040180806020018281038252602d815260200180611923602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610880611771611324565b825b6001600160a01b0382166117b85760405162461bcd60e51b81526004018080602001828103825260218152602001806119e16021913960400191505060405180910390fd5b6117c482600083610db6565b61180181604051806060016040528060228152602001611893602291396001600160a01b0385166000908152602081905260409020549190611625565b6001600160a01b0383166000908152602081905260409020556002546118279082611414565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6ca8d1db0caab6c48a285505b6c2084a65ca1c490828a3fcca6b0f23890b1e564736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000067c5a7d0000000000000000000000000d5794185aafff4b41a044ed985cadb2d22c9f530000000000000000000000000c6568bf26a3ef8c2c72cd73a4093b77616dedf64

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1741006800
Arg [1] : _communityFund (address): 0xD5794185AAFFf4b41A044ed985Cadb2d22C9F530
Arg [2] : _devFund (address): 0xc6568bf26a3EF8C2c72cD73A4093B77616DedF64

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000067c5a7d0
Arg [1] : 000000000000000000000000d5794185aafff4b41a044ed985cadb2d22c9f530
Arg [2] : 000000000000000000000000c6568bf26a3ef8c2c72cd73a4093b77616dedf64


Deployed Bytecode Sourcemap

27058:3756:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27620:28;;;:::i;:::-;;;;-1:-1:-1;;;;;27620:28:0;;;;;;;;;;;;;;27732:33;;;:::i;:::-;;;;;;;;;;;;;;;;16886:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30177:348;;;;;;;;;;;;;;;;-1:-1:-1;30177:348:0;-1:-1:-1;;;;;30177:348:0;;:::i;:::-;;19032:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19032:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28947:308;;;:::i;17985:108::-;;;:::i;19683:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19683:321:0;;;;;;;;;;;;;;;;;:::i;6867:115::-;;;;;;;;;;;;;;;;-1:-1:-1;6867:115:0;-1:-1:-1;;;;;6867:115:0;;:::i;29263:285::-;;;:::i;27579:32::-;;;:::i;17829:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27503:22;;;:::i;29635:462::-;;;:::i;20413:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20413:218:0;;;;;;;;:::i;27269:67::-;;;:::i;30533:83::-;;;;;;;;;;;;;;;;-1:-1:-1;30533:83:0;;:::i;27655:22::-;;;:::i;6759:100::-;;;:::i;27534:38::-;;;:::i;27413:51::-;;;:::i;27343:61::-;;;:::i;30624:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30624:187:0;;;;;;;;;;;;;;;;;:::i;6531:85::-;;;:::i;18156:127::-;;;;;;;;;;;;;;;;-1:-1:-1;18156:127:0;-1:-1:-1;;;;;18156:127:0;;:::i;5500:148::-;;;:::i;27472:24::-;;;:::i;26692:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26692:295:0;;;;;;;;:::i;4849:87::-;;;:::i;17096:95::-;;;:::i;27774:41::-;;;:::i;27184:68::-;;;:::i;21134:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21134:269:0;;;;;;;;:::i;18496:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18496:175:0;;;;;;;;:::i;27686:39::-;;;:::i;28756:183::-;;;;;;;;;;;;;;;;-1:-1:-1;28756:183:0;-1:-1:-1;;;;;28756:183:0;;:::i;18734:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18734:151:0;;;;;;;;;;:::i;5803:244::-;;;;;;;;;;;;;;;;-1:-1:-1;5803:244:0;-1:-1:-1;;;;;5803:244:0;;:::i;28592:156::-;;;;;;;;;;;;;;;;-1:-1:-1;28592:156:0;-1:-1:-1;;;;;28592:156:0;;:::i;27620:28::-;;;-1:-1:-1;;;;;27620:28:0;;:::o;27732:33::-;;;;:::o;16886:91::-;16964:5;16957:12;;;;;;;;-1:-1:-1;;16957:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16931:13;;16957:12;;16964:5;;16957:12;;16964:5;16957:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16886:91;;:::o;30177:348::-;6667:9;;-1:-1:-1;;;;;6667:9:0;6680:10;6667:23;6659:72;;;;-1:-1:-1;;;6659:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30276:21:::1;::::0;::::1;;30275:22;30267:59;;;::::0;;-1:-1:-1;;;30267:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;30345:35:0;::::1;30337:70;;;::::0;;-1:-1:-1;;;30337:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;30418:21;:28:::0;;-1:-1:-1;;30418:28:0::1;30442:4;30418:28;::::0;;30457:60:::1;30463:21:::0;27241:11:::1;30457:5;:60::i;:::-;30177:348:::0;:::o;19032:169::-;19115:4;19132:39;19141:12;:10;:12::i;:::-;19155:7;19164:6;19132:8;:39::i;:::-;-1:-1:-1;19189:4:0;19032:169;;;;;:::o;28947:308::-;29082:7;;29001:16;;29045:15;;29075:14;;29071:34;;;-1:-1:-1;29098:7:0;;29071:34;29148:4;29120:24;;:32;29116:46;;29161:1;29154:8;;;;;29116:46;29184:63;29223:23;;29184:34;29193:24;;29184:4;:8;;:34;;;;:::i;:::-;:38;;:63::i;:::-;29173:74;;28947:308;;:::o;17985:108::-;18073:12;;17985:108;:::o;19683:321::-;19789:4;19806:36;19816:6;19824:9;19835:6;19806:9;:36::i;:::-;19853:121;19862:6;19870:12;:10;:12::i;:::-;19884:89;19922:6;19884:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19884:19:0;;;;;;:11;:19;;;;;;19904:12;:10;:12::i;:::-;-1:-1:-1;;;;;19884:33:0;;;;;;;;;;;;-1:-1:-1;19884:33:0;;;:89;:37;:89::i;:::-;19853:8;:121::i;:::-;-1:-1:-1;19992:4:0;19683:321;;;;;:::o;6867:115::-;5080:12;:10;:12::i;:::-;-1:-1:-1;;;;;5069:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5069:23:0;;5061:68;;;;;-1:-1:-1;;;5061:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6943:31:::1;6961:12;6943:17;:31::i;29263:285::-:0;29393:7;;29312:16;;29356:15;;29386:14;;29382:34;;;-1:-1:-1;29409:7:0;;29382:34;29453:4;29431:18;;:26;29427:40;;29466:1;29459:8;;;;;29427:40;29489:51;29522:17;;29489:28;29498:18;;29489:4;:8;;:28;;;;:::i;27579:32::-;;;;:::o;17829:91::-;17903:9;;;;17829:91;:::o;27503:22::-;;;;:::o;29635:462::-;29679:16;29698:23;:21;:23::i;:::-;29679:42;;29747:1;29736:8;:12;:43;;;;-1:-1:-1;29752:13:0;;-1:-1:-1;;;;;29752:13:0;:27;;29736:43;29732:163;;;29802:13;;29796:30;;-1:-1:-1;;;;;29802:13:0;29817:8;29796:5;:30::i;:::-;29868:15;29841:24;:42;29732:163;29916:18;:16;:18::i;:::-;29905:29;;29960:1;29949:8;:12;:37;;;;-1:-1:-1;29965:7:0;;-1:-1:-1;;;;;29965:7:0;:21;;29949:37;29945:145;;;30009:7;;30003:24;;-1:-1:-1;;;;;30009:7:0;30018:8;30003:5;:24::i;:::-;30063:15;30042:18;:36;29635:462;:::o;20413:218::-;20501:4;20518:83;20527:12;:10;:12::i;:::-;20541:7;20550:50;20589:10;20550:11;:25;20562:12;:10;:12::i;:::-;-1:-1:-1;;;;;20550:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20550:25:0;;;:34;;;;;;;;;;;:38;:50::i;27269:67::-;27326:10;27269:67;:::o;30533:83::-;30590:18;30601:6;30590:10;:18::i;27655:22::-;;;-1:-1:-1;;;;;27655:22:0;;:::o;6759:100::-;6842:9;;6802:4;;-1:-1:-1;;;;;6842:9:0;6826:12;:10;:12::i;:::-;-1:-1:-1;;;;;6826:25:0;;6819:32;;6759:100;:::o;27534:38::-;;;;:::o;27413:51::-;27456:8;27413:51;:::o;27343:61::-;27394:10;27343:61;:::o;30624:187::-;6667:9;;-1:-1:-1;;;;;6667:9:0;6680:10;6667:23;6659:72;;;;-1:-1:-1;;;6659:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30774:6:::1;-1:-1:-1::0;;;;;30774:15:0::1;;30790:3;30795:7;30774:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;30774:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;30624:187:0:o;6531:85::-;6599:9;;-1:-1:-1;;;;;6599:9:0;6531:85;:::o;18156:127::-;-1:-1:-1;;;;;18257:18:0;18230:7;18257:18;;;;;;;;;;;;18156:127::o;5500:148::-;5080:12;:10;:12::i;:::-;-1:-1:-1;;;;;5069:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5069:23:0;;5061:68;;;;;-1:-1:-1;;;5061:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5591:6:::1;::::0;5570:40:::1;::::0;5607:1:::1;::::0;5591:6:::1;::::0;::::1;-1:-1:-1::0;;;;;5591:6:0::1;::::0;5570:40:::1;::::0;5607:1;;5570:40:::1;5621:6;:19:::0;;-1:-1:-1;;5621:19:0::1;::::0;;5500:148::o;27472:24::-;;;;:::o;26692:295::-;26769:26;26798:84;26835:6;26798:84;;;;;;;;;;;;;;;;;:32;26808:7;26817:12;:10;:12::i;:::-;26798:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;26769:113;;26895:51;26904:7;26913:12;:10;:12::i;:::-;26927:18;26895:8;:51::i;:::-;26957:22;26963:7;26972:6;26957:5;:22::i;:::-;26692:295;;;:::o;4849:87::-;4922:6;;;;;-1:-1:-1;;;;;4922:6:0;;4849:87::o;17096:95::-;17176:7;17169:14;;;;;;;;-1:-1:-1;;17169:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17143:13;;17169:14;;17176:7;;17169:14;;17176:7;17169:14;;;;;;;;;;;;;;;;;;;;;;;;27774:41;;;;;;:::o;27184:68::-;27241:11;27184:68;:::o;21134:269::-;21227:4;21244:129;21253:12;:10;:12::i;:::-;21267:7;21276:96;21315:15;21276:96;;;;;;;;;;;;;;;;;:11;:25;21288:12;:10;:12::i;:::-;-1:-1:-1;;;;;21276:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21276:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18496:175::-;18582:4;18599:42;18609:12;:10;:12::i;:::-;18623:9;18634:6;18599:9;:42::i;27686:39::-;;;;:::o;28756:183::-;28836:7;;-1:-1:-1;;;;;28836:7:0;28822:10;:21;28814:38;;;;;-1:-1:-1;;;28814:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;28814:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28871:22:0;;28863:39;;;;;-1:-1:-1;;;28863:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28913:7;:18;;-1:-1:-1;;28913:18:0;-1:-1:-1;;;;;28913:18:0;;;;;;;;;;28756:183::o;18734:151::-;-1:-1:-1;;;;;18850:18:0;;;18823:7;18850:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18734:151::o;5803:244::-;5080:12;:10;:12::i;:::-;-1:-1:-1;;;;;5069:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5069:23:0;;5061:68;;;;;-1:-1:-1;;;5061:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5892:22:0;::::1;5884:73;;;;-1:-1:-1::0;;;5884:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5994:6;::::0;5973:38:::1;::::0;-1:-1:-1;;;;;5973:38:0;;::::1;::::0;5994:6:::1;::::0;::::1;;::::0;5973:38:::1;::::0;;;::::1;6022:6;:17:::0;;-1:-1:-1;;;;;6022:17:0;;::::1;;;-1:-1:-1::0;;6022:17:0;;::::1;::::0;;;::::1;::::0;;5803:244::o;28592:156::-;28683:7;;-1:-1:-1;;;;;28683:7:0;28669:10;:21;28661:38;;;;;-1:-1:-1;;;28661:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;28661:38:0;;;;;;;;;;;;;;;28710:13;:30;;-1:-1:-1;;28710:30:0;-1:-1:-1;;;;;28710:30:0;;;;;;;;;;28592:156::o;11628:153::-;11686:7;11718:1;11714;:5;11706:44;;;;;-1:-1:-1;;;11706:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11772:1;11768;:5;;;;;;;11628:153;-1:-1:-1;;;11628:153:0:o;10051:179::-;10109:7;10141:5;;;10165:6;;;;10157:46;;;;;-1:-1:-1;;;10157:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10221:1;10051:179;-1:-1:-1;;;10051:179:0:o;22714:378::-;-1:-1:-1;;;;;22798:21:0;;22790:65;;;;;-1:-1:-1;;;22790:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22868:49;22897:1;22901:7;22910:6;22868:20;:49::i;:::-;22945:12;;:24;;22962:6;22945:16;:24::i;:::-;22930:12;:39;-1:-1:-1;;;;;23001:18:0;;:9;:18;;;;;;;;;;;:30;;23024:6;23001:22;:30::i;:::-;-1:-1:-1;;;;;22980:18:0;;:9;:18;;;;;;;;;;;:51;;;;23047:37;;;;;;;22980:18;;:9;;23047:37;;;;;;;;;;22714:378;;:::o;3384:106::-;3472:10;3384:106;:::o;24281:346::-;-1:-1:-1;;;;;24383:19:0;;24375:68;;;;-1:-1:-1;;;24375:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24462:21:0;;24454:68;;;;-1:-1:-1;;;24454:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24535:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24587:32;;;;;;;;;;;;;;;;;24281:346;;;:::o;10513:158::-;10571:7;10604:1;10599;:6;;10591:49;;;;;-1:-1:-1;;;10591:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10658:5:0;;;10513:158::o;10930:220::-;10988:7;11012:6;11008:20;;-1:-1:-1;11027:1:0;11020:8;;11008:20;11051:5;;;11055:1;11051;:5;:1;11075:5;;;;;:10;11067:56;;;;-1:-1:-1;;;11067:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21893:539;-1:-1:-1;;;;;21999:20:0;;21991:70;;;;-1:-1:-1;;;21991:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22080:23:0;;22072:71;;;;-1:-1:-1;;;22072:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22156:47;22177:6;22185:9;22196:6;22156:20;:47::i;:::-;22236:71;22258:6;22236:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22236:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22216:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22341:20;;;;;;;:32;;22366:6;22341:24;:32::i;:::-;-1:-1:-1;;;;;22318:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22389:35;;;;;;;22318:20;;22389:35;;;;;;;;;;;;;21893:539;;;:::o;12878:166::-;12964:7;13000:12;12992:6;;;;12984:29;;;;-1:-1:-1;;;12984:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;13031:5:0;;;12878:166::o;6990:257::-;-1:-1:-1;;;;;7067:26:0;;7059:84;;;;-1:-1:-1;;;7059:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7159:45;;-1:-1:-1;;;;;7159:45:0;;;7187:1;;7159:45;;7187:1;;7159:45;7215:9;:24;;-1:-1:-1;;7215:24:0;-1:-1:-1;;;;;7215:24:0;;;;;;;;;;6990:257::o;26282:91::-;26338:27;26344:12;:10;:12::i;:::-;26358:6;23425:418;-1:-1:-1;;;;;23509:21:0;;23501:67;;;;-1:-1:-1;;;23501:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23581:49;23602:7;23619:1;23623:6;23581:20;:49::i;:::-;23664:68;23687:6;23664:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23664:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;23643:18:0;;:9;:18;;;;;;;;;;:89;23758:12;;:24;;23775:6;23758:16;:24::i;:::-;23743:12;:39;23798:37;;;;;;;;23824:1;;-1:-1:-1;;;;;23798:37:0;;;;;;;;;;;;23425:418;;:::o

Swarm Source

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