ETH Price: $3,338.81 (-2.05%)
 

Overview

Max Total Supply

185,920,958.962785428878755101 kKUSH

Holders

335 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+0.01%)

Onchain Market Cap

$2.10

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

kKUSH is the result of Staking kSEED on https://kush.finance/

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
kKushToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-24
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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: ..\..\..\node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol


pragma solidity ^0.6.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: ..\..\..\node_modules\@openzeppelin\contracts\math\SafeMath.sol


pragma solidity ^0.6.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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: ..\..\..\node_modules\@openzeppelin\contracts\utils\Address.sol


pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


pragma solidity ^0.6.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;
    using Address for address;

    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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 {
        _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\SafeERC20.sol


pragma solidity ^0.6.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


// File: contracts\kKushToken.sol

pragma solidity ^0.6.0;





contract kKushToken is ERC20 {
    
    struct stakeTracker {
        uint256 lastBlockChecked;
        uint256 rewards;
        uint256 kSeedStaked;
    }

    address private owner;
    
    uint256 private rewardsVar;
    
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
 
    address private kSeedAddress;
    IERC20 private kSeedToken;

    uint256 private _totalkSeedStaked;
    mapping(address => stakeTracker) private _stakedBalances;
    
    constructor() public ERC20("kKUSH", "kKUSH") {
        owner = msg.sender;
        _mint(msg.sender, 420 * (10 ** 18));
        rewardsVar = 4200000;
    }
    
    event Staked(address indexed user, uint256 amount, uint256 totalkSeedStaked);
    event Withdrawn(address indexed user, uint256 amount);
    event Rewards(address indexed user, uint256 reward);
    
    modifier _onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    modifier updateStakingReward(address account) {
        if (block.number > _stakedBalances[account].lastBlockChecked) {
            uint256 rewardBlocks = block.number
                                        .sub(_stakedBalances[account].lastBlockChecked);
                                        
                                        
             
            if (_stakedBalances[account].kSeedStaked > 0) {
                _stakedBalances[account].rewards = _stakedBalances[account].rewards
                                                                            .add(
                                                                            _stakedBalances[account].kSeedStaked
                                                                            .mul(rewardBlocks)
                                                                            / rewardsVar);
            }
                    
            _stakedBalances[account].lastBlockChecked = block.number;
            
            emit Rewards(account, _stakedBalances[account].rewards);                                                     
        }
        _;
    }


    function setkSeedAddress(address _kseedAddress) public _onlyOwner returns(uint256) {
        kSeedAddress = _kseedAddress;
        kSeedToken = IERC20(_kseedAddress);
    }
    
    function updatingStakingReward(address account) public returns(uint256) {
        if (block.number > _stakedBalances[account].lastBlockChecked) {
            uint256 rewardBlocks = block.number
                                        .sub(_stakedBalances[account].lastBlockChecked);
                                        
                                        
            if (_stakedBalances[account].kSeedStaked > 0) {
                _stakedBalances[account].rewards = _stakedBalances[account].rewards
                                                                            .add(
                                                                            _stakedBalances[account].kSeedStaked
                                                                            .mul(rewardBlocks)
                                                                            / rewardsVar);
            }
                                                
            _stakedBalances[account].lastBlockChecked = block.number;
                                                
            emit Rewards(account, _stakedBalances[account].rewards);                                                     
        
        }
        return(_stakedBalances[account].rewards);
    }
    
    function getBlockNum() public view returns (uint256) {
        return block.number;
    }
    
    function getLastBlockCheckedNum(address _account) public view returns (uint256) {
        return _stakedBalances[_account].lastBlockChecked;
    }

    function getAddressStakeAmount(address _account) public view returns (uint256) {
        return _stakedBalances[_account].kSeedStaked;
    }
    
    function setRewardsVar(uint256 _amount) public _onlyOwner {
        rewardsVar = _amount;
    }
    
    function totalStakedSupply() public view returns (uint256) {
        return _totalkSeedStaked;
    }

    function myRewardsBalance(address account) public view returns (uint256) {
        if (block.number > _stakedBalances[account].lastBlockChecked) {
            uint256 rewardBlocks = block.number
                                        .sub(_stakedBalances[account].lastBlockChecked);
                                        
                                        
             
            if (_stakedBalances[account].kSeedStaked > 0) {
                return _stakedBalances[account].rewards
                                                .add(
                                                _stakedBalances[account].kSeedStaked
                                                .mul(rewardBlocks)
                                                / rewardsVar);
            }                                                  
        }

    }

    function stake(uint256 amount) public updateStakingReward(msg.sender) {
        _totalkSeedStaked = _totalkSeedStaked.add(amount);
        _stakedBalances[msg.sender].kSeedStaked = _stakedBalances[msg.sender].kSeedStaked.add(amount);
        kSeedToken.safeTransferFrom(msg.sender, address(this), amount);
        emit Staked(msg.sender, amount, _totalkSeedStaked);
    }

    function withdraw(uint256 amount) public updateStakingReward(msg.sender) {
        _totalkSeedStaked = _totalkSeedStaked.sub(amount);
        _stakedBalances[msg.sender].kSeedStaked = _stakedBalances[msg.sender].kSeedStaked.sub(amount);
        kSeedToken.safeTransfer(msg.sender, amount);
        emit Withdrawn(msg.sender, amount);
    }
    
   function getReward() public updateStakingReward(msg.sender) {
       uint256 reward = _stakedBalances[msg.sender].rewards;
       _stakedBalances[msg.sender].rewards = 0;
       _mint(msg.sender, reward.mul(8) / 10);
       uint256 fundingPoolReward = reward.mul(2) / 10;
       _mint(kSeedAddress, fundingPoolReward);
       emit Rewards(msg.sender, reward);
   }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"Rewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalkSeedStaked","type":"uint256"}],"name":"Staked","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"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":[],"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":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAddressStakeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getLastBlockCheckedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","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":[{"internalType":"address","name":"account","type":"address"}],"name":"myRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardsVar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_kseedAddress","type":"address"}],"name":"setkSeedAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"updatingStakingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526005808252640d696aaa6960db1b602080840182815285518087019096529285528401528151919291620000529160039162000232565b5080516200006890600490602084019062000232565b505060058054601260ff1990911617610100600160a81b0319166101003390810291909117909155620000a691506816c4abbebea0100000620000b3565b62401640600655620002d7565b6001600160a01b0382166200010f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000126600083836001600160e01b03620001cb16565b6200014281600254620001d060201b620012a01790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000175918390620012a0620001d0821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200022b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200027557805160ff1916838001178555620002a5565b82800160010185558215620002a5579182015b82811115620002a557825182559160200191906001019062000288565b50620002b3929150620002b7565b5090565b620002d491905b80821115620002b35760008155600101620002be565b90565b61188a80620002e76000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806395d89b41116100b8578063a9059cbb1161007c578063a9059cbb146103b6578063bcdc3cfc146103e2578063be35ef14146103ea578063db260b3e14610410578063dd62ed3e1461042d578063e60df1b61461045b57610142565b806395d89b4114610319578063a22e440314610321578063a457c2d714610347578063a57306dc14610373578063a694fc3a1461039957610142565b8063313ce5671161010a578063313ce5671461027357806339509351146102915780633d18b912146102bd5780634aa12ec7146102c557806370a08231146102eb5780637f6c6f101461031157610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e5780632e1a7d4d14610254575b600080fd5b61014f610481565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610517565b604080519115158252519081900360200190f35b61020c610535565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b0381358116916020810135909116906040013561053b565b6102716004803603602081101561026a57600080fd5b50356105c8565b005b61027b610795565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102a757600080fd5b506001600160a01b03813516906020013561079e565b6102716107f2565b61020c600480360360208110156102db57600080fd5b50356001600160a01b0316610989565b61020c6004803603602081101561030157600080fd5b50356001600160a01b0316610ae0565b61020c610afb565b61014f610aff565b61020c6004803603602081101561033757600080fd5b50356001600160a01b0316610b60565b6101f06004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610bad565b61020c6004803603602081101561038957600080fd5b50356001600160a01b0316610c1b565b610271600480360360208110156103af57600080fd5b5035610ccb565b6101f0600480360360408110156103cc57600080fd5b506001600160a01b038135169060200135610e71565b61020c610e85565b61020c6004803603602081101561040057600080fd5b50356001600160a01b0316610e8b565b6102716004803603602081101561042657600080fd5b5035610ea9565b61020c6004803603604081101561044357600080fd5b506001600160a01b0381358116916020013516610eca565b61020c6004803603602081101561047157600080fd5b50356001600160a01b0316610ef5565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561050d5780601f106104e25761010080835404028352916020019161050d565b820191906000526020600020905b8154815290600101906020018083116104f057829003601f168201915b5050505050905090565b600061052b610524610f10565b8484610f14565b5060015b92915050565b60025490565b6000610548848484611000565b6105be84610554610f10565b6105b985604051806060016040528060288152602001611795602891396001600160a01b038a16600090815260016020526040812090610592610f10565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61116716565b610f14565b5060019392505050565b336000818152600a60205260409020544311156106f3576001600160a01b0381166000908152600a602052604081205461060990439063ffffffff6111fe16565b6001600160a01b0383166000908152600a6020526040902060020154909150156106af576006546001600160a01b0383166000908152600a60205260409020600201546106929190610661908463ffffffff61124716565b8161066857fe5b6001600160a01b0385166000908152600a602052604090206001015491900463ffffffff6112a016565b6001600160a01b0383166000908152600a60205260409020600101555b6001600160a01b0382166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b600954610706908363ffffffff6111fe16565b600955336000908152600a602052604090206002015461072c908363ffffffff6111fe16565b336000818152600a602052604090206002019190915560085461075b916001600160a01b0390911690846112fa565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60055460ff1690565b600061052b6107ab610f10565b846105b985600160006107bc610f10565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112a016565b336000818152600a60205260409020544311156108ec576001600160a01b0381166000908152600a602052604081205461083390439063ffffffff6111fe16565b6001600160a01b0383166000908152600a6020526040902060020154909150156108a8576006546001600160a01b0383166000908152600a602052604090206002015461088b9190610661908463ffffffff61124716565b6001600160a01b0383166000908152600a60205260409020600101555b6001600160a01b0382166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b336000818152600a602081905260408220600101805492905590916109299161091c84600863ffffffff61124716565b8161092357fe5b04611351565b6000600a61093e83600263ffffffff61124716565b8161094557fe5b6007549190049150610960906001600160a01b031682611351565b6040805183815290513391600080516020611754833981519152919081900360200190a2505050565b6001600160a01b0381166000908152600a6020526040812054431115610abd576001600160a01b0382166000908152600a60205260408120546109d390439063ffffffff6111fe16565b6001600160a01b0384166000908152600a602052604090206002015490915015610a79576006546001600160a01b0384166000908152600a6020526040902060020154610a5c9190610a2b908463ffffffff61124716565b81610a3257fe5b6001600160a01b0386166000908152600a602052604090206001015491900463ffffffff6112a016565b6001600160a01b0384166000908152600a60205260409020600101555b6001600160a01b0383166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b506001600160a01b0381166000908152600a60205260409020600101545b919050565b6001600160a01b031660009081526020819052604090205490565b4390565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561050d5780601f106104e25761010080835404028352916020019161050d565b60055460009061010090046001600160a01b03163314610b7f57600080fd5b600780546001600160a01b039093166001600160a01b03199384168117909155600880549093161790915590565b600061052b610bba610f10565b846105b9856040518060600160405280602581526020016118306025913960016000610be4610f10565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61116716565b6001600160a01b0381166000908152600a6020526040812054431115610adb576001600160a01b0382166000908152600a6020526040812054610c6590439063ffffffff6111fe16565b6001600160a01b0384166000908152600a602052604090206002015490915015610cc5576006546001600160a01b0384166000908152600a6020526040902060020154610cbd9190610a2b908463ffffffff61124716565b915050610adb565b50919050565b336000818152600a6020526040902054431115610dc5576001600160a01b0381166000908152600a6020526040812054610d0c90439063ffffffff6111fe16565b6001600160a01b0383166000908152600a602052604090206002015490915015610d81576006546001600160a01b0383166000908152600a6020526040902060020154610d649190610661908463ffffffff61124716565b6001600160a01b0383166000908152600a60205260409020600101555b6001600160a01b0382166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b600954610dd8908363ffffffff6112a016565b600955336000908152600a6020526040902060020154610dfe908363ffffffff6112a016565b336000818152600a6020526040902060020191909155600854610e2e916001600160a01b0390911690308561144d565b600954604080518481526020810192909252805133927f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee9092908290030190a25050565b600061052b610e7e610f10565b8484611000565b60095490565b6001600160a01b03166000908152600a602052604090206002015490565b60055461010090046001600160a01b03163314610ec557600080fd5b600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600a602052604090205490565b3390565b6001600160a01b038316610f595760405162461bcd60e51b81526004018080602001828103825260248152602001806117e26024913960400191505060405180910390fd5b6001600160a01b038216610f9e5760405162461bcd60e51b815260040180806020018281038252602281526020018061170c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110455760405162461bcd60e51b81526004018080602001828103825260258152602001806117bd6025913960400191505060405180910390fd5b6001600160a01b03821661108a5760405162461bcd60e51b81526004018080602001828103825260238152602001806116e96023913960400191505060405180910390fd5b61109583838361134c565b6110d88160405180606001604052806026815260200161172e602691396001600160a01b038616600090815260208190526040902054919063ffffffff61116716565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461110d908263ffffffff6112a016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111f65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111bb5781810151838201526020016111a3565b50505050905090810190601f1680156111e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061124083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611167565b9392505050565b6000826112565750600061052f565b8282028284828161126357fe5b04146112405760405162461bcd60e51b81526004018080602001828103825260218152602001806117746021913960400191505060405180910390fd5b600082820183811015611240576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261134c9084906114ad565b505050565b6001600160a01b0382166113ac576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6113b86000838361134c565b6002546113cb908263ffffffff6112a016565b6002556001600160a01b0382166000908152602081905260409020546113f7908263ffffffff6112a016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526114a79085906114ad565b50505050565b6060611502826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661155e9092919063ffffffff16565b80519091501561134c5780806020019051602081101561152157600080fd5b505161134c5760405162461bcd60e51b815260040180806020018281038252602a815260200180611806602a913960400191505060405180910390fd5b606061156d8484600085611575565b949350505050565b6060611580856116e2565b6115d1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106116105780518252601f1990920191602091820191016115f1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611672576040519150601f19603f3d011682016040523d82523d6000602084013e611677565b606091505b5091509150811561168b57915061156d9050565b80511561169b5780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156111bb5781810151838201526020016111a3565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365c083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d319bf2f956f9ac2594e4a6d5ef8a6c495dc8c33d770642278837145f7e1edf864736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806395d89b41116100b8578063a9059cbb1161007c578063a9059cbb146103b6578063bcdc3cfc146103e2578063be35ef14146103ea578063db260b3e14610410578063dd62ed3e1461042d578063e60df1b61461045b57610142565b806395d89b4114610319578063a22e440314610321578063a457c2d714610347578063a57306dc14610373578063a694fc3a1461039957610142565b8063313ce5671161010a578063313ce5671461027357806339509351146102915780633d18b912146102bd5780634aa12ec7146102c557806370a08231146102eb5780637f6c6f101461031157610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e5780632e1a7d4d14610254575b600080fd5b61014f610481565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610517565b604080519115158252519081900360200190f35b61020c610535565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b0381358116916020810135909116906040013561053b565b6102716004803603602081101561026a57600080fd5b50356105c8565b005b61027b610795565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102a757600080fd5b506001600160a01b03813516906020013561079e565b6102716107f2565b61020c600480360360208110156102db57600080fd5b50356001600160a01b0316610989565b61020c6004803603602081101561030157600080fd5b50356001600160a01b0316610ae0565b61020c610afb565b61014f610aff565b61020c6004803603602081101561033757600080fd5b50356001600160a01b0316610b60565b6101f06004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610bad565b61020c6004803603602081101561038957600080fd5b50356001600160a01b0316610c1b565b610271600480360360208110156103af57600080fd5b5035610ccb565b6101f0600480360360408110156103cc57600080fd5b506001600160a01b038135169060200135610e71565b61020c610e85565b61020c6004803603602081101561040057600080fd5b50356001600160a01b0316610e8b565b6102716004803603602081101561042657600080fd5b5035610ea9565b61020c6004803603604081101561044357600080fd5b506001600160a01b0381358116916020013516610eca565b61020c6004803603602081101561047157600080fd5b50356001600160a01b0316610ef5565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561050d5780601f106104e25761010080835404028352916020019161050d565b820191906000526020600020905b8154815290600101906020018083116104f057829003601f168201915b5050505050905090565b600061052b610524610f10565b8484610f14565b5060015b92915050565b60025490565b6000610548848484611000565b6105be84610554610f10565b6105b985604051806060016040528060288152602001611795602891396001600160a01b038a16600090815260016020526040812090610592610f10565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61116716565b610f14565b5060019392505050565b336000818152600a60205260409020544311156106f3576001600160a01b0381166000908152600a602052604081205461060990439063ffffffff6111fe16565b6001600160a01b0383166000908152600a6020526040902060020154909150156106af576006546001600160a01b0383166000908152600a60205260409020600201546106929190610661908463ffffffff61124716565b8161066857fe5b6001600160a01b0385166000908152600a602052604090206001015491900463ffffffff6112a016565b6001600160a01b0383166000908152600a60205260409020600101555b6001600160a01b0382166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b600954610706908363ffffffff6111fe16565b600955336000908152600a602052604090206002015461072c908363ffffffff6111fe16565b336000818152600a602052604090206002019190915560085461075b916001600160a01b0390911690846112fa565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60055460ff1690565b600061052b6107ab610f10565b846105b985600160006107bc610f10565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112a016565b336000818152600a60205260409020544311156108ec576001600160a01b0381166000908152600a602052604081205461083390439063ffffffff6111fe16565b6001600160a01b0383166000908152600a6020526040902060020154909150156108a8576006546001600160a01b0383166000908152600a602052604090206002015461088b9190610661908463ffffffff61124716565b6001600160a01b0383166000908152600a60205260409020600101555b6001600160a01b0382166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b336000818152600a602081905260408220600101805492905590916109299161091c84600863ffffffff61124716565b8161092357fe5b04611351565b6000600a61093e83600263ffffffff61124716565b8161094557fe5b6007549190049150610960906001600160a01b031682611351565b6040805183815290513391600080516020611754833981519152919081900360200190a2505050565b6001600160a01b0381166000908152600a6020526040812054431115610abd576001600160a01b0382166000908152600a60205260408120546109d390439063ffffffff6111fe16565b6001600160a01b0384166000908152600a602052604090206002015490915015610a79576006546001600160a01b0384166000908152600a6020526040902060020154610a5c9190610a2b908463ffffffff61124716565b81610a3257fe5b6001600160a01b0386166000908152600a602052604090206001015491900463ffffffff6112a016565b6001600160a01b0384166000908152600a60205260409020600101555b6001600160a01b0383166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b506001600160a01b0381166000908152600a60205260409020600101545b919050565b6001600160a01b031660009081526020819052604090205490565b4390565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561050d5780601f106104e25761010080835404028352916020019161050d565b60055460009061010090046001600160a01b03163314610b7f57600080fd5b600780546001600160a01b039093166001600160a01b03199384168117909155600880549093161790915590565b600061052b610bba610f10565b846105b9856040518060600160405280602581526020016118306025913960016000610be4610f10565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61116716565b6001600160a01b0381166000908152600a6020526040812054431115610adb576001600160a01b0382166000908152600a6020526040812054610c6590439063ffffffff6111fe16565b6001600160a01b0384166000908152600a602052604090206002015490915015610cc5576006546001600160a01b0384166000908152600a6020526040902060020154610cbd9190610a2b908463ffffffff61124716565b915050610adb565b50919050565b336000818152600a6020526040902054431115610dc5576001600160a01b0381166000908152600a6020526040812054610d0c90439063ffffffff6111fe16565b6001600160a01b0383166000908152600a602052604090206002015490915015610d81576006546001600160a01b0383166000908152600a6020526040902060020154610d649190610661908463ffffffff61124716565b6001600160a01b0383166000908152600a60205260409020600101555b6001600160a01b0382166000818152600a602090815260409182902043815560010154825190815291516000805160206117548339815191529281900390910190a2505b600954610dd8908363ffffffff6112a016565b600955336000908152600a6020526040902060020154610dfe908363ffffffff6112a016565b336000818152600a6020526040902060020191909155600854610e2e916001600160a01b0390911690308561144d565b600954604080518481526020810192909252805133927f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee9092908290030190a25050565b600061052b610e7e610f10565b8484611000565b60095490565b6001600160a01b03166000908152600a602052604090206002015490565b60055461010090046001600160a01b03163314610ec557600080fd5b600655565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600a602052604090205490565b3390565b6001600160a01b038316610f595760405162461bcd60e51b81526004018080602001828103825260248152602001806117e26024913960400191505060405180910390fd5b6001600160a01b038216610f9e5760405162461bcd60e51b815260040180806020018281038252602281526020018061170c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110455760405162461bcd60e51b81526004018080602001828103825260258152602001806117bd6025913960400191505060405180910390fd5b6001600160a01b03821661108a5760405162461bcd60e51b81526004018080602001828103825260238152602001806116e96023913960400191505060405180910390fd5b61109583838361134c565b6110d88160405180606001604052806026815260200161172e602691396001600160a01b038616600090815260208190526040902054919063ffffffff61116716565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461110d908263ffffffff6112a016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156111f65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111bb5781810151838201526020016111a3565b50505050905090810190601f1680156111e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061124083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611167565b9392505050565b6000826112565750600061052f565b8282028284828161126357fe5b04146112405760405162461bcd60e51b81526004018080602001828103825260218152602001806117746021913960400191505060405180910390fd5b600082820183811015611240576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261134c9084906114ad565b505050565b6001600160a01b0382166113ac576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6113b86000838361134c565b6002546113cb908263ffffffff6112a016565b6002556001600160a01b0382166000908152602081905260409020546113f7908263ffffffff6112a016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526114a79085906114ad565b50505050565b6060611502826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661155e9092919063ffffffff16565b80519091501561134c5780806020019051602081101561152157600080fd5b505161134c5760405162461bcd60e51b815260040180806020018281038252602a815260200180611806602a913960400191505060405180910390fd5b606061156d8484600085611575565b949350505050565b6060611580856116e2565b6115d1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106116105780518252601f1990920191602091820191016115f1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611672576040519150601f19603f3d011682016040523d82523d6000602084013e611677565b606091505b5091509150811561168b57915061156d9050565b80511561169b5780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156111bb5781810151838201526020016111a3565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365c083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d319bf2f956f9ac2594e4a6d5ef8a6c495dc8c33d770642278837145f7e1edf864736f6c63430006060033

