ETH Price: $3,390.31 (-1.52%)
Gas: 2 Gwei

Token

CXN Network (CXN)
 

Overview

Max Total Supply

268,780,727.167740643049755567 CXN

Holders

527 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
michaelwatsondp.eth
Balance
1,858.140794118672304204 CXN

Value
$0.00
0xeA54EFe68003bB510D246Da8AFe3a821cD9c876c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CXN Network aims to build a platform for assets management and staking. CXN token serve as the means of access to the services offered by CXN Network.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CXN

Compiler Version
v0.6.11+commit.5ef660b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

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

// SPDX-License-Identifier: MIT

pragma solidity 0.6.11;

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

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;
    }
}


/**
 * SPDX-License-Identifier: <SPDX-License>
 * @dev Implementation of the {ICXN} 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 {CXNPresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-CXN-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 CXN 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 {ICXN-approve}.
 */


contract CXN {
    
    using SafeMath for uint256;
    using Address for address;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    bool private _initialized;

    uint256 private _burnRate; // 7%
    uint256 private _forStakers; // 4%

    uint256 private _burnRateStaker;
    uint256 private _unstakeForStaker;

    uint256 private _Burnt_Limit;
    uint256 private _Min_Stake;

    uint256 private _Scale;
    

    struct Party {
		bool elite;
		uint256 balance;
		uint256 staked;
        uint256 payoutstake;
		mapping(address => uint256) allowance;
	}

	struct Board {
		uint256 totalSupply;
		uint256 totalStaked;
        uint256 totalBurnt;
        uint256 retPerToken;
		mapping(address => Party) parties;
		address owner;
	}

    Board private _board;


    event Transfer(address indexed from, address indexed to, uint256 tokens);
	event Approval(address indexed owner, address indexed spender, uint256 tokens);
	event Eliters(address indexed Party, bool status);
	event Stake(address indexed owner, uint256 tokens);
	event UnStake(address indexed owner, uint256 tokens);
    event StakeGain(address indexed owner, uint256 tokens);
	event Burn(uint256 tokens);


    /**
     * @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 () public {
        
        require(!_initialized);

       _totalSupply = 3e26;
       _name = "CXN Network";
       _symbol = "CXN";
       _decimals = 18;
       _burnRate = 7;
       _forStakers = 4;
       _burnRateStaker = 5;
       _unstakeForStaker= 3;
       _Burnt_Limit=1e26;
       _Scale = 2**64;
       _Min_Stake= 1000;
       
        _board.owner = msg.sender;
		_board.totalSupply = _totalSupply;
		_board.parties[msg.sender].balance = _totalSupply;
        _board.retPerToken = 0;
		emit Transfer(address(0x0), msg.sender, _totalSupply);
		eliters(msg.sender, true);

        _initialized = true;
    }

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

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

    /**
     * @dev See {ICXN-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _board.totalSupply;
    }

    /**
     * @dev See {ICXN-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _board.parties[account].balance;
    }

    function stakeOf(address account) public view returns (uint256) {
        return _board.parties[account].staked;
    }

    function totalStake() public view returns (uint256) {
        return _board.totalStaked;
    }

    function changeAdmin(address _to) external virtual{
        require(msg.sender == _board.owner);
        
        
        transfer(_to,_board.parties[msg.sender].balance);
        eliters(_to,true);
        
        _board.owner = msg.sender;
        
    }



    /**
     * @dev See {ICXN-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 returns (bool) {
        _transfer(msg.sender, recipient, amount);
        
        return true;
    }

    /**
     * @dev See {ICXN-allowance}.
     */
    function allowance(address owner, address spender) external view virtual returns (uint256) {
        return _board.parties[owner].allowance[spender];
    }

    /**
     * @dev See {ICXN-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) external virtual returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {ICXN-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {CXN};
     *
     * 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) external virtual returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _board.parties[sender].allowance[msg.sender].sub(amount, "CXN: 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 {ICXN-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) external virtual returns (bool) {
        _approve(msg.sender, spender, _board.parties[msg.sender].allowance[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 {ICXN-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) external virtual returns (bool) {
        _approve(msg.sender, spender, _board.parties[msg.sender].allowance[spender].sub(subtractedValue, "CXN: 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), "CXN: transfer from the zero address");
        require(recipient != address(0), "CXN: transfer to the zero address");
        require(balanceOf(sender) >= amount);

        _board.parties[sender].balance = _board.parties[sender].balance.sub(amount, "CXN: transfer amount exceeds balance");

        uint256 toBurn = amount.mul(_burnRate).div(100);

        if(_board.totalSupply < _Burnt_Limit || _board.parties[sender].elite){
            toBurn = 0;
        }
        uint256 _transferred = amount.sub(toBurn);

        _board.parties[recipient].balance = _board.parties[recipient].balance.add(_transferred);
        
        emit Transfer(sender,recipient,_transferred);

        if(toBurn > 0){
            if(_board.totalStaked > 0){
                uint256 toDistribute = amount.mul(_forStakers).div(100);

               _board.retPerToken = _board.retPerToken.add(toDistribute.mul(_Scale).div(_board.totalStaked));

              toBurn = toBurn.sub(toDistribute);
            }

            _board.totalSupply = _board.totalSupply.sub(toBurn);
            emit Transfer(sender, address(0x0), toBurn);
			emit Burn(toBurn);
        }

        
    }

    /**
     * @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), "CXN: burn from the zero address");


        _board.parties[account].balance = _board.parties[account].balance.sub(amount, "CXN: burn amount exceeds balance");
        _board.totalSupply = _board.totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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), "CXN: approve from the zero address");
        require(spender != address(0), "CXN: approve to the zero address");

        _board.parties[owner].allowance[spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function eliters(address party, bool _status) public {
		require(msg.sender == _board.owner);
		_board.parties[party].elite = _status;
		emit Eliters(party, _status);
	}

    function stake(uint256 amount) external virtual {
        require(balanceOf(msg.sender) >= amount);
        require(amount >= _Min_Stake);
        
        redeemGain();

        _board.totalStaked = _board.totalStaked.add(amount);
        _board.parties[msg.sender].balance = _board.parties[msg.sender].balance.sub(amount);
        _board.parties[msg.sender].staked = _board.parties[msg.sender].staked.add(amount);
        _board.parties[msg.sender].payoutstake = _board.retPerToken;
        

        emit Stake(msg.sender, amount);
    }

    function unStake(uint256 amount) external virtual {
        require(_board.parties[msg.sender].staked >= amount);

        uint256 toBurn = amount.mul(_burnRateStaker).div(100);

        uint256 toStakers = amount.mul(_unstakeForStaker).div(100);
        
        uint256 stakeGainOfAmount = _stakeReturnOfAmount(msg.sender,amount);
        
        _board.parties[msg.sender].balance = _board.parties[msg.sender].balance.add(stakeGainOfAmount);
        
        
        _board.totalStaked = _board.totalStaked.sub(amount);

        _board.retPerToken = _board.retPerToken.add(toStakers.mul(_Scale).div(_board.totalStaked));
        
        uint256 toReturn = amount.sub(toBurn);
        
        _board.parties[msg.sender].balance = _board.parties[msg.sender].balance.add(toReturn);
        _board.parties[msg.sender].staked = _board.parties[msg.sender].staked.sub(amount);
        
        emit UnStake(msg.sender, amount);
    }

    function redeemGain() public virtual returns(uint256){
        uint256 ret = stakeReturnOf(msg.sender);
		if(ret == 0){
		    return 0;
		}
		
		_board.parties[msg.sender].payoutstake = _board.retPerToken;
		_board.parties[msg.sender].balance = _board.parties[msg.sender].balance.add(ret);
		emit Transfer(address(this), msg.sender, ret);
		emit StakeGain(msg.sender, ret);
        return ret;
    }

    function stakeReturnOf(address sender) public view returns (uint256) {
        uint256 profitReturnRate = _board.retPerToken.sub(_board.parties[sender].payoutstake);
        return uint256(profitReturnRate.mul(_board.parties[sender].staked).div(_Scale));
        
	}
	
	function _stakeReturnOfAmount(address sender, uint256 amount) internal view returns (uint256) {
	    uint256 profitReturnRate = _board.retPerToken.sub(_board.parties[sender].payoutstake);
        return uint256(profitReturnRate.mul(amount).div(_Scale));
	}
    

    function partyDetails(address sender) external view returns (uint256 totalTokenSupply,uint256 totalStakes,uint256 balance,uint256 staked,uint256 stakeReturns){
       return (totalSupply(),totalStake(), balanceOf(sender),stakeOf(sender),stakeReturnOf(sender));
    }

    function setMinStake(uint256 amount) external virtual returns(uint256) {
         require(msg.sender == _board.owner);
         require(amount > 0);
         _Min_Stake = amount;
         return _Min_Stake;
    }

    function minStake() public view returns(uint256) {
        return _Min_Stake;
    }

    function burn(uint256 amount) external virtual{
        require(amount <= _board.parties[msg.sender].balance);

        _burn(msg.sender,amount);

        emit Burn(amount);
    }

}

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":"tokens","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"Party","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"Eliters","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"StakeGain","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":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"UnStake","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","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":"party","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"eliters","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":"minStake","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":"address","name":"sender","type":"address"}],"name":"partyDetails","outputs":[{"internalType":"uint256","name":"totalTokenSupply","type":"uint256"},{"internalType":"uint256","name":"totalStakes","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"staked","type":"uint256"},{"internalType":"uint256","name":"stakeReturns","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemGain","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinStake","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":[{"internalType":"address","name":"account","type":"address"}],"name":"stakeOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"stakeReturnOf","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":"totalStake","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":"uint256","name":"amount","type":"uint256"}],"name":"unStake","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50600354610100900460ff16156200002857600080fd5b6af8277896582678ac00000060005560408051808201909152600b8082526a43584e204e6574776f726b60a81b60209092019182526200006b91600191620001e3565b506040805180820190915260038082526221ac2760e91b60209092019182526200009891600291620001e3565b506003805460ff19166012178155600760048181556005908155600655556a52b7d2dcc80cd2e400000060085568010000000000000000600a556103e8600955601080546001600160a01b0319163390811790915560008054600b819055828252600f60209081526040808420600101839055600e8490558051928352517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3620001563360016001600160e01b036200016b16565b6003805461ff00191661010017905562000288565b6010546001600160a01b031633146200018357600080fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff1916851515908117909155825190815291517f4de1c8714e233d8c8a18a3b9ef875414d119ff7ed50d0dddd686ab7278b2fb6c9281900390910190a25050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200022657805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025657825182559160200191906001019062000239565b506200026492915062000268565b5090565b6200028591905b808211156200026457600081556001016200026f565b90565b6115a580620002986000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b41146103e0578063a457c2d7146103e8578063a694fc3a14610414578063a9059cbb14610431578063dd62ed3e1461045d578063f5b81d711461048b5761014d565b806370a082311461034157806377a930c2146103675780638569e8e21461038d5780638b0e9f3f146103955780638c80fd901461039d5780638f283970146103ba5761014d565b8063313ce56711610115578063313ce5671461028f578063375b3c0a146102ad57806339509351146102b557806342623360146102e157806342966c68146103075780635d3eea91146103245761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f5780631afb38201461022957806323b872dd14610259575b600080fd5b61015a6104dc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b038135169060200135610572565b604080519115158252519081900360200190f35b610217610589565b60408051918252519081900360200190f35b6102576004803603604081101561023f57600080fd5b506001600160a01b038135169060200135151561058f565b005b6101fb6004803603606081101561026f57600080fd5b506001600160a01b03813581169160208101359091169060400135610606565b610297610678565b6040805160ff9092168252519081900360200190f35b610217610681565b6101fb600480360360408110156102cb57600080fd5b506001600160a01b038135169060200135610687565b610217600480360360208110156102f757600080fd5b50356001600160a01b03166106c6565b6102576004803603602081101561031d57600080fd5b50356106e4565b6102576004803603602081101561033a57600080fd5b5035610743565b6102176004803603602081101561035757600080fd5b50356001600160a01b03166108eb565b6102176004803603602081101561037d57600080fd5b50356001600160a01b0316610909565b610217610978565b610217610a3b565b610217600480360360208110156103b357600080fd5b5035610a41565b610257600480360360208110156103d057600080fd5b50356001600160a01b0316610a71565b61015a610ac7565b6101fb600480360360408110156103fe57600080fd5b506001600160a01b038135169060200135610b25565b6102576004803603602081101561042a57600080fd5b5035610b7d565b6101fb6004803603604081101561044757600080fd5b506001600160a01b038135169060200135610c6a565b6102176004803603604081101561047357600080fd5b506001600160a01b0381358116916020013516610c77565b6104b1600480360360208110156104a157600080fd5b50356001600160a01b0316610ca6565b6040805195865260208601949094528484019290925260608401526080830152519081900360a00190f35b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105675780601f1061053c57610100808354040283529160200191610567565b820191906000526020600020905b81548152906001019060200180831161054a57829003601f168201915b505050505090505b90565b600061057f338484610ceb565b5060015b92915050565b600b5490565b6010546001600160a01b031633146105a657600080fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff1916851515908117909155825190815291517f4de1c8714e233d8c8a18a3b9ef875414d119ff7ed50d0dddd686ab7278b2fb6c9281900390910190a25050565b6000610613848484610df1565b61066e843361066985604051806060016040528060268152602001611526602691396001600160a01b038a166000908152600f60209081526040808320338452600401909152902054919063ffffffff6110b516565b610ceb565b5060019392505050565b60035460ff1690565b60095490565b336000818152600f602090815260408083206001600160a01b0387168452600401909152812054909161057f918590610669908663ffffffff61114c16565b6001600160a01b03166000908152600f602052604090206002015490565b336000908152600f602052604090206001015481111561070357600080fd5b61070d33826111a6565b6040805182815290517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9181900360200190a150565b336000908152600f602052604090206002015481111561076257600080fd5b600061078a606461077e600654856112c690919063ffffffff16565b9063ffffffff61131f16565b905060006107a8606461077e600754866112c690919063ffffffff16565b905060006107b63385611361565b336000908152600f60205260409020600101549091506107dc908263ffffffff61114c16565b336000908152600f6020526040902060010155600c54610802908563ffffffff6113b416565b600c819055600a54610832916108239161077e90869063ffffffff6112c616565b600e549063ffffffff61114c16565b600e556000610847858563ffffffff6113b416565b336000908152600f602052604090206001015490915061086d908263ffffffff61114c16565b336000908152600f60205260409020600181019190915560020154610898908663ffffffff6113b416565b336000818152600f6020908152604091829020600201939093558051888152905191927fb24546d975e2628748efc9aced80665e0fad66272033e5c0ea25fd3afac9979592918290030190a25050505050565b6001600160a01b03166000908152600f602052604090206001015490565b6001600160a01b0381166000908152600f6020526040812060030154600e54829161093a919063ffffffff6113b416565b600a546001600160a01b0385166000908152600f60205260409020600201549192506109719161077e90849063ffffffff6112c616565b9392505050565b60008061098433610909565b90508061099557600091505061056f565b600e54336000908152600f602052604090206003810191909155600101546109c3908263ffffffff61114c16565b336000818152600f60209081526040918290206001019390935580518481529051919230926000805160206115068339815191529281900390910190a360408051828152905133917f1c82532ab965ecfb565b9b4850bfe668c138f126f491e3b46199b3d5cb95d811919081900360200190a2905090565b600c5490565b6010546000906001600160a01b03163314610a5b57600080fd5b60008211610a6857600080fd5b50600981905590565b6010546001600160a01b03163314610a8857600080fd5b336000908152600f6020526040902060010154610aa6908290610c6a565b50610ab281600161058f565b50601080546001600160a01b03191633179055565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156105675780601f1061053c57610100808354040283529160200191610567565b600061057f33846106698560405180606001604052806023815260200161145c60239139336000908152600f602090815260408083206001600160a01b038d168452600401909152902054919063ffffffff6110b516565b80610b87336108eb565b1015610b9257600080fd5b600954811015610ba157600080fd5b610ba9610978565b50600c54610bbd908263ffffffff61114c16565b600c55336000908152600f6020526040902060010154610be3908263ffffffff6113b416565b336000908152600f60205260409020600181019190915560020154610c0e908263ffffffff61114c16565b336000818152600f60209081526040918290206002810194909455600e546003909401939093558051848152905191927febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a92918290030190a250565b600061057f338484610df1565b6001600160a01b039182166000908152600f602090815260408083209390941682526004909201909152205490565b6000806000806000610cb6610589565b610cbe610a3b565b610cc7886108eb565b610cd0896106c6565b610cd98a610909565b939a9299509097509550909350915050565b6001600160a01b038316610d305760405162461bcd60e51b815260040180806020018281038252602281526020018061147f6022913960400191505060405180910390fd5b6001600160a01b038216610d8b576040805162461bcd60e51b815260206004820181905260248201527f43584e3a20617070726f766520746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b038381166000818152600f602090815260408083209487168084526004909501825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e365760405162461bcd60e51b81526004018080602001828103825260238152602001806114c26023913960400191505060405180910390fd5b6001600160a01b038216610e7b5760405162461bcd60e51b81526004018080602001828103825260218152602001806114e56021913960400191505060405180910390fd5b80610e85846108eb565b1015610e9057600080fd5b610ed68160405180606001604052806024815260200161154c602491396001600160a01b0386166000908152600f6020526040902060010154919063ffffffff6110b516565b6001600160a01b0384166000908152600f6020526040812060010191909155600454610f109060649061077e90859063ffffffff6112c616565b9050600854600b600001541080610f3f57506001600160a01b0384166000908152600f602052604090205460ff165b15610f48575060005b6000610f5a838363ffffffff6113b416565b6001600160a01b0385166000908152600f6020526040902060010154909150610f89908263ffffffff61114c16565b6001600160a01b038086166000818152600f6020908152604091829020600101949094558051858152905191939289169260008051602061150683398151915292918290030190a381156110ae57600c5415611035576000610ffb606461077e600554876112c690919063ffffffff16565b905061101e610823600b6001015461077e600a54856112c690919063ffffffff16565b600e55611031838263ffffffff6113b416565b9250505b600b54611048908363ffffffff6113b416565b600b556040805183815290516000916001600160a01b038816916000805160206115068339815191529181900360200190a36040805183815290517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9181900360200190a15b5050505050565b600081848411156111445760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111095781810151838201526020016110f1565b50505050905090810190601f1680156111365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610971576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611201576040805162461bcd60e51b815260206004820152601f60248201527f43584e3a206275726e2066726f6d20746865207a65726f206164647265737300604482015290519081900360640190fd5b60408051808201825260208082527f43584e3a206275726e20616d6f756e7420657863656564732062616c616e6365818301526001600160a01b0385166000908152600f909152919091206001015461126191839063ffffffff6110b516565b6001600160a01b0383166000908152600f6020526040902060010155600b54611290908263ffffffff6113b416565b600b556040805182815290516000916001600160a01b038516916000805160206115068339815191529181900360200190a35050565b6000826112d557506000610583565b828202828482816112e257fe5b04146109715760405162461bcd60e51b81526004018080602001828103825260218152602001806114a16021913960400191505060405180910390fd5b600061097183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113f6565b6001600160a01b0382166000908152600f6020526040812060030154600e548291611392919063ffffffff6113b416565b600a549091506113ac9061077e838663ffffffff6112c616565b949350505050565b600061097183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110b5565b600081836114455760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111095781810151838201526020016110f1565b50600083858161145157fe5b049594505050505056fe43584e3a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f43584e3a20617070726f76652066726f6d20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743584e3a207472616e736665722066726f6d20746865207a65726f206164647265737343584e3a207472616e7366657220746f20746865207a65726f2061646472657373ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef43584e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543584e3a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a264697066735822122017a275c8efdb2b5eb79ce963ca9898804a7030b9337443ffe418296cb3f80a0764736f6c634300060b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b41146103e0578063a457c2d7146103e8578063a694fc3a14610414578063a9059cbb14610431578063dd62ed3e1461045d578063f5b81d711461048b5761014d565b806370a082311461034157806377a930c2146103675780638569e8e21461038d5780638b0e9f3f146103955780638c80fd901461039d5780638f283970146103ba5761014d565b8063313ce56711610115578063313ce5671461028f578063375b3c0a146102ad57806339509351146102b557806342623360146102e157806342966c68146103075780635d3eea91146103245761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f5780631afb38201461022957806323b872dd14610259575b600080fd5b61015a6104dc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b038135169060200135610572565b604080519115158252519081900360200190f35b610217610589565b60408051918252519081900360200190f35b6102576004803603604081101561023f57600080fd5b506001600160a01b038135169060200135151561058f565b005b6101fb6004803603606081101561026f57600080fd5b506001600160a01b03813581169160208101359091169060400135610606565b610297610678565b6040805160ff9092168252519081900360200190f35b610217610681565b6101fb600480360360408110156102cb57600080fd5b506001600160a01b038135169060200135610687565b610217600480360360208110156102f757600080fd5b50356001600160a01b03166106c6565b6102576004803603602081101561031d57600080fd5b50356106e4565b6102576004803603602081101561033a57600080fd5b5035610743565b6102176004803603602081101561035757600080fd5b50356001600160a01b03166108eb565b6102176004803603602081101561037d57600080fd5b50356001600160a01b0316610909565b610217610978565b610217610a3b565b610217600480360360208110156103b357600080fd5b5035610a41565b610257600480360360208110156103d057600080fd5b50356001600160a01b0316610a71565b61015a610ac7565b6101fb600480360360408110156103fe57600080fd5b506001600160a01b038135169060200135610b25565b6102576004803603602081101561042a57600080fd5b5035610b7d565b6101fb6004803603604081101561044757600080fd5b506001600160a01b038135169060200135610c6a565b6102176004803603604081101561047357600080fd5b506001600160a01b0381358116916020013516610c77565b6104b1600480360360208110156104a157600080fd5b50356001600160a01b0316610ca6565b6040805195865260208601949094528484019290925260608401526080830152519081900360a00190f35b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105675780601f1061053c57610100808354040283529160200191610567565b820191906000526020600020905b81548152906001019060200180831161054a57829003601f168201915b505050505090505b90565b600061057f338484610ceb565b5060015b92915050565b600b5490565b6010546001600160a01b031633146105a657600080fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff1916851515908117909155825190815291517f4de1c8714e233d8c8a18a3b9ef875414d119ff7ed50d0dddd686ab7278b2fb6c9281900390910190a25050565b6000610613848484610df1565b61066e843361066985604051806060016040528060268152602001611526602691396001600160a01b038a166000908152600f60209081526040808320338452600401909152902054919063ffffffff6110b516565b610ceb565b5060019392505050565b60035460ff1690565b60095490565b336000818152600f602090815260408083206001600160a01b0387168452600401909152812054909161057f918590610669908663ffffffff61114c16565b6001600160a01b03166000908152600f602052604090206002015490565b336000908152600f602052604090206001015481111561070357600080fd5b61070d33826111a6565b6040805182815290517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9181900360200190a150565b336000908152600f602052604090206002015481111561076257600080fd5b600061078a606461077e600654856112c690919063ffffffff16565b9063ffffffff61131f16565b905060006107a8606461077e600754866112c690919063ffffffff16565b905060006107b63385611361565b336000908152600f60205260409020600101549091506107dc908263ffffffff61114c16565b336000908152600f6020526040902060010155600c54610802908563ffffffff6113b416565b600c819055600a54610832916108239161077e90869063ffffffff6112c616565b600e549063ffffffff61114c16565b600e556000610847858563ffffffff6113b416565b336000908152600f602052604090206001015490915061086d908263ffffffff61114c16565b336000908152600f60205260409020600181019190915560020154610898908663ffffffff6113b416565b336000818152600f6020908152604091829020600201939093558051888152905191927fb24546d975e2628748efc9aced80665e0fad66272033e5c0ea25fd3afac9979592918290030190a25050505050565b6001600160a01b03166000908152600f602052604090206001015490565b6001600160a01b0381166000908152600f6020526040812060030154600e54829161093a919063ffffffff6113b416565b600a546001600160a01b0385166000908152600f60205260409020600201549192506109719161077e90849063ffffffff6112c616565b9392505050565b60008061098433610909565b90508061099557600091505061056f565b600e54336000908152600f602052604090206003810191909155600101546109c3908263ffffffff61114c16565b336000818152600f60209081526040918290206001019390935580518481529051919230926000805160206115068339815191529281900390910190a360408051828152905133917f1c82532ab965ecfb565b9b4850bfe668c138f126f491e3b46199b3d5cb95d811919081900360200190a2905090565b600c5490565b6010546000906001600160a01b03163314610a5b57600080fd5b60008211610a6857600080fd5b50600981905590565b6010546001600160a01b03163314610a8857600080fd5b336000908152600f6020526040902060010154610aa6908290610c6a565b50610ab281600161058f565b50601080546001600160a01b03191633179055565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156105675780601f1061053c57610100808354040283529160200191610567565b600061057f33846106698560405180606001604052806023815260200161145c60239139336000908152600f602090815260408083206001600160a01b038d168452600401909152902054919063ffffffff6110b516565b80610b87336108eb565b1015610b9257600080fd5b600954811015610ba157600080fd5b610ba9610978565b50600c54610bbd908263ffffffff61114c16565b600c55336000908152600f6020526040902060010154610be3908263ffffffff6113b416565b336000908152600f60205260409020600181019190915560020154610c0e908263ffffffff61114c16565b336000818152600f60209081526040918290206002810194909455600e546003909401939093558051848152905191927febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a92918290030190a250565b600061057f338484610df1565b6001600160a01b039182166000908152600f602090815260408083209390941682526004909201909152205490565b6000806000806000610cb6610589565b610cbe610a3b565b610cc7886108eb565b610cd0896106c6565b610cd98a610909565b939a9299509097509550909350915050565b6001600160a01b038316610d305760405162461bcd60e51b815260040180806020018281038252602281526020018061147f6022913960400191505060405180910390fd5b6001600160a01b038216610d8b576040805162461bcd60e51b815260206004820181905260248201527f43584e3a20617070726f766520746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6001600160a01b038381166000818152600f602090815260408083209487168084526004909501825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e365760405162461bcd60e51b81526004018080602001828103825260238152602001806114c26023913960400191505060405180910390fd5b6001600160a01b038216610e7b5760405162461bcd60e51b81526004018080602001828103825260218152602001806114e56021913960400191505060405180910390fd5b80610e85846108eb565b1015610e9057600080fd5b610ed68160405180606001604052806024815260200161154c602491396001600160a01b0386166000908152600f6020526040902060010154919063ffffffff6110b516565b6001600160a01b0384166000908152600f6020526040812060010191909155600454610f109060649061077e90859063ffffffff6112c616565b9050600854600b600001541080610f3f57506001600160a01b0384166000908152600f602052604090205460ff165b15610f48575060005b6000610f5a838363ffffffff6113b416565b6001600160a01b0385166000908152600f6020526040902060010154909150610f89908263ffffffff61114c16565b6001600160a01b038086166000818152600f6020908152604091829020600101949094558051858152905191939289169260008051602061150683398151915292918290030190a381156110ae57600c5415611035576000610ffb606461077e600554876112c690919063ffffffff16565b905061101e610823600b6001015461077e600a54856112c690919063ffffffff16565b600e55611031838263ffffffff6113b416565b9250505b600b54611048908363ffffffff6113b416565b600b556040805183815290516000916001600160a01b038816916000805160206115068339815191529181900360200190a36040805183815290517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9181900360200190a15b5050505050565b600081848411156111445760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111095781810151838201526020016110f1565b50505050905090810190601f1680156111365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610971576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611201576040805162461bcd60e51b815260206004820152601f60248201527f43584e3a206275726e2066726f6d20746865207a65726f206164647265737300604482015290519081900360640190fd5b60408051808201825260208082527f43584e3a206275726e20616d6f756e7420657863656564732062616c616e6365818301526001600160a01b0385166000908152600f909152919091206001015461126191839063ffffffff6110b516565b6001600160a01b0383166000908152600f6020526040902060010155600b54611290908263ffffffff6113b416565b600b556040805182815290516000916001600160a01b038516916000805160206115068339815191529181900360200190a35050565b6000826112d557506000610583565b828202828482816112e257fe5b04146109715760405162461bcd60e51b81526004018080602001828103825260218152602001806114a16021913960400191505060405180910390fd5b600061097183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113f6565b6001600160a01b0382166000908152600f6020526040812060030154600e548291611392919063ffffffff6113b416565b600a549091506113ac9061077e838663ffffffff6112c616565b949350505050565b600061097183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110b5565b600081836114455760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111095781810151838201526020016110f1565b50600083858161145157fe5b049594505050505056fe43584e3a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f43584e3a20617070726f76652066726f6d20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743584e3a207472616e736665722066726f6d20746865207a65726f206164647265737343584e3a207472616e7366657220746f20746865207a65726f2061646472657373ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef43584e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543584e3a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a264697066735822122017a275c8efdb2b5eb79ce963ca9898804a7030b9337443ffe418296cb3f80a0764736f6c634300060b0033

Deployed Bytecode Sourcemap

11974:14128:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14332:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16945:160;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16945:160:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15405:97;;;:::i;:::-;;;;;;;;;;;;;;;;22646:173;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22646:173:0;;;;;;;;;;:::i;:::-;;17575:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17575:321:0;;;;;;;;;;;;;;;;;:::i;15257:85::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25819;;;:::i;18303:229::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18303:229:0;;;;;;;;:::i;15694:120::-;;;;;;;;;;;;;;;;-1:-1:-1;15694:120:0;-1:-1:-1;;;;;15694:120:0;;:::i;25912:185::-;;;;;;;;;;;;;;;;-1:-1:-1;25912:185:0;;:::i;23388:955::-;;;;;;;;;;;;;;;;-1:-1:-1;23388:955:0;;:::i;15563:123::-;;;;;;;;;;;;;;;;-1:-1:-1;15563:123:0;-1:-1:-1;;;;;15563:123:0;;:::i;24769:270::-;;;;;;;;;;;;;;;;-1:-1:-1;24769:270:0;-1:-1:-1;;;;;24769:270:0;;:::i;24351:410::-;;;:::i;15822:96::-;;;:::i;25594:217::-;;;;;;;;;;;;;;;;-1:-1:-1;25594:217:0;;:::i;15926:267::-;;;;;;;;;;;;;;;;-1:-1:-1;15926:267:0;-1:-1:-1;;;;;15926:267:0;;:::i;14536:89::-;;;:::i;19033:278::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19033:278:0;;;;;;;;:::i;22827:553::-;;;;;;;;;;;;;;;;-1:-1:-1;22827:553:0;;:::i;16408:174::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16408:174:0;;;;;;;;:::i;16643:157::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16643:157:0;;;;;;;;;;:::i;25318:268::-;;;;;;;;;;;;;;;;-1:-1:-1;25318:268:0;-1:-1:-1;;;;;25318:268:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14332:85;14404:5;14397:12;;;;;;;;-1:-1:-1;;14397:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14371:13;;14397:12;;14404:5;;14397:12;;14404:5;14397:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14332:85;;:::o;16945:160::-;17021:4;17038:37;17047:10;17059:7;17068:6;17038:8;:37::i;:::-;-1:-1:-1;17093:4:0;16945:160;;;;;:::o;15405:97::-;15476:6;:18;15405:97;:::o;22646:173::-;22726:12;;-1:-1:-1;;;;;22726:12:0;22712:10;:26;22704:35;;;;;;-1:-1:-1;;;;;22744:21:0;;;;;;:14;:21;;;;;;;;;:37;;-1:-1:-1;;22744:37:0;;;;;;;;;;22791:23;;;;;;;;;;;;;;;;;22646:173;;:::o;17575:321::-;17674:4;17691:36;17701:6;17709:9;17720:6;17691:9;:36::i;:::-;17738:128;17747:6;17755:10;17767:98;17816:6;17767:98;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17767:22:0;;;;;;:14;:22;;;;;;;;17800:10;17767:44;;:14;:32;:44;;;;;;;:98;;:48;:98;:::i;:::-;17738:8;:128::i;:::-;-1:-1:-1;17884:4:0;17575:321;;;;;:::o;15257:85::-;15325:9;;;;15257:85;:::o;25819:::-;25886:10;;25819:85;:::o;18303:229::-;18419:10;18393:4;18440:26;;;:14;:26;;;;;;;;-1:-1:-1;;;;;18440:45:0;;;;:14;:36;:45;;;;;;18393:4;;18410:92;;18431:7;;18440:61;;18490:10;18440:61;:49;:61;:::i;15694:120::-;-1:-1:-1;;;;;15776:23:0;15749:7;15776:23;;;:14;:23;;;;;:30;;;;15694:120::o;25912:185::-;26002:10;25987:26;;;;:14;:26;;;;;:34;;;25977:44;;;25969:53;;;;;;26035:24;26041:10;26052:6;26035:5;:24::i;:::-;26077:12;;;;;;;;;;;;;;;;;25912:185;:::o;23388:955::-;23472:10;23457:26;;;;:14;:26;;;;;:33;;;:43;-1:-1:-1;23457:43:0;23449:52;;;;;;23514:14;23531:36;23563:3;23531:27;23542:15;;23531:6;:10;;:27;;;;:::i;:::-;:31;:36;:31;:36;:::i;:::-;23514:53;;23580:17;23600:38;23634:3;23600:29;23611:17;;23600:6;:10;;:29;;;;:::i;:38::-;23580:58;;23659:25;23687:39;23708:10;23719:6;23687:20;:39::i;:::-;23799:10;23784:26;;;;:14;:26;;;;;:34;;;23659:67;;-1:-1:-1;23784:57:0;;23659:67;23784:57;:38;:57;:::i;:::-;23762:10;23747:26;;;;:14;:26;;;;;:34;;:94;23893:18;;:30;;23916:6;23893:30;:22;:30;:::i;:::-;23872:18;:51;;;23994:6;;23957:69;;23980:45;;:21;;:9;;:21;:13;:21;:::i;:45::-;23957:18;;;:69;:22;:69;:::i;:::-;23936:18;:90;24047:16;24066:18;:6;24077;24066:18;:10;:18;:::i;:::-;24157:10;24142:26;;;;:14;:26;;;;;:34;;;24047:37;;-1:-1:-1;24142:48:0;;24047:37;24142:48;:38;:48;:::i;:::-;24120:10;24105:26;;;;:14;:26;;;;;:34;;;:85;;;;24237:33;;;:45;;24275:6;24237:45;:37;:45;:::i;:::-;24216:10;24201:26;;;;:14;:26;;;;;;;;;:33;;:81;;;;24308:27;;;;;;;24216:10;;24308:27;;;;;;;;;23388:955;;;;;:::o;15563:123::-;-1:-1:-1;;;;;15647:23:0;15620:7;15647:23;;;:14;:23;;;;;:31;;;;15563:123::o;24769:270::-;-1:-1:-1;;;;;24899:22:0;;24829:7;24899:22;;;:14;:22;;;;;:34;;;24876:18;;24829:7;;24876:58;;:18;:58;:22;:58;:::i;:::-;25016:6;;-1:-1:-1;;;;;24981:22:0;;;;;;:14;:22;;;;;:29;;;24849:85;;-1:-1:-1;24960:63:0;;:51;;24849:85;;24960:51;:20;:51;:::i;:63::-;24945:79;24769:270;-1:-1:-1;;;24769:270:0:o;24351:410::-;24396:7;24415:11;24429:25;24443:10;24429:13;:25::i;:::-;24415:39;-1:-1:-1;24462:8:0;24459:35;;24487:1;24480:8;;;;;24459:35;24543:18;;24517:10;24502:26;;;;:14;:26;;;;;24543:18;24502:38;;:59;;;;24603:34;;;:43;;24642:3;24603:43;:38;:43;:::i;:::-;24581:10;24566:26;;;;:14;:26;;;;;;;;;:34;;:80;;;;24656:40;;;;;;;24581:10;;24673:4;;-1:-1:-1;;;;;;;;;;;24656:40:0;;;;;;;;;24706:26;;;;;;;;24716:10;;24706:26;;;;;;;;;;24750:3;-1:-1:-1;24351:410:0;:::o;15822:96::-;15892:18;;15822:96;:::o;25594:217::-;25699:12;;25656:7;;-1:-1:-1;;;;;25699:12:0;25685:10;:26;25677:35;;;;;;25741:1;25732:6;:10;25724:19;;;;;;-1:-1:-1;25755:10:0;:19;;;;25594:217::o;15926:267::-;16009:12;;-1:-1:-1;;;;;16009:12:0;15995:10;:26;15987:35;;;;;;16081:10;16066:26;;;;:14;:26;;;;;:34;;;16053:48;;16062:3;;16053:8;:48::i;:::-;;16112:17;16120:3;16124:4;16112:7;:17::i;:::-;-1:-1:-1;16150:12:0;:25;;-1:-1:-1;;;;;;16150:25:0;16165:10;16150:25;;;15926:267::o;14536:89::-;14610:7;14603:14;;;;;;;-1:-1:-1;;14603:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14577:13;;14603:14;;14610:7;;14603:14;;14610:7;14603:14;;;;;;;;;;;;;;;;;;;;;;;;19033:278;19128:4;19145:136;19154:10;19166:7;19175:105;19225:15;19175:105;;;;;;;;;;;;;;;;;19190:10;19175:26;;;;:14;:26;;;;;;;;-1:-1:-1;;;;;19175:45:0;;;;:14;:36;:45;;;;;;;:105;;:49;:105;:::i;22827:553::-;22919:6;22894:21;22904:10;22894:9;:21::i;:::-;:31;;22886:40;;;;;;22955:10;;22945:6;:20;;22937:29;;;;;;22987:12;:10;:12::i;:::-;-1:-1:-1;23033:18:0;;:30;;23056:6;23033:30;:22;:30;:::i;:::-;23012:18;:51;23126:10;23111:26;;;;:14;:26;;;;;23012:18;23111:34;;:46;;23150:6;23111:46;:38;:46;:::i;:::-;23089:10;23074:26;;;;:14;:26;;;;;:34;;;:83;;;;23204:33;;;:45;;23242:6;23204:45;:37;:45;:::i;:::-;23183:10;23168:26;;;;:14;:26;;;;;;;;;:33;;;:81;;;;23301:18;;;23260:38;;;:59;;;;23347:25;;;;;;;23183:10;;23347:25;;;;;;;;;22827:553;:::o;16408:174::-;16485:4;16502:40;16512:10;16524:9;16535:6;16502:9;:40::i;16643:157::-;-1:-1:-1;;;;;16752:21:0;;;16725:7;16752:21;;;:14;:21;;;;;;;;:40;;;;;;:14;:31;;;:40;;;;;;16643:157::o;25318:268::-;25379:24;25404:19;25424:15;25440:14;25455:20;25494:13;:11;:13::i;:::-;25508:12;:10;:12::i;:::-;25522:17;25532:6;25522:9;:17::i;:::-;25540:15;25548:6;25540:7;:15::i;:::-;25556:21;25570:6;25556:13;:21::i;:::-;25486:92;;;;-1:-1:-1;25486:92:0;;-1:-1:-1;25486:92:0;-1:-1:-1;25486:92:0;;-1:-1:-1;25318:268:0;-1:-1:-1;;25318:268:0:o;22283:355::-;-1:-1:-1;;;;;22385:19:0;;22377:66;;;;-1:-1:-1;;;22377:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22462:21:0;;22454:66;;;;;-1:-1:-1;;;22454:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22533:21:0;;;;;;;:14;:21;;;;;;;;:40;;;;;;:14;:31;;;:40;;;;;;:49;;;22598:32;;;;;;;;;;;;;;;;;22283:355;;;:::o;19801:1318::-;-1:-1:-1;;;;;19907:20:0;;19899:68;;;;-1:-1:-1;;;19899:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19986:23:0;;19978:69;;;;-1:-1:-1;;;19978:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20087:6;20066:17;20076:6;20066:9;:17::i;:::-;:27;;20058:36;;;;;;20140:82;20175:6;20140:82;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20140:22:0;;;;;;:14;:22;;;;;:30;;;;:82;;:34;:82;:::i;:::-;-1:-1:-1;;;;;20107:22:0;;;;;;:14;:22;;;;;:30;;:115;;;;:14;20263:9;20252:30;;20278:3;;20252:21;;:6;;:21;:10;:21;:::i;:30::-;20235:47;;20319:12;;20298:6;:18;;;:33;:65;;;-1:-1:-1;;;;;;20335:22:0;;;;;;:14;:22;;;;;:28;;;20298:65;20295:106;;;-1:-1:-1;20388:1:0;20295:106;20411:20;20434:18;:6;20445;20434:18;:10;:18;:::i;:::-;-1:-1:-1;;;;;20501:25:0;;;;;;:14;:25;;;;;:33;;;20411:41;;-1:-1:-1;20501:51:0;;20411:41;20501:51;:37;:51;:::i;:::-;-1:-1:-1;;;;;20465:25:0;;;;;;;:14;:25;;;;;;;;;:33;;:87;;;;20578:39;;;;;;;20465:25;;20578:39;;;;-1:-1:-1;;;;;;;;;;;20578:39:0;;;;;;;;20633:10;;20630:470;;20662:18;;:22;20659:281;;20704:20;20727:32;20755:3;20727:23;20738:11;;20727:6;:10;;:23;;;;:::i;:32::-;20704:55;;20800:72;20823:48;20852:6;:18;;;20823:24;20840:6;;20823:12;:16;;:24;;;;:::i;20800:72::-;20779:18;:93;20900:24;:6;20911:12;20900:24;:10;:24;:::i;:::-;20891:33;;20659:281;;20977:6;:18;:30;;21000:6;20977:30;:22;:30;:::i;:::-;20956:6;:51;21027:38;;;;;;;;20956:18;;-1:-1:-1;;;;;21027:38:0;;;-1:-1:-1;;;;;;;;;;;21027:38:0;;;;;;;;21076:12;;;;;;;;;;;;;;;;;20630:470;19801:1318;;;;;:::o;7190:192::-;7276:7;7312:12;7304:6;;;;7296:29;;;;-1:-1:-1;;;7296:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7348:5:0;;;7190:192::o;6287:181::-;6345:7;6377:5;;;6401:6;;;;6393:46;;;;;-1:-1:-1;;;6393:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21451:392;-1:-1:-1;;;;;21535:21:0;;21527:65;;;;;-1:-1:-1;;;21527:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21641:79;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21641:23:0;;-1:-1:-1;21641:23:0;;;:14;:23;;;;;;;:31;;;:79;;21677:6;;21641:79;:35;:79;:::i;:::-;-1:-1:-1;;;;;21607:23:0;;;;;;:14;:23;;;;;:31;;:113;:6;21752:18;:30;;21775:6;21752:30;:22;:30;:::i;:::-;21731:6;:51;21798:37;;;;;;;;21731:18;;-1:-1:-1;;;;;21798:37:0;;;-1:-1:-1;;;;;;;;;;;21798:37:0;;;;;;;;21451:392;;:::o;7641:471::-;7699:7;7944:6;7940:47;;-1:-1:-1;7974:1:0;7967:8;;7940:47;8011:5;;;8015:1;8011;:5;:1;8035:5;;;;;:10;8027:56;;;;-1:-1:-1;;;8027:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8588:132;8646:7;8673:39;8677:1;8680;8673:39;;;;;;;;;;;;;;;;;:3;:39::i;25045:259::-;-1:-1:-1;;;;;25197:22:0;;25130:7;25197:22;;;:14;:22;;;;;:34;;;25174:18;;25130:7;;25174:58;;:18;:58;:22;:58;:::i;:::-;25291:6;;25147:85;;-1:-1:-1;25258:40:0;;:28;25147:85;25279:6;25258:28;:20;:28;:::i;:40::-;25243:56;25045:259;-1:-1:-1;;;;25045:259:0:o;6751:136::-;6809:7;6836:43;6840:1;6843;6836:43;;;;;;;;;;;;;;;;;:3;:43::i;9216:278::-;9302:7;9337:12;9330:5;9322:28;;;;-1:-1:-1;;;9322:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9361:9;9377:1;9373;:5;;;;;;;9216:278;-1:-1:-1;;;;;9216:278:0:o

Swarm Source

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