FTM Price: $0.548558 (-16.93%)
 

Overview

Max Total Supply

99,999.999999999990559952 DSHARE

Holders

1,022 (0.00%)

Total Transfers

-

Market

Price

$0.0117 @ 0.021370 FTM

Onchain Market Cap

$1,172.28

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

An algorithmic stablecoin on the Fantom Opera blockchain, pegged to the price of 1 TOMB

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:
Dshare

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-02-25
*/

/**
 *Submitted for verification at FtmScan.com on 2022-02-02
*/

// SPDX-License-Identifier: MIT

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/utils/[email protected]



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/token/ERC20/[email protected]



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/token/ERC20/[email protected]



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/[email protected]



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 @openzeppelin/contracts/GSN/[email protected]



pragma solidity >=0.6.0 <0.8.0;


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



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 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_;
    }
}
contract Dshare is ERC20Burnable, Operator {
    using SafeMath for uint256;

    // TOTAL MAX SUPPLY = 100,000 DSHARE
    uint256 public constant FARMING_POOL_REWARD_ALLOCATION = 80000 ether;
    uint256 public constant COMMUNITY_FUND_POOL_ALLOCATION = 15000 ether;
    uint256 public constant DEV_FUND_POOL_ALLOCATION = 4700 ether;

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

    uint256 public communityFundRewardRate;
    uint256 public devFundRewardRate;

    address public communityFund;
    address public devFund1;
    address public devFund2;
    address public devFund3;
    address public devFund4;

    uint256 public communityFundLastClaimed;
    uint256 public devFundLastClaimed;

    bool public rewardPoolDistributed = false;

    constructor(uint256 _startTime, address _communityFund, address _devFund1, address _devFund2, address _devFund3, address _devFund4) public ERC20("DSHARE", "DSHARE") {
        _mint(msg.sender, 300 ether); // mint 1 DSHARE 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(_devFund1 != address(0), "Address cannot be 0");
        require(_devFund2 != address(0), "Address cannot be 0");
        require(_devFund3 != address(0), "Address cannot be 0");
        require(_devFund4 != address(0), "Address cannot be 0");
        devFund1 = _devFund1;
        devFund2 = _devFund2;
        devFund3 = _devFund3;
        devFund4 = _devFund4;

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

    function setTreasuryFund(address _communityFund) external onlyOwner {
        require(_communityFund != address(0), "zero");
        communityFund = _communityFund;
    }

    function setDevFund(uint parameter, address _devFund) external onlyOwner {
        require(_devFund != address(0), "zero"); 
        if (parameter == 1) {
            devFund1 = _devFund;
        } else if (parameter == 2) {
            devFund2 = _devFund;
        } else if (parameter == 3) {
            devFund3 = _devFund;
        } else if (parameter == 4) {
            devFund4 = _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 onlyOwner {
        uint256 _pending = unclaimedTreasuryFund();
        if (_pending > 0 && communityFund != address(0)) {
            _mint(communityFund, _pending);
            communityFundLastClaimed = block.timestamp;
        }
        _pending = unclaimedDevFund();
        if (_pending > 0 && devFund1 != address(0) && devFund2 != address(0) && devFund3 != address(0) && devFund4 != address(0)) {
            _mint(devFund1, _pending.div(4));
            _mint(devFund2, _pending.div(4));
            _mint(devFund3, _pending.div(4));
            _mint(devFund4, _pending.div(4));
            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":"_devFund1","type":"address"},{"internalType":"address","name":"_devFund2","type":"address"},{"internalType":"address","name":"_devFund3","type":"address"},{"internalType":"address","name":"_devFund4","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":"devFund1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund4","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":"uint256","name":"parameter","type":"uint256"},{"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"}]

60806040526012805460ff191690553480156200001b57600080fd5b50604051620022bb380380620022bb833981810160405260c08110156200004157600080fd5b5080516020808301516040808501516060860151608087015160a0909701518351808501855260068082526544534841524560d01b828901818152875180890190985291875297860197909752805197989597939692959491939092620000ac9160039190620005cb565b508051620000c2906004906020840190620005cb565b50506005805460ff19166012179055506000620000de620003e8565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200013e620003e8565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a36200019f33681043561a8829300000620003ec565b600786905562c5c10080870160085560108790556011879055620001db9069032d26d12e980b60000090620004fb602090811b620012d817901c565b6009556200020268fec99a4a552ff0000062c5c100620004fb602090811b620012d817901c565b600a556001600160a01b03841662000250576040805162461bcd60e51b815260206004820152601360248201526000805160206200229b833981519152604482015290519081900360640190fd5b6001600160a01b0383166200029b576040805162461bcd60e51b815260206004820152601360248201526000805160206200229b833981519152604482015290519081900360640190fd5b6001600160a01b038216620002e6576040805162461bcd60e51b815260206004820152601360248201526000805160206200229b833981519152604482015290519081900360640190fd5b6001600160a01b03811662000331576040805162461bcd60e51b815260206004820152601360248201526000805160206200229b833981519152604482015290519081900360640190fd5b600c80546001600160a01b03199081166001600160a01b0387811691909117909255600d80548216868416179055600e80548216858416179055600f80549091168383161790558516620003bb576040805162461bcd60e51b815260206004820152601360248201526000805160206200229b833981519152604482015290519081900360640190fd5b5050600b80546001600160a01b0319166001600160a01b0394909416939093179092555062000667915050565b3390565b6001600160a01b03821662000448576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004566000838362000564565b62000472816002546200056960201b6200133f1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620004a59183906200133f62000569821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600080821162000552576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816200055c57fe5b049392505050565b505050565b600082820183811015620005c4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200060e57805160ff19168380011785556200063e565b828001600101855582156200063e579182015b828111156200063e57825182559160200191906001019062000621565b506200064c92915062000650565b5090565b5b808211156200064c576000815560010162000651565b611c2480620006776000396000f3fe608060405234801561001057600080fd5b506004361061025d5760003560e01c80634cfc4d30116101465780638da5cb5b116100c3578063a9059cbb11610087578063a9059cbb146105d0578063abb4b1be146105fc578063ca9ab2ee14610604578063dd62ed3e1461060c578063f2fde38b1461063a578063f746b718146106605761025d565b80638da5cb5b1461058457806395d89b411461058c5780639662676c14610594578063a06160fd1461059c578063a457c2d7146105a45761025d565b80636dc651d91161010a5780636dc651d91461051a57806370a0823114610522578063715018a61461054857806378e979251461055057806379cc6790146105585761025d565b80634cfc4d30146104c45780634f337dd5146104cc57806354575af4146104d4578063570ca7351461050a5780636beec71a146105125761025d565b80632c07a624116101df578063387e1faf116101a3578063387e1faf1461043757806339509351146104635780633bba8eed1461048f57806342966c68146104975780634456eda2146104b457806344cdc454146104bc5761025d565b80632c07a624146103f95780632e3367ce14610401578063313ce567146104095780633197cbb614610427578063372500ab1461042f5761025d565b8063117effeb11610226578063117effeb14610385578063177647821461038d57806318160ddd1461039557806323b872dd1461039d57806329605e77146103d35761025d565b8062f380f414610262578063040173151461028657806306fdde03146102a0578063092193ab1461031d578063095ea7b314610345575b600080fd5b61026a610686565b604080516001600160a01b039092168252519081900360200190f35b61028e610695565b60408051918252519081900360200190f35b6102a861069b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e25781810151838201526020016102ca565b50505050905090810190601f16801561030f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103436004803603602081101561033357600080fd5b50356001600160a01b0316610732565b005b6103716004803603604081101561035b57600080fd5b506001600160a01b03813516906020013561084b565b604080519115158252519081900360200190f35b61026a610869565b61028e610878565b61028e6108c6565b610371600480360360608110156103b357600080fd5b506001600160a01b038135811691602081013590911690604001356108cc565b610343600480360360208110156103e957600080fd5b50356001600160a01b0316610953565b61028e6109be565b61028e610a00565b610411610a06565b6040805160ff9092168252519081900360200190f35b61028e610a0f565b610343610a15565b6103436004803603604081101561044d57600080fd5b50803590602001356001600160a01b0316610ba0565b6103716004803603604081101561047957600080fd5b506001600160a01b038135169060200135610cea565b61028e610d38565b610343600480360360208110156104ad57600080fd5b5035610d46565b610371610d4f565b61028e610d75565b61028e610d7b565b61028e610d82565b610343600480360360608110156104ea57600080fd5b506001600160a01b03813581169160208101359160409091013516610d8f565b61026a610e60565b61026a610e6f565b61026a610e7e565b61028e6004803603602081101561053857600080fd5b50356001600160a01b0316610e8d565b610343610ea8565b61028e610f5a565b6103436004803603604081101561056e57600080fd5b506001600160a01b038135169060200135610f60565b61026a610fba565b6102a8610fce565b61037161102f565b61028e611038565b610371600480360360408110156105ba57600080fd5b506001600160a01b038135169060200135611046565b610371600480360360408110156105e657600080fd5b506001600160a01b0381351690602001356110ae565b61028e6110c2565b61026a6110c8565b61028e6004803603604081101561062257600080fd5b506001600160a01b03813581169160200135166110d7565b6103436004803603602081101561065057600080fd5b50356001600160a01b0316611102565b6103436004803603602081101561067657600080fd5b50356001600160a01b0316611210565b600b546001600160a01b031681565b60115481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b505050505090505b90565b6006546001600160a01b0316331461077b5760405162461bcd60e51b8152600401808060200182810382526024815260200180611b3c6024913960400191505060405180910390fd5b60125460ff16156107d3576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038116610827576040805162461bcd60e51b81526020600482015260166024820152750857d9985c9b5a5b99d25b98d95b9d1a5d99519d5b9960521b604482015290519081900360640190fd5b6012805460ff19166001179055610848816910f0cf064dd5920000006113a0565b50565b600061085f610858611490565b8484611494565b5060015b92915050565b600d546001600160a01b031681565b600854600090429081111561088c57506008545b806010541061089f57600091505061072f565b6108c06009546108ba6010548461158090919063ffffffff16565b906115dd565b91505090565b60025490565b60006108d9848484611636565b610949846108e5611490565b61094485604051806060016040528060288152602001611ad0602891396001600160a01b038a16600090815260016020526040812090610923611490565b6001600160a01b031681526020810191909152604001600020549190611791565b611494565b5060019392505050565b61095b611490565b6001600160a01b031661096c610fba565b6001600160a01b0316146109b5576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b61084881611828565b60085460009042908111156109d257506008545b80601154106109e557600091505061072f565b6108c0600a546108ba6011548461158090919063ffffffff16565b600a5481565b60055460ff1690565b60085481565b610a1d611490565b6001600160a01b0316610a2e610fba565b6001600160a01b031614610a77576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6000610a81610878565b9050600081118015610a9d5750600b546001600160a01b031615155b15610abd57600b54610ab8906001600160a01b0316826113a0565b426010555b610ac56109be565b9050600081118015610ae15750600c546001600160a01b031615155b8015610af75750600d546001600160a01b031615155b8015610b0d5750600e546001600160a01b031615155b8015610b235750600f546001600160a01b031615155b1561084857600c54610b48906001600160a01b0316610b438360046112d8565b6113a0565b600d54610b63906001600160a01b0316610b438360046112d8565b600e54610b7e906001600160a01b0316610b438360046112d8565b600f54610b99906001600160a01b0316610b438360046112d8565b4260115550565b610ba8611490565b6001600160a01b0316610bb9610fba565b6001600160a01b031614610c02576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6001600160a01b038116610c46576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b8160011415610c6f57600c80546001600160a01b0319166001600160a01b038316179055610ce6565b8160021415610c9857600d80546001600160a01b0319166001600160a01b038316179055610ce6565b8160031415610cc157600e80546001600160a01b0319166001600160a01b038316179055610ce6565b8160041415610ce657600f80546001600160a01b0319166001600160a01b0383161790555b5050565b600061085f610cf7611490565b846109448560016000610d08611490565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061133f565b69032d26d12e980b60000081565b610848816118c5565b6006546000906001600160a01b0316610d66611490565b6001600160a01b031614905090565b60095481565b62c5c10081565b68fec99a4a552ff0000081565b6006546001600160a01b03163314610dd85760405162461bcd60e51b8152600401808060200182810382526024815260200180611b3c6024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610e2f57600080fd5b505af1158015610e43573d6000803e3d6000fd5b505050506040513d6020811015610e5957600080fd5b5050505050565b6006546001600160a01b031690565b600f546001600160a01b031681565b600c546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b610eb0611490565b6001600160a01b0316610ec1610fba565b6001600160a01b031614610f0a576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60075481565b6000610f9782604051806060016040528060248152602001611b1860249139610f9086610f8b611490565b6110d7565b9190611791565b9050610fab83610fa5611490565b83611494565b610fb583836118d2565b505050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107275780601f106106fc57610100808354040283529160200191610727565b60125460ff1681565b6910f0cf064dd59200000081565b600061085f611053611490565b8461094485604051806060016040528060258152602001611bca602591396001600061107d611490565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611791565b600061085f6110bb611490565b8484611636565b60105481565b600e546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61110a611490565b6001600160a01b031661111b610fba565b6001600160a01b031614611164576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6001600160a01b0381166111a95760405162461bcd60e51b8152600401808060200182810382526026815260200180611a146026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611218611490565b6001600160a01b0316611229610fba565b6001600160a01b031614611272576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6001600160a01b0381166112b6576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600080821161132e576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161133757fe5b049392505050565b600082820183811015611399576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113fb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61140760008383610fb5565b600254611414908261133f565b6002556001600160a01b03821660009081526020819052604090205461143a908261133f565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b6001600160a01b0383166114d95760405162461bcd60e51b8152600401808060200182810382526024815260200180611ba66024913960400191505060405180910390fd5b6001600160a01b03821661151e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a3a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000828211156115d7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826115ec57506000610863565b828202828482816115f957fe5b04146113995760405162461bcd60e51b8152600401808060200182810382526021815260200180611aaf6021913960400191505060405180910390fd5b6001600160a01b03831661167b5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b816025913960400191505060405180910390fd5b6001600160a01b0382166116c05760405162461bcd60e51b81526004018080602001828103825260238152602001806119cf6023913960400191505060405180910390fd5b6116cb838383610fb5565b61170881604051806060016040528060268152602001611a5c602691396001600160a01b0386166000908152602081905260409020549190611791565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611737908261133f565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156118205760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117e55781810151838201526020016117cd565b50505050905090810190601f1680156118125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03811661186d5760405162461bcd60e51b815260040180806020018281038252602d815260200180611a82602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6108486118d0611490565b825b6001600160a01b0382166119175760405162461bcd60e51b8152600401808060200182810382526021815260200180611b606021913960400191505060405180910390fd5b61192382600083610fb5565b611960816040518060600160405280602281526020016119f2602291396001600160a01b0385166000908152602081905260409020549190611791565b6001600160a01b0383166000908152602081905260409020556002546119869082611580565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f71c9ba10157bf720bc6ed1d3ce5bf1289a9a4c56e644e8024c975fb5aeb3b3d64736f6c634300060c0033416464726573732063616e6e6f742062652030000000000000000000000000000000000000000000000000000000000000000000000000000000000062189f490000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc817

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025d5760003560e01c80634cfc4d30116101465780638da5cb5b116100c3578063a9059cbb11610087578063a9059cbb146105d0578063abb4b1be146105fc578063ca9ab2ee14610604578063dd62ed3e1461060c578063f2fde38b1461063a578063f746b718146106605761025d565b80638da5cb5b1461058457806395d89b411461058c5780639662676c14610594578063a06160fd1461059c578063a457c2d7146105a45761025d565b80636dc651d91161010a5780636dc651d91461051a57806370a0823114610522578063715018a61461054857806378e979251461055057806379cc6790146105585761025d565b80634cfc4d30146104c45780634f337dd5146104cc57806354575af4146104d4578063570ca7351461050a5780636beec71a146105125761025d565b80632c07a624116101df578063387e1faf116101a3578063387e1faf1461043757806339509351146104635780633bba8eed1461048f57806342966c68146104975780634456eda2146104b457806344cdc454146104bc5761025d565b80632c07a624146103f95780632e3367ce14610401578063313ce567146104095780633197cbb614610427578063372500ab1461042f5761025d565b8063117effeb11610226578063117effeb14610385578063177647821461038d57806318160ddd1461039557806323b872dd1461039d57806329605e77146103d35761025d565b8062f380f414610262578063040173151461028657806306fdde03146102a0578063092193ab1461031d578063095ea7b314610345575b600080fd5b61026a610686565b604080516001600160a01b039092168252519081900360200190f35b61028e610695565b60408051918252519081900360200190f35b6102a861069b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e25781810151838201526020016102ca565b50505050905090810190601f16801561030f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103436004803603602081101561033357600080fd5b50356001600160a01b0316610732565b005b6103716004803603604081101561035b57600080fd5b506001600160a01b03813516906020013561084b565b604080519115158252519081900360200190f35b61026a610869565b61028e610878565b61028e6108c6565b610371600480360360608110156103b357600080fd5b506001600160a01b038135811691602081013590911690604001356108cc565b610343600480360360208110156103e957600080fd5b50356001600160a01b0316610953565b61028e6109be565b61028e610a00565b610411610a06565b6040805160ff9092168252519081900360200190f35b61028e610a0f565b610343610a15565b6103436004803603604081101561044d57600080fd5b50803590602001356001600160a01b0316610ba0565b6103716004803603604081101561047957600080fd5b506001600160a01b038135169060200135610cea565b61028e610d38565b610343600480360360208110156104ad57600080fd5b5035610d46565b610371610d4f565b61028e610d75565b61028e610d7b565b61028e610d82565b610343600480360360608110156104ea57600080fd5b506001600160a01b03813581169160208101359160409091013516610d8f565b61026a610e60565b61026a610e6f565b61026a610e7e565b61028e6004803603602081101561053857600080fd5b50356001600160a01b0316610e8d565b610343610ea8565b61028e610f5a565b6103436004803603604081101561056e57600080fd5b506001600160a01b038135169060200135610f60565b61026a610fba565b6102a8610fce565b61037161102f565b61028e611038565b610371600480360360408110156105ba57600080fd5b506001600160a01b038135169060200135611046565b610371600480360360408110156105e657600080fd5b506001600160a01b0381351690602001356110ae565b61028e6110c2565b61026a6110c8565b61028e6004803603604081101561062257600080fd5b506001600160a01b03813581169160200135166110d7565b6103436004803603602081101561065057600080fd5b50356001600160a01b0316611102565b6103436004803603602081101561067657600080fd5b50356001600160a01b0316611210565b600b546001600160a01b031681565b60115481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b505050505090505b90565b6006546001600160a01b0316331461077b5760405162461bcd60e51b8152600401808060200182810382526024815260200180611b3c6024913960400191505060405180910390fd5b60125460ff16156107d3576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038116610827576040805162461bcd60e51b81526020600482015260166024820152750857d9985c9b5a5b99d25b98d95b9d1a5d99519d5b9960521b604482015290519081900360640190fd5b6012805460ff19166001179055610848816910f0cf064dd5920000006113a0565b50565b600061085f610858611490565b8484611494565b5060015b92915050565b600d546001600160a01b031681565b600854600090429081111561088c57506008545b806010541061089f57600091505061072f565b6108c06009546108ba6010548461158090919063ffffffff16565b906115dd565b91505090565b60025490565b60006108d9848484611636565b610949846108e5611490565b61094485604051806060016040528060288152602001611ad0602891396001600160a01b038a16600090815260016020526040812090610923611490565b6001600160a01b031681526020810191909152604001600020549190611791565b611494565b5060019392505050565b61095b611490565b6001600160a01b031661096c610fba565b6001600160a01b0316146109b5576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b61084881611828565b60085460009042908111156109d257506008545b80601154106109e557600091505061072f565b6108c0600a546108ba6011548461158090919063ffffffff16565b600a5481565b60055460ff1690565b60085481565b610a1d611490565b6001600160a01b0316610a2e610fba565b6001600160a01b031614610a77576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6000610a81610878565b9050600081118015610a9d5750600b546001600160a01b031615155b15610abd57600b54610ab8906001600160a01b0316826113a0565b426010555b610ac56109be565b9050600081118015610ae15750600c546001600160a01b031615155b8015610af75750600d546001600160a01b031615155b8015610b0d5750600e546001600160a01b031615155b8015610b235750600f546001600160a01b031615155b1561084857600c54610b48906001600160a01b0316610b438360046112d8565b6113a0565b600d54610b63906001600160a01b0316610b438360046112d8565b600e54610b7e906001600160a01b0316610b438360046112d8565b600f54610b99906001600160a01b0316610b438360046112d8565b4260115550565b610ba8611490565b6001600160a01b0316610bb9610fba565b6001600160a01b031614610c02576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6001600160a01b038116610c46576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b8160011415610c6f57600c80546001600160a01b0319166001600160a01b038316179055610ce6565b8160021415610c9857600d80546001600160a01b0319166001600160a01b038316179055610ce6565b8160031415610cc157600e80546001600160a01b0319166001600160a01b038316179055610ce6565b8160041415610ce657600f80546001600160a01b0319166001600160a01b0383161790555b5050565b600061085f610cf7611490565b846109448560016000610d08611490565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061133f565b69032d26d12e980b60000081565b610848816118c5565b6006546000906001600160a01b0316610d66611490565b6001600160a01b031614905090565b60095481565b62c5c10081565b68fec99a4a552ff0000081565b6006546001600160a01b03163314610dd85760405162461bcd60e51b8152600401808060200182810382526024815260200180611b3c6024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610e2f57600080fd5b505af1158015610e43573d6000803e3d6000fd5b505050506040513d6020811015610e5957600080fd5b5050505050565b6006546001600160a01b031690565b600f546001600160a01b031681565b600c546001600160a01b031681565b6001600160a01b031660009081526020819052604090205490565b610eb0611490565b6001600160a01b0316610ec1610fba565b6001600160a01b031614610f0a576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60075481565b6000610f9782604051806060016040528060248152602001611b1860249139610f9086610f8b611490565b6110d7565b9190611791565b9050610fab83610fa5611490565b83611494565b610fb583836118d2565b505050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107275780601f106106fc57610100808354040283529160200191610727565b60125460ff1681565b6910f0cf064dd59200000081565b600061085f611053611490565b8461094485604051806060016040528060258152602001611bca602591396001600061107d611490565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611791565b600061085f6110bb611490565b8484611636565b60105481565b600e546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61110a611490565b6001600160a01b031661111b610fba565b6001600160a01b031614611164576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6001600160a01b0381166111a95760405162461bcd60e51b8152600401808060200182810382526026815260200180611a146026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611218611490565b6001600160a01b0316611229610fba565b6001600160a01b031614611272576040805162461bcd60e51b81526020600482018190526024820152600080516020611af8833981519152604482015290519081900360640190fd5b6001600160a01b0381166112b6576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600080821161132e576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161133757fe5b049392505050565b600082820183811015611399576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166113fb576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61140760008383610fb5565b600254611414908261133f565b6002556001600160a01b03821660009081526020819052604090205461143a908261133f565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b6001600160a01b0383166114d95760405162461bcd60e51b8152600401808060200182810382526024815260200180611ba66024913960400191505060405180910390fd5b6001600160a01b03821661151e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611a3a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000828211156115d7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000826115ec57506000610863565b828202828482816115f957fe5b04146113995760405162461bcd60e51b8152600401808060200182810382526021815260200180611aaf6021913960400191505060405180910390fd5b6001600160a01b03831661167b5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b816025913960400191505060405180910390fd5b6001600160a01b0382166116c05760405162461bcd60e51b81526004018080602001828103825260238152602001806119cf6023913960400191505060405180910390fd5b6116cb838383610fb5565b61170881604051806060016040528060268152602001611a5c602691396001600160a01b0386166000908152602081905260409020549190611791565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611737908261133f565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156118205760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117e55781810151838201526020016117cd565b50505050905090810190601f1680156118125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03811661186d5760405162461bcd60e51b815260040180806020018281038252602d815260200180611a82602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6108486118d0611490565b825b6001600160a01b0382166119175760405162461bcd60e51b8152600401808060200182810382526021815260200180611b606021913960400191505060405180910390fd5b61192382600083610fb5565b611960816040518060600160405280602281526020016119f2602291396001600160a01b0385166000908152602081905260409020549190611791565b6001600160a01b0383166000908152602081905260409020556002546119869082611580565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f71c9ba10157bf720bc6ed1d3ce5bf1289a9a4c56e644e8024c975fb5aeb3b3d64736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000062189f490000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc8170000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc817

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1645780809
Arg [1] : _communityFund (address): 0x8f23a3540579ED5463bE157Cc3A1C8737b0DC817
Arg [2] : _devFund1 (address): 0x8f23a3540579ED5463bE157Cc3A1C8737b0DC817
Arg [3] : _devFund2 (address): 0x8f23a3540579ED5463bE157Cc3A1C8737b0DC817
Arg [4] : _devFund3 (address): 0x8f23a3540579ED5463bE157Cc3A1C8737b0DC817
Arg [5] : _devFund4 (address): 0x8f23a3540579ED5463bE157Cc3A1C8737b0DC817

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000062189f49
Arg [1] : 0000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc817
Arg [2] : 0000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc817
Arg [3] : 0000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc817
Arg [4] : 0000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc817
Arg [5] : 0000000000000000000000008f23a3540579ed5463be157cc3a1c8737b0dc817


Deployed Bytecode Sourcemap

27143:4678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27696:28;;;:::i;:::-;;;;-1:-1:-1;;;;;27696:28:0;;;;;;;;;;;;;;27899:33;;;:::i;:::-;;;;;;;;;;;;;;;;13502:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31184:348;;;;;;;;;;;;;;;;-1:-1:-1;31184:348:0;-1:-1:-1;;;;;31184:348:0;;:::i;:::-;;15648:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15648:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27761:23;;;:::i;29716:308::-;;;:::i;14601:108::-;;;:::i;16299:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16299:321:0;;;;;;;;;;;;;;;;;:::i;26758:115::-;;;;;;;;;;;;;;;;-1:-1:-1;26758:115:0;-1:-1:-1;;;;;26758:115:0;;:::i;30032:285::-;;;:::i;27655:32::-;;;:::i;14445:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27579:22;;;:::i;30404:700::-;;;:::i;29284:424::-;;;;;;;;;;;;;;;;-1:-1:-1;29284:424:0;;;;;;-1:-1:-1;;;;;29284:424:0;;:::i;17029:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17029:218:0;;;;;;;;:::i;27345:68::-;;;:::i;31540:83::-;;;;;;;;;;;;;;;;-1:-1:-1;31540:83:0;;:::i;26650:100::-;;;:::i;27610:38::-;;;:::i;27490:51::-;;;:::i;27420:61::-;;;:::i;31631:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31631:187:0;;;;;;;;;;;;;;;;;:::i;26422:85::-;;;:::i;27821:23::-;;;:::i;27731:::-;;;:::i;14772:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14772:127:0;-1:-1:-1;;;;;14772:127:0;;:::i;25485:148::-;;;:::i;27548:24::-;;;:::i;23314:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23314:295:0;;;;;;;;:::i;24834:87::-;;;:::i;13712:95::-;;;:::i;27941:41::-;;;:::i;27270:68::-;;;:::i;17750:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17750:269:0;;;;;;;;:::i;15112:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15112:175:0;;;;;;;;:::i;27853:39::-;;;:::i;27791:23::-;;;:::i;15350:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15350:151:0;;;;;;;;;;:::i;25788:244::-;;;;;;;;;;;;;;;;-1:-1:-1;25788:244:0;-1:-1:-1;;;;;25788:244:0;;:::i;29103:173::-;;;;;;;;;;;;;;;;-1:-1:-1;29103:173:0;-1:-1:-1;;;;;29103:173:0;;:::i;27696:28::-;;;-1:-1:-1;;;;;27696:28:0;;:::o;27899:33::-;;;;:::o;13502:91::-;13580:5;13573:12;;;;;;;;-1:-1:-1;;13573:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13547:13;;13573:12;;13580:5;;13573:12;;13580:5;13573:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13502:91;;:::o;31184:348::-;26558:9;;-1:-1:-1;;;;;26558:9:0;26571:10;26558:23;26550:72;;;;-1:-1:-1;;;26550:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31283:21:::1;::::0;::::1;;31282:22;31274:59;;;::::0;;-1:-1:-1;;;31274:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31352:35:0;::::1;31344:70;;;::::0;;-1:-1:-1;;;31344:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31344:70:0;;;;;;;;;;;;;::::1;;31425:21;:28:::0;;-1:-1:-1;;31425:28:0::1;31449:4;31425:28;::::0;;31464:60:::1;31470:21:::0;27327:11:::1;31464:5;:60::i;:::-;31184:348:::0;:::o;15648:169::-;15731:4;15748:39;15757:12;:10;:12::i;:::-;15771:7;15780:6;15748:8;:39::i;:::-;-1:-1:-1;15805:4:0;15648:169;;;;;:::o;27761:23::-;;;-1:-1:-1;;;;;27761:23:0;;:::o;29716:308::-;29851:7;;29770:16;;29814:15;;29844:14;;29840:34;;;-1:-1:-1;29867:7:0;;29840:34;29917:4;29889:24;;:32;29885:46;;29930:1;29923:8;;;;;29885:46;29953:63;29992:23;;29953:34;29962:24;;29953:4;:8;;:34;;;;:::i;:::-;:38;;:63::i;:::-;29942:74;;29716:308;;:::o;14601:108::-;14689:12;;14601:108;:::o;16299:321::-;16405:4;16422:36;16432:6;16440:9;16451:6;16422:9;:36::i;:::-;16469:121;16478:6;16486:12;:10;:12::i;:::-;16500:89;16538:6;16500:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16500:19:0;;;;;;:11;:19;;;;;;16520:12;:10;:12::i;:::-;-1:-1:-1;;;;;16500:33:0;;;;;;;;;;;;-1:-1:-1;16500:33:0;;;:89;:37;:89::i;:::-;16469:8;:121::i;:::-;-1:-1:-1;16608:4:0;16299:321;;;;;:::o;26758:115::-;25065:12;:10;:12::i;:::-;-1:-1:-1;;;;;25054:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25054:23:0;;25046:68;;;;;-1:-1:-1;;;25046:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25046:68:0;;;;;;;;;;;;;;;26834:31:::1;26852:12;26834:17;:31::i;30032:285::-:0;30162:7;;30081:16;;30125:15;;30155:14;;30151:34;;;-1:-1:-1;30178:7:0;;30151:34;30222:4;30200:18;;:26;30196:40;;30235:1;30228:8;;;;;30196:40;30258:51;30291:17;;30258:28;30267:18;;30258:4;:8;;:28;;;;:::i;27655:32::-;;;;:::o;14445:91::-;14519:9;;;;14445:91;:::o;27579:22::-;;;;:::o;30404:700::-;25065:12;:10;:12::i;:::-;-1:-1:-1;;;;;25054:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25054:23:0;;25046:68;;;;;-1:-1:-1;;;25046:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25046:68:0;;;;;;;;;;;;;;;30458:16:::1;30477:23;:21;:23::i;:::-;30458:42;;30526:1;30515:8;:12;:43;;;;-1:-1:-1::0;30531:13:0::1;::::0;-1:-1:-1;;;;;30531:13:0::1;:27:::0;::::1;30515:43;30511:163;;;30581:13;::::0;30575:30:::1;::::0;-1:-1:-1;;;;;30581:13:0::1;30596:8:::0;30575:5:::1;:30::i;:::-;30647:15;30620:24;:42:::0;30511:163:::1;30695:18;:16;:18::i;:::-;30684:29;;30739:1;30728:8;:12;:38;;;;-1:-1:-1::0;30744:8:0::1;::::0;-1:-1:-1;;;;;30744:8:0::1;:22:::0;::::1;30728:38;:64;;;;-1:-1:-1::0;30770:8:0::1;::::0;-1:-1:-1;;;;;30770:8:0::1;:22:::0;::::1;30728:64;:90;;;;-1:-1:-1::0;30796:8:0::1;::::0;-1:-1:-1;;;;;30796:8:0::1;:22:::0;::::1;30728:90;:116;;;;-1:-1:-1::0;30822:8:0::1;::::0;-1:-1:-1;;;;;30822:8:0::1;:22:::0;::::1;30728:116;30724:373;;;30867:8;::::0;30861:32:::1;::::0;-1:-1:-1;;;;;30867:8:0::1;30877:15;:8:::0;30890:1:::1;30877:12;:15::i;:::-;30861:5;:32::i;:::-;30914:8;::::0;30908:32:::1;::::0;-1:-1:-1;;;;;30914:8:0::1;30924:15;:8:::0;30937:1:::1;30924:12;:15::i;30908:32::-;30961:8;::::0;30955:32:::1;::::0;-1:-1:-1;;;;;30961:8:0::1;30971:15;:8:::0;30984:1:::1;30971:12;:15::i;30955:32::-;31008:8;::::0;31002:32:::1;::::0;-1:-1:-1;;;;;31008:8:0::1;31018:15;:8:::0;31031:1:::1;31018:12;:15::i;31002:32::-;31070:15;31049:18;:36:::0;25125:1:::1;30404:700::o:0;29284:424::-;25065:12;:10;:12::i;:::-;-1:-1:-1;;;;;25054:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25054:23:0;;25046:68;;;;;-1:-1:-1;;;25046:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25046:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29376:22:0;::::1;29368:39;;;::::0;;-1:-1:-1;;;29368:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;29368:39:0;;;;;;;;;;;;;::::1;;29423:9;29436:1;29423:14;29419:282;;;29454:8;:19:::0;;-1:-1:-1;;;;;;29454:19:0::1;-1:-1:-1::0;;;;;29454:19:0;::::1;;::::0;;29419:282:::1;;;29495:9;29508:1;29495:14;29491:210;;;29526:8;:19:::0;;-1:-1:-1;;;;;;29526:19:0::1;-1:-1:-1::0;;;;;29526:19:0;::::1;;::::0;;29491:210:::1;;;29567:9;29580:1;29567:14;29563:138;;;29598:8;:19:::0;;-1:-1:-1;;;;;;29598:19:0::1;-1:-1:-1::0;;;;;29598:19:0;::::1;;::::0;;29563:138:::1;;;29639:9;29652:1;29639:14;29635:66;;;29670:8;:19:::0;;-1:-1:-1;;;;;;29670:19:0::1;-1:-1:-1::0;;;;;29670:19:0;::::1;;::::0;;29635:66:::1;29284:424:::0;;:::o;17029:218::-;17117:4;17134:83;17143:12;:10;:12::i;:::-;17157:7;17166:50;17205:10;17166:11;:25;17178:12;:10;:12::i;:::-;-1:-1:-1;;;;;17166:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17166:25:0;;;:34;;;;;;;;;;;:38;:50::i;27345:68::-;27402:11;27345:68;:::o;31540:83::-;31597:18;31608:6;31597:10;:18::i;26650:100::-;26733:9;;26693:4;;-1:-1:-1;;;;;26733:9:0;26717:12;:10;:12::i;:::-;-1:-1:-1;;;;;26717:25:0;;26710:32;;26650:100;:::o;27610:38::-;;;;:::o;27490:51::-;27533:8;27490:51;:::o;27420:61::-;27471:10;27420:61;:::o;31631:187::-;26558:9;;-1:-1:-1;;;;;26558:9:0;26571:10;26558:23;26550:72;;;;-1:-1:-1;;;26550:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31781:6:::1;-1:-1:-1::0;;;;;31781:15:0::1;;31797:3;31802:7;31781:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;31781:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;31631:187:0:o;26422:85::-;26490:9;;-1:-1:-1;;;;;26490:9:0;26422:85;:::o;27821:23::-;;;-1:-1:-1;;;;;27821:23:0;;:::o;27731:::-;;;-1:-1:-1;;;;;27731:23:0;;:::o;14772:127::-;-1:-1:-1;;;;;14873:18:0;14846:7;14873:18;;;;;;;;;;;;14772:127::o;25485:148::-;25065:12;:10;:12::i;:::-;-1:-1:-1;;;;;25054:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25054:23:0;;25046:68;;;;;-1:-1:-1;;;25046:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25046:68:0;;;;;;;;;;;;;;;25576:6:::1;::::0;25555:40:::1;::::0;25592:1:::1;::::0;25576:6:::1;::::0;::::1;-1:-1:-1::0;;;;;25576:6:0::1;::::0;25555:40:::1;::::0;25592:1;;25555:40:::1;25606:6;:19:::0;;-1:-1:-1;;;;;;25606:19:0::1;::::0;;25485:148::o;27548:24::-;;;;:::o;23314:295::-;23391:26;23420:84;23457:6;23420:84;;;;;;;;;;;;;;;;;:32;23430:7;23439:12;:10;:12::i;:::-;23420:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;23391:113;;23517:51;23526:7;23535:12;:10;:12::i;:::-;23549:18;23517:8;:51::i;:::-;23579:22;23585:7;23594:6;23579:5;:22::i;:::-;23314:295;;;:::o;24834:87::-;24907:6;;;;;-1:-1:-1;;;;;24907:6:0;;24834:87::o;13712:95::-;13792:7;13785:14;;;;;;;;-1:-1:-1;;13785:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13759:13;;13785:14;;13792:7;;13785:14;;13792:7;13785:14;;;;;;;;;;;;;;;;;;;;;;;;27941:41;;;;;;:::o;27270:68::-;27327:11;27270:68;:::o;17750:269::-;17843:4;17860:129;17869:12;:10;:12::i;:::-;17883:7;17892:96;17931:15;17892:96;;;;;;;;;;;;;;;;;:11;:25;17904:12;:10;:12::i;:::-;-1:-1:-1;;;;;17892:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17892:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15112:175::-;15198:4;15215:42;15225:12;:10;:12::i;:::-;15239:9;15250:6;15215:9;:42::i;27853:39::-;;;;:::o;27791:23::-;;;-1:-1:-1;;;;;27791:23:0;;:::o;15350:151::-;-1:-1:-1;;;;;15466:18:0;;;15439:7;15466:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15350:151::o;25788:244::-;25065:12;:10;:12::i;:::-;-1:-1:-1;;;;;25054:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25054:23:0;;25046:68;;;;;-1:-1:-1;;;25046:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25046:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25877:22:0;::::1;25869:73;;;;-1:-1:-1::0;;;25869:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25979:6;::::0;25958:38:::1;::::0;-1:-1:-1;;;;;25958:38:0;;::::1;::::0;25979:6:::1;::::0;::::1;;::::0;25958:38:::1;::::0;;;::::1;26007:6;:17:::0;;-1:-1:-1;;;;;26007:17:0;;::::1;;;-1:-1:-1::0;;;;;;26007:17:0;;::::1;::::0;;;::::1;::::0;;25788:244::o;29103:173::-;25065:12;:10;:12::i;:::-;-1:-1:-1;;;;;25054:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25054:23:0;;25046:68;;;;;-1:-1:-1;;;25046:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25046:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29190:28:0;::::1;29182:45;;;::::0;;-1:-1:-1;;;29182:45:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;29182:45:0;;;;;;;;;;;;;::::1;;29238:13;:30:::0;;-1:-1:-1;;;;;;29238:30:0::1;-1:-1:-1::0;;;;;29238:30:0;;;::::1;::::0;;;::::1;::::0;;29103:173::o;4421:153::-;4479:7;4511:1;4507;:5;4499:44;;;;;-1:-1:-1;;;4499:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4565:1;4561;:5;;;;;;;4421:153;-1:-1:-1;;;4421:153:0:o;2844:179::-;2902:7;2934:5;;;2958:6;;;;2950:46;;;;;-1:-1:-1;;;2950:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3014:1;2844:179;-1:-1:-1;;;2844:179:0:o;19330:378::-;-1:-1:-1;;;;;19414:21:0;;19406:65;;;;;-1:-1:-1;;;19406:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19484:49;19513:1;19517:7;19526:6;19484:20;:49::i;:::-;19561:12;;:24;;19578:6;19561:16;:24::i;:::-;19546:12;:39;-1:-1:-1;;;;;19617:18:0;;:9;:18;;;;;;;;;;;:30;;19640:6;19617:22;:30::i;:::-;-1:-1:-1;;;;;19596:18:0;;:9;:18;;;;;;;;;;;:51;;;;19663:37;;;;;;;19596:18;;:9;;19663:37;;;;;;;;;;19330:378;;:::o;8155:106::-;8243:10;8155:106;:::o;20897:346::-;-1:-1:-1;;;;;20999:19:0;;20991:68;;;;-1:-1:-1;;;20991:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21078:21:0;;21070:68;;;;-1:-1:-1;;;21070:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21151:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21203:32;;;;;;;;;;;;;;;;;20897:346;;;:::o;3306:158::-;3364:7;3397:1;3392;:6;;3384:49;;;;;-1:-1:-1;;;3384:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3451:5:0;;;3306:158::o;3723:220::-;3781:7;3805:6;3801:20;;-1:-1:-1;3820:1:0;3813:8;;3801:20;3844:5;;;3848:1;3844;:5;:1;3868:5;;;;;:10;3860:56;;;;-1:-1:-1;;;3860:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18509:539;-1:-1:-1;;;;;18615:20:0;;18607:70;;;;-1:-1:-1;;;18607:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18696:23:0;;18688:71;;;;-1:-1:-1;;;18688:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18772:47;18793:6;18801:9;18812:6;18772:20;:47::i;:::-;18852:71;18874:6;18852:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18852:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18832:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18957:20;;;;;;;:32;;18982:6;18957:24;:32::i;:::-;-1:-1:-1;;;;;18934:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19005:35;;;;;;;18934:20;;19005:35;;;;;;;;;;;;;18509:539;;;:::o;5671:166::-;5757:7;5793:12;5785:6;;;;5777:29;;;;-1:-1:-1;;;5777:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5824:5:0;;;5671:166::o;26881:257::-;-1:-1:-1;;;;;26958:26:0;;26950:84;;;;-1:-1:-1;;;26950:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27050:45;;-1:-1:-1;;;;;27050:45:0;;;27078:1;;27050:45;;27078:1;;27050:45;27106:9;:24;;-1:-1:-1;;;;;;27106:24:0;-1:-1:-1;;;;;27106:24:0;;;;;;;;;;26881:257::o;22904:91::-;22960:27;22966:12;:10;:12::i;:::-;22980:6;20041:418;-1:-1:-1;;;;;20125:21:0;;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20197:49;20218:7;20235:1;20239:6;20197:20;:49::i;:::-;20280:68;20303:6;20280:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20280:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20259:18:0;;:9;:18;;;;;;;;;;:89;20374:12;;:24;;20391:6;20374:16;:24::i;:::-;20359:12;:39;20414:37;;;;;;;;20440:1;;-1:-1:-1;;;;;20414:37:0;;;;;;;;;;;;20041:418;;:::o

Swarm Source

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