Deployed Bytecode Sourcemap

30134:6239:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30134:6239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17516:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17516:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19622:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19622:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18591:100;;;:::i;:::-;;;;;;;;;;;;;;;;20265:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20265:321:0;;;;;;;;;;;;;;;;;:::i;35636:344::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35636:344:0;;:::i;:::-;;18443:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20995:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20995:218:0;;;;;;;;:::i;35991:371::-;;;:::i;32451:1288::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32451:1288:0;-1:-1:-1;;;;;32451:1288:0;;:::i;18754:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18754:119:0;-1:-1:-1;;;;;18754:119:0;;:::i;33751:91::-;;;:::i;17718:87::-;;;:::i;32264:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32264:175:0;-1:-1:-1;;;;;32264:175:0;;:::i;21716:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21716:269:0;;;;;;;;:::i;34383:861::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34383:861:0;-1:-1:-1;;;;;34383:861:0;;:::i;35252:376::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35252:376:0;;:::i;19086:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19086:175:0;;;;;;;;:::i;34273:102::-;;;:::i;34010:142::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34010:142:0;-1:-1:-1;;;;;34010:142:0;;:::i;34164:97::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34164:97:0;;:::i;19324:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19324:151:0;;;;;;;;;;:::i;33854:148::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33854:148:0;-1:-1:-1;;;;;33854:148:0;;:::i;17516:83::-;17586:5;17579:12;;;;;;;;-1:-1:-1;;17579:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17553:13;;17579:12;;17586:5;;17579:12;;17586:5;17579:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17516:83;:::o;19622:169::-;19705:4;19722:39;19731:12;:10;:12::i;:::-;19745:7;19754:6;19722:8;:39::i;:::-;-1:-1:-1;19779:4:0;19622:169;;;;;:::o;18591:100::-;18671:12;;18591:100;:::o;20265:321::-;20371:4;20388:36;20398:6;20406:9;20417:6;20388:9;:36::i;:::-;20435:121;20444:6;20452:12;:10;:12::i;:::-;20466:89;20504:6;20466:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20466:19:0;;;;;;:11;:19;;;;;;20486:12;:10;:12::i;:::-;-1:-1:-1;;;;;20466:33:0;;;;;;;;;;;;-1:-1:-1;20466:33:0;;;:89;;:37;:89;:::i;:::-;20435:8;:121::i;:::-;-1:-1:-1;20574:4:0;20265:321;;;;;:::o;35636:344::-;35697:10;31166:24;;;;:15;:24;;;;;:41;31151:12;:56;31147:1088;;;-1:-1:-1;;;;;31306:24:0;;31224:20;31306:24;;;:15;:24;;;;;:41;31247:101;;:12;;:101;:58;:101;:::i;:::-;-1:-1:-1;;;;;31466:24:0;;31505:1;31466:24;;;:15;:24;;;;;:36;;;31224:124;;-1:-1:-1;31466:40:0;31462:532;;31967:10;;-1:-1:-1;;;;;31755:24:0;;;;;;:15;:24;;;;;:36;;;31562:416;;31967:10;31755:132;;31874:12;31755:132;:118;:132;:::i;:::-;:222;;;;;-1:-1:-1;;;;;31562:24:0;;;;;;:15;:24;;;;;:32;;;;31755:222;;31562:416;:114;:416;:::i;:::-;-1:-1:-1;;;;;31527:24:0;;;;;;:15;:24;;;;;:32;;:451;31462:532;-1:-1:-1;;;;;32030:24:0;;;;;;:15;:24;;;;;;;;;32074:12;32030:56;;32137:32;;;32120:50;;;;;;;-1:-1:-1;;;;;;;;;;;32120:50:0;;;;;;;;;31147:1088;;35740:17:::1;::::0;:29:::1;::::0;35762:6;35740:29:::1;:21;:29;:::i;:::-;35720:17;:49:::0;35838:10:::1;35822:27;::::0;;;:15:::1;:27;::::0;;;;:39:::1;;::::0;:51:::1;::::0;35866:6;35822:51:::1;:43;:51;:::i;:::-;35796:10;35780:27;::::0;;;:15:::1;:27;::::0;;;;:39:::1;;:93:::0;;;;35884:10:::1;::::0;:43:::1;::::0;-1:-1:-1;;;;;35884:10:0;;::::1;::::0;35920:6;35884:23:::1;:43::i;:::-;35943:29;::::0;;;;;;;35953:10:::1;::::0;35943:29:::1;::::0;;;;;::::1;::::0;;::::1;35636:344:::0;;:::o;18443:83::-;18509:9;;;;18443:83;:::o;20995:218::-;21083:4;21100:83;21109:12;:10;:12::i;:::-;21123:7;21132:50;21171:10;21132:11;:25;21144:12;:10;:12::i;:::-;-1:-1:-1;;;;;21132:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21132:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;35991:371::-;36039:10;31166:24;;;;:15;:24;;;;;:41;31151:12;:56;31147:1088;;;-1:-1:-1;;;;;31306:24:0;;31224:20;31306:24;;;:15;:24;;;;;:41;31247:101;;:12;;:101;:58;:101;:::i;:::-;-1:-1:-1;;;;;31466:24:0;;31505:1;31466:24;;;:15;:24;;;;;:36;;;31224:124;;-1:-1:-1;31466:40:0;31462:532;;31967:10;;-1:-1:-1;;;;;31755:24:0;;;;;;:15;:24;;;;;:36;;;31562:416;;31967:10;31755:132;;31874:12;31755:132;:118;:132;:::i;31562:416::-;-1:-1:-1;;;;;31527:24:0;;;;;;:15;:24;;;;;:32;;:451;31462:532;-1:-1:-1;;;;;32030:24:0;;;;;;:15;:24;;;;;;;;;32074:12;32030:56;;32137:32;;;32120:50;;;;;;;-1:-1:-1;;;;;;;;;;;32120:50:0;;;;;;;;;31147:1088;;36094:10:::1;36061:14;36078:27:::0;;;:15:::1;:27;::::0;;;;;;:35:::1;;::::0;;36123:39;;;36078:35;;36172:37:::1;::::0;36190:13:::1;36078:35:::0;36201:1:::1;36190:13;:10;:13;:::i;:::-;:18;;;;;;36172:5;:37::i;:::-;36219:25;36263:2;36247:13;:6:::0;36258:1:::1;36247:13;:10;:13;:::i;:::-;:18;;;;;36281:12;::::0;36247:18;;::::1;::::0;-1:-1:-1;36275:38:0::1;::::0;-1:-1:-1;;;;;36281:12:0::1;36247:18:::0;36275:5:::1;:38::i;:::-;36328:27;::::0;;;;;;;36336:10:::1;::::0;-1:-1:-1;;;;;;;;;;;36328:27:0;;;;;::::1;::::0;;::::1;32245:1;;35991:371:::0;:::o;32451:1288::-;-1:-1:-1;;;;;32553:24:0;;32514:7;32553:24;;;:15;:24;;;;;:41;32538:12;:56;32534:1147;;;-1:-1:-1;;;;;32693:24:0;;32611:20;32693:24;;;:15;:24;;;;;:41;32634:101;;:12;;:101;:58;:101;:::i;:::-;-1:-1:-1;;;;;32838:24:0;;32877:1;32838:24;;;:15;:24;;;;;:36;;;32611:124;;-1:-1:-1;32838:40:0;32834:532;;33339:10;;-1:-1:-1;;;;;33127:24:0;;;;;;:15;:24;;;;;:36;;;32934:416;;33339:10;33127:132;;33246:12;33127:132;:118;:132;:::i;:::-;:222;;;;;-1:-1:-1;;;;;32934:24:0;;;;;;:15;:24;;;;;:32;;;;33127:222;;32934:416;:114;:416;:::i;:::-;-1:-1:-1;;;;;32899:24:0;;;;;;:15;:24;;;;;:32;;:451;32834:532;-1:-1:-1;;;;;33430:24:0;;;;;;:15;:24;;;;;;;;;33474:12;33430:56;;33573:32;;;33556:50;;;;;;;-1:-1:-1;;;;;;;;;;;33556:50:0;;;;;;;;;32534:1147;;-1:-1:-1;;;;;;33698:24:0;;;;;;:15;:24;;;;;:32;;;32451:1288;;;;:::o;18754:119::-;-1:-1:-1;;;;;18847:18:0;18820:7;18847:18;;;;;;;;;;;;18754:119::o;33751:91::-;33822:12;33751:91;:::o;17718:87::-;17790:7;17783:14;;;;;;;;-1:-1:-1;;17783:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17757:13;;17783:14;;17790:7;;17783:14;;17790:7;17783:14;;;;;;;;;;;;;;;;;;;;;;;;32264:175;31056:5;;32338:7;;31056:5;;;-1:-1:-1;;;;;31056:5:0;31042:10;:19;31034:28;;12:1:-1;9;2:12;31034:28:0;32358:12:::1;:28:::0;;-1:-1:-1;;;;;32358:28:0;;::::1;-1:-1:-1::0;;;;;;32358:28:0;;::::1;::::0;::::1;::::0;;;32397:10:::1;:34:::0;;;;::::1;;::::0;;;32264:175;:::o;21716:269::-;21809:4;21826:129;21835:12;:10;:12::i;:::-;21849:7;21858:96;21897:15;21858:96;;;;;;;;;;;;;;;;;:11;:25;21870:12;:10;:12::i;:::-;-1:-1:-1;;;;;21858:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21858:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;34383:861::-;-1:-1:-1;;;;;34486:24:0;;34447:7;34486:24;;;:15;:24;;;;;:41;34471:12;:56;34467:768;;;-1:-1:-1;;;;;34626:24:0;;34544:20;34626:24;;;:15;:24;;;;;:41;34567:101;;:12;;:101;:58;:101;:::i;:::-;-1:-1:-1;;;;;34786:24:0;;34825:1;34786:24;;;:15;:24;;;;;:36;;;34544:124;;-1:-1:-1;34786:40:0;34782:392;;35147:10;;-1:-1:-1;;;;;34991:24:0;;;;;;:15;:24;;;;;:36;;;34854:304;;35147:10;34991:104;;35082:12;34991:104;:90;:104;:::i;34854:304::-;34847:311;;;;;34782:392;34467:768;34383:861;;;:::o;35252:376::-;35310:10;31166:24;;;;:15;:24;;;;;:41;31151:12;:56;31147:1088;;;-1:-1:-1;;;;;31306:24:0;;31224:20;31306:24;;;:15;:24;;;;;:41;31247:101;;:12;;:101;:58;:101;:::i;:::-;-1:-1:-1;;;;;31466:24:0;;31505:1;31466:24;;;:15;:24;;;;;:36;;;31224:124;;-1:-1:-1;31466:40:0;31462:532;;31967:10;;-1:-1:-1;;;;;31755:24:0;;;;;;:15;:24;;;;;:36;;;31562:416;;31967:10;31755:132;;31874:12;31755:132;:118;:132;:::i;31562:416::-;-1:-1:-1;;;;;31527:24:0;;;;;;:15;:24;;;;;:32;;:451;31462:532;-1:-1:-1;;;;;32030:24:0;;;;;;:15;:24;;;;;;;;;32074:12;32030:56;;32137:32;;;32120:50;;;;;;;-1:-1:-1;;;;;;;;;;;32120:50:0;;;;;;;;;31147:1088;;35353:17:::1;::::0;:29:::1;::::0;35375:6;35353:29:::1;:21;:29;:::i;:::-;35333:17;:49:::0;35451:10:::1;35435:27;::::0;;;:15:::1;:27;::::0;;;;:39:::1;;::::0;:51:::1;::::0;35479:6;35435:51:::1;:43;:51;:::i;:::-;35409:10;35393:27;::::0;;;:15:::1;:27;::::0;;;;:39:::1;;:93:::0;;;;35497:10:::1;::::0;:62:::1;::::0;-1:-1:-1;;;;;35497:10:0;;::::1;::::0;35545:4:::1;35552:6:::0;35497:27:::1;:62::i;:::-;35602:17;::::0;35575:45:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;35582:10:::1;::::0;35575:45:::1;::::0;;;;;;;::::1;35252:376:::0;;:::o;19086:175::-;19172:4;19189:42;19199:12;:10;:12::i;:::-;19213:9;19224:6;19189:9;:42::i;34273:102::-;34350:17;;34273:102;:::o;34010:142::-;-1:-1:-1;;;;;34107:25:0;34080:7;34107:25;;;:15;:25;;;;;:37;;;;34010:142::o;34164:97::-;31056:5;;;;;-1:-1:-1;;;;;31056:5:0;31042:10;:19;31034:28;;12:1:-1;9;2:12;31034:28:0;34233:10:::1;:20:::0;34164:97::o;19324:151::-;-1:-1:-1;;;;;19440:18:0;;;19413:7;19440:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19324:151::o;33854:148::-;-1:-1:-1;;;;;33952:25:0;33925:7;33952:25;;;:15;:25;;;;;:42;;33854:148::o;679:106::-;767:10;679:106;:::o;24861:346::-;-1:-1:-1;;;;;24963:19:0;;24955:68;;;;-1:-1:-1;;;24955:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25042:21:0;;25034:68;;;;-1:-1:-1;;;25034:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25115:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25167:32;;;;;;;;;;;;;;;;;24861:346;;;:::o;22475:539::-;-1:-1:-1;;;;;22581:20:0;;22573:70;;;;-1:-1:-1;;;22573:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22662:23:0;;22654:71;;;;-1:-1:-1;;;22654:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22738:47;22759:6;22767:9;22778:6;22738:20;:47::i;:::-;22818:71;22840:6;22818:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22818:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;22798:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22923:20;;;;;;;:32;;22948:6;22923:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;22900:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22971:35;;;;;;;22900:20;;22971:35;;;;;;;;;;;;;22475:539;;;:::o;5704:192::-;5790:7;5826:12;5818:6;;;;5810:29;;;;-1:-1:-1;;;5810:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5810:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5862:5:0;;;5704:192::o;5265:136::-;5323:7;5350:43;5354:1;5357;5350:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5343:50;5265:136;-1:-1:-1;;;5265:136:0:o;6155:471::-;6213:7;6458:6;6454:47;;-1:-1:-1;6488:1:0;6481:8;;6454:47;6525:5;;;6529:1;6525;:5;:1;6549:5;;;;;:10;6541:56;;;;-1:-1:-1;;;6541:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4801:181;4859:7;4891:5;;;4915:6;;;;4907:46;;;;;-1:-1:-1;;;4907:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26987:177;27097:58;;;-1:-1:-1;;;;;27097:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27097:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27070:86:0;;27090:5;;27070:19;:86::i;:::-;26987:177;;;:::o;23295:378::-;-1:-1:-1;;;;;23379:21:0;;23371:65;;;;;-1:-1:-1;;;23371:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23449:49;23478:1;23482:7;23491:6;23449:20;:49::i;:::-;23526:12;;:24;;23543:6;23526:24;:16;:24;:::i;:::-;23511:12;:39;-1:-1:-1;;;;;23582:18:0;;:9;:18;;;;;;;;;;;:30;;23605:6;23582:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;23561:18:0;;:9;:18;;;;;;;;;;;:51;;;;23628:37;;;;;;;23561:18;;:9;;23628:37;;;;;;;;;;23295:378;;:::o;27172:205::-;27300:68;;;-1:-1:-1;;;;;27300:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27300:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27273:96:0;;27293:5;;27273:19;:96::i;:::-;27172:205;;;;:::o;29292:761::-;29716:23;29742:69;29770:4;29742:69;;;;;;;;;;;;;;;;;29750:5;-1:-1:-1;;;;;29742:27:0;;;:69;;;;;:::i;:::-;29826:17;;29716:95;;-1:-1:-1;29826:21:0;29822:224;;29968:10;29957:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;29957:30:0;29949:85;;;;-1:-1:-1;;;29949:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12965:196;13068:12;13100:53;13123:6;13131:4;13137:1;13140:12;13100:22;:53::i;:::-;13093:60;12965:196;-1:-1:-1;;;;12965:196:0:o;14342:979::-;14472:12;14505:18;14516:6;14505:10;:18::i;:::-;14497:60;;;;;-1:-1:-1;;;14497:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14631:12;14645:23;14672:6;-1:-1:-1;;;;;14672:11:0;14692:8;14703:4;14672:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14672:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;14630:78:0;;;;14723:7;14719:595;;;14754:10;-1:-1:-1;14747:17:0;;-1:-1:-1;14747:17:0;14719:595;14868:17;;:21;14864:439;;15131:10;15125:17;15192:15;15179:10;15175:2;15171:19;15164:44;15079:148;15267:20;;-1:-1:-1;;;15267:20:0;;;;;;;;;;;;;;;;;15274:12;;15267:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;10047:422:0;10414:20;10453:8;;;10047:422::o

Swarm Source

ipfs://d319bf2f956f9ac2594e4a6d5ef8a6c495dc8c33d770642278837145f7e1edf8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.