ETH Price: $3,691.21 (+1.50%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve215272522025-01-01 4:33:115 days ago1735705991IN
BIOPset: BIOP Token
0 ETH0.000158063.27425959
Approve199742192024-05-29 8:06:47222 days ago1716970007IN
BIOPset: BIOP Token
0 ETH0.0003464113.14064362
Approve189877052024-01-12 2:00:47360 days ago1705024847IN
BIOPset: BIOP Token
0 ETH0.0004573317.3481518
Approve170829552023-04-19 20:16:47627 days ago1681935407IN
BIOPset: BIOP Token
0 ETH0.002279686.47305587
Approve165748802023-02-07 5:40:23699 days ago1675748423IN
BIOPset: BIOP Token
0 ETH0.0005282520.03860074
Transfer149668172022-06-15 9:38:40936 days ago1655285920IN
BIOPset: BIOP Token
0 ETH0.00585947113.35574731
Transfer142877222022-02-27 10:39:431044 days ago1645958383IN
BIOPset: BIOP Token
0 ETH0.0011250623.99943547
Approve138643292021-12-23 23:12:101109 days ago1640301130IN
BIOPset: BIOP Token
0 ETH0.0038433679.00672411
Approve138596432021-12-23 5:45:241110 days ago1640238324IN
BIOPset: BIOP Token
0 ETH0.0030503162.70425449
Approve138019172021-12-14 7:25:221119 days ago1639466722IN
BIOPset: BIOP Token
0 ETH0.0030696763.10230982
Approve136196702021-11-15 9:58:171148 days ago1636970297IN
BIOPset: BIOP Token
0 ETH0.00813955167.32219755
Approve135376022021-11-02 12:51:421161 days ago1635857502IN
BIOPset: BIOP Token
0 ETH0.00883208181.55819906
Approve135352372021-11-02 3:32:201161 days ago1635823940IN
BIOPset: BIOP Token
0 ETH0.00717598147.5143838
Transfer135344692021-11-02 0:41:251161 days ago1635813685IN
BIOPset: BIOP Token
0 ETH0.00523565181.19599866
Approve135335232021-11-01 21:14:501161 days ago1635801290IN
BIOPset: BIOP Token
0 ETH0.00719042147.81114286
Approve135334942021-11-01 21:10:001161 days ago1635801000IN
BIOPset: BIOP Token
0 ETH0.00870439178.93344523
Approve135207732021-10-30 21:07:351163 days ago1635628055IN
BIOPset: BIOP Token
0 ETH0.00655125134.67210347
Approve135049552021-10-28 9:37:191166 days ago1635413839IN
BIOPset: BIOP Token
0 ETH0.00564293116
Approve134962192021-10-27 0:33:371167 days ago1635294817IN
BIOPset: BIOP Token
0 ETH0.00766496157.56628182
Approve134235362021-10-15 15:49:551179 days ago1634312995IN
BIOPset: BIOP Token
0 ETH0.00615356126.49684542
Approve134195892021-10-15 0:52:321179 days ago1634259152IN
BIOPset: BIOP Token
0 ETH0.00586246120.51278142
Transfer133989832021-10-11 18:50:321183 days ago1633978232IN
BIOPset: BIOP Token
0 ETH0.0033634697.26914369
Approve133518302021-10-04 9:36:411190 days ago1633340201IN
BIOPset: BIOP Token
0 ETH0.0023051847.38699572
Approve132966372021-09-25 18:35:431199 days ago1632594943IN
BIOPset: BIOP Token
0 ETH0.0030383662.45865602
Approve132639582021-09-20 17:24:061204 days ago1632158646IN
BIOPset: BIOP Token
0 ETH0.00575228118.2478514
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BIOPTokenV4

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-22
*/

pragma solidity ^0.6.6;

// SPDX-License-Identifier: MIT
/**
 * @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;
    }
}

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view 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 { }
}

contract BIOPTokenV4 is ERC20 {
    bool public whitelistEnabled = false;
    mapping(address=>bool) public whitelist;
    address public owner;

    constructor(string memory name_, string memory symbol_) public ERC20(name_, symbol_) {
      _mint(msg.sender, 31000000000000000000000000);
      whitelistEnabled = true;
      whitelist[msg.sender] = true;
      owner = msg.sender;
    }

     /**
    * @dev enables DAO to burn tokens 
    * @param amount the amount of tokens to burn
    */
    function burn(uint256 amount) public {
      require(balanceOf(msg.sender) >= amount, "insufficent balance");
      _burn(msg.sender, amount);
    }

    //Temp whitelist functionality

  /**
   * @dev Reverts if called by anyone other than the contract owner.
   */
    modifier onlyOwner() {
      require(msg.sender == owner, "Only callable by owner");
      _;
    }

     /**
    * @dev transfer ownership
    * @param newOwner_ the new address to assume ownership responsiblity (the multisig)
    */
    function transferOwner(address payable newOwner_) public onlyOwner {
      owner = newOwner_;
    }

   /**
    * @dev enable a address to access the approve function while the whitelist is active
    * @param user the address to approve
    */
    function addToWhitelist(address payable user) public onlyOwner {
      whitelist[user] = true;
    }

   /**
    * @dev disable a address to access the approve function while the whitelist is active
    * @param user the address to revoke access from
    */
    function removeFromWhitelist(address payable user) public onlyOwner {
      whitelist[user] = false;
    }

    /**
    * @dev end the whitelist. This is a one time call, the whitelist cannot be renabled
    */
    function disableWhitelist() public onlyOwner {
      whitelistEnabled = false;
    }

    /**
    * @dev works like normal erc20 approve except when whitelist is enabled then sender must be whitelisted or revert.
    */
    function approve(address spender, uint256 amount) public override returns (bool) {      
      if (whitelistEnabled) {
        require(whitelist[_msgSender()] == true, "unapproved sender");
      }
      _approve(_msgSender(), spender, amount);
      return true;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address payable","name":"user","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableWhitelist","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"user","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newOwner_","type":"address"}],"name":"transferOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526005805461ff00191690553480156200001c57600080fd5b506040516200146b3803806200146b833981810160405260408110156200004257600080fd5b81019080805160405193929190846401000000008211156200006357600080fd5b9083019060208201858111156200007957600080fd5b82516401000000008111828201881017156200009457600080fd5b82525081516020918201929091019080838360005b83811015620000c3578181015183820152602001620000a9565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b9083019060208201858111156200012b57600080fd5b82516401000000008111828201881017156200014657600080fd5b82525081516020918201929091019080838360005b83811015620001755781810151838201526020016200015b565b50505050905090810190601f168015620001a35780820380516001836020036101000a031916815260200191505b50604052505082518391508290620001c3906003906020850190620003cc565b508051620001d9906004906020840190620003cc565b50506005805460ff191660121790555062000209336a19a4815e0ad0c67f0000006001600160e01b036200024d16565b50506005805461ff001916610100179055336000818152600660205260409020805460ff19166001179055600780546001600160a01b031916909117905562000471565b6001600160a01b038216620002a9576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002c0600083836001600160e01b036200036516565b620002dc816002546200036a60201b62000cc01790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200030f91839062000cc06200036a821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620003c5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200040f57805160ff19168380011785556200043f565b828001600101855582156200043f579182015b828111156200043f57825182559160200191906001019062000422565b506200044d92915062000451565b5090565b6200046e91905b808211156200044d576000815560010162000458565b90565b610fea80620004816000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610368578063a9059cbb14610394578063d6b0f484146103c0578063dd62ed3e146103c8578063e43252d7146103f657610121565b806370a08231146102ca5780638ab1d681146102f05780638da5cb5b1461031657806395d89b411461033a5780639b19251a1461034257610121565b8063313ce567116100f4578063313ce56714610233578063395093511461025157806342966c681461027d5780634fb2e45d1461029c57806351fb012d146102c257610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e61041c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356104b2565b604080519115158252519081900360200190f35b6101eb610553565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b03813581169160208101359091169060400135610559565b61023b6105e6565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356105ef565b61029a6004803603602081101561029357600080fd5b5035610643565b005b61029a600480360360208110156102b257600080fd5b50356001600160a01b03166106a3565b6101cf61071d565b6101eb600480360360208110156102e057600080fd5b50356001600160a01b031661072b565b61029a6004803603602081101561030657600080fd5b50356001600160a01b0316610746565b61031e6107bf565b604080516001600160a01b039092168252519081900360200190f35b61012e6107ce565b6101cf6004803603602081101561035857600080fd5b50356001600160a01b031661082f565b6101cf6004803603604081101561037e57600080fd5b506001600160a01b038135169060200135610844565b6101cf600480360360408110156103aa57600080fd5b506001600160a01b0381351690602001356108b2565b61029a6108c6565b6101eb600480360360408110156103de57600080fd5b506001600160a01b038135811691602001351661092b565b61029a6004803603602081101561040c57600080fd5b50356001600160a01b0316610956565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b600554600090610100900460ff161561053857600660006104d16109d2565b6001600160a01b0316815260208101919091526040016000205460ff161515600114610538576040805162461bcd60e51b81526020600482015260116024820152703ab730b8383937bb32b21039b2b73232b960791b604482015290519081900360640190fd5b61054a6105436109d2565b84846109d6565b50600192915050565b60025490565b6000610566848484610ac2565b6105dc846105726109d2565b6105d785604051806060016040528060288152602001610efe602891396001600160a01b038a166000908152600160205260408120906105b06109d2565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c2916565b6109d6565b5060019392505050565b60055460ff1690565b600061054a6105fc6109d2565b846105d7856001600061060d6109d2565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610cc016565b8061064d3361072b565b1015610696576040805162461bcd60e51b8152602060048201526013602482015272696e737566666963656e742062616c616e636560681b604482015290519081900360640190fd5b6106a03382610d21565b50565b6007546001600160a01b031633146106fb576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b600554610100900460ff1681565b6001600160a01b031660009081526020819052604090205490565b6007546001600160a01b0316331461079e576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6007546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a85780601f1061047d576101008083540402835291602001916104a8565b60066020526000908152604090205460ff1681565b600061054a6108516109d2565b846105d785604051806060016040528060258152602001610f90602591396001600061087b6109d2565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c2916565b600061054a6108bf6109d2565b8484610ac2565b6007546001600160a01b0316331461091e576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b6005805461ff0019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031633146109ae576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b3390565b6001600160a01b038316610a1b5760405162461bcd60e51b8152600401808060200182810382526024815260200180610f6c6024913960400191505060405180910390fd5b6001600160a01b038216610a605760405162461bcd60e51b8152600401808060200182810382526022815260200180610eb66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b075760405162461bcd60e51b8152600401808060200182810382526025815260200180610f476025913960400191505060405180910390fd5b6001600160a01b038216610b4c5760405162461bcd60e51b8152600401808060200182810382526023815260200180610e716023913960400191505060405180910390fd5b610b57838383610e29565b610b9a81604051806060016040528060268152602001610ed8602691396001600160a01b038616600090815260208190526040902054919063ffffffff610c2916565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610bcf908263ffffffff610cc016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cb85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c7d578181015183820152602001610c65565b50505050905090810190601f168015610caa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d1a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d665760405162461bcd60e51b8152600401808060200182810382526021815260200180610f266021913960400191505060405180910390fd5b610d7282600083610e29565b610db581604051806060016040528060228152602001610e94602291396001600160a01b038516600090815260208190526040902054919063ffffffff610c2916565b6001600160a01b038316600090815260208190526040902055600254610de1908263ffffffff610e2e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000610d1a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c2956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122015c990bd785b8eb42493ef7f3fafd49f2cffa9d7115d27b91eae05707367d27064736f6c6343000606003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610368578063a9059cbb14610394578063d6b0f484146103c0578063dd62ed3e146103c8578063e43252d7146103f657610121565b806370a08231146102ca5780638ab1d681146102f05780638da5cb5b1461031657806395d89b411461033a5780639b19251a1461034257610121565b8063313ce567116100f4578063313ce56714610233578063395093511461025157806342966c681461027d5780634fb2e45d1461029c57806351fb012d146102c257610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e61041c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356104b2565b604080519115158252519081900360200190f35b6101eb610553565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b03813581169160208101359091169060400135610559565b61023b6105e6565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356105ef565b61029a6004803603602081101561029357600080fd5b5035610643565b005b61029a600480360360208110156102b257600080fd5b50356001600160a01b03166106a3565b6101cf61071d565b6101eb600480360360208110156102e057600080fd5b50356001600160a01b031661072b565b61029a6004803603602081101561030657600080fd5b50356001600160a01b0316610746565b61031e6107bf565b604080516001600160a01b039092168252519081900360200190f35b61012e6107ce565b6101cf6004803603602081101561035857600080fd5b50356001600160a01b031661082f565b6101cf6004803603604081101561037e57600080fd5b506001600160a01b038135169060200135610844565b6101cf600480360360408110156103aa57600080fd5b506001600160a01b0381351690602001356108b2565b61029a6108c6565b6101eb600480360360408110156103de57600080fd5b506001600160a01b038135811691602001351661092b565b61029a6004803603602081101561040c57600080fd5b50356001600160a01b0316610956565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b600554600090610100900460ff161561053857600660006104d16109d2565b6001600160a01b0316815260208101919091526040016000205460ff161515600114610538576040805162461bcd60e51b81526020600482015260116024820152703ab730b8383937bb32b21039b2b73232b960791b604482015290519081900360640190fd5b61054a6105436109d2565b84846109d6565b50600192915050565b60025490565b6000610566848484610ac2565b6105dc846105726109d2565b6105d785604051806060016040528060288152602001610efe602891396001600160a01b038a166000908152600160205260408120906105b06109d2565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c2916565b6109d6565b5060019392505050565b60055460ff1690565b600061054a6105fc6109d2565b846105d7856001600061060d6109d2565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610cc016565b8061064d3361072b565b1015610696576040805162461bcd60e51b8152602060048201526013602482015272696e737566666963656e742062616c616e636560681b604482015290519081900360640190fd5b6106a03382610d21565b50565b6007546001600160a01b031633146106fb576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b600554610100900460ff1681565b6001600160a01b031660009081526020819052604090205490565b6007546001600160a01b0316331461079e576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6007546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a85780601f1061047d576101008083540402835291602001916104a8565b60066020526000908152604090205460ff1681565b600061054a6108516109d2565b846105d785604051806060016040528060258152602001610f90602591396001600061087b6109d2565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c2916565b600061054a6108bf6109d2565b8484610ac2565b6007546001600160a01b0316331461091e576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b6005805461ff0019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031633146109ae576040805162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b3390565b6001600160a01b038316610a1b5760405162461bcd60e51b8152600401808060200182810382526024815260200180610f6c6024913960400191505060405180910390fd5b6001600160a01b038216610a605760405162461bcd60e51b8152600401808060200182810382526022815260200180610eb66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b075760405162461bcd60e51b8152600401808060200182810382526025815260200180610f476025913960400191505060405180910390fd5b6001600160a01b038216610b4c5760405162461bcd60e51b8152600401808060200182810382526023815260200180610e716023913960400191505060405180910390fd5b610b57838383610e29565b610b9a81604051806060016040528060268152602001610ed8602691396001600160a01b038616600090815260208190526040902054919063ffffffff610c2916565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610bcf908263ffffffff610cc016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610cb85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c7d578181015183820152602001610c65565b50505050905090810190601f168015610caa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d1a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d665760405162461bcd60e51b8152600401808060200182810382526021815260200180610f266021913960400191505060405180910390fd5b610d7282600083610e29565b610db581604051806060016040528060228152602001610e94602291396001600160a01b038516600090815260208190526040902054919063ffffffff610c2916565b6001600160a01b038316600090815260208190526040902055600254610de1908263ffffffff610e2e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6000610d1a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c2956fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122015c990bd785b8eb42493ef7f3fafd49f2cffa9d7115d27b91eae05707367d27064736f6c63430006060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): BIOP
Arg [1] : symbol_ (string): BIOP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 42494f5000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 42494f5000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19858:2305:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19858:2305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;11033: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;11033:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21881:275;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21881:275:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12108:100;;;:::i;:::-;;;;;;;;;;;;;;;;13790:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13790:321:0;;;;;;;;;;;;;;;;;:::i;11960:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14520:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14520:218:0;;;;;;;;:::i;20372:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20372:151:0;;:::i;:::-;;20901:101;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20901:101:0;-1:-1:-1;;;;;20901:101:0;;:::i;19895:36::-;;;:::i;12271:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12271:119:0;-1:-1:-1;;;;;12271:119:0;;:::i;21428:108::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21428:108:0;-1:-1:-1;;;;;21428:108:0;;:::i;19984:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19984:20:0;;;;;;;;;;;;;;11235:87;;;:::i;19938:39::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19938:39:0;-1:-1:-1;;;;;19938:39:0;;:::i;15241:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15241:269:0;;;;;;;;:::i;12603:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12603:175:0;;;;;;;;:::i;21650:86::-;;;:::i;12841:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12841:151:0;;;;;;;;;;:::i;21158:102::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21158:102:0;-1:-1:-1;;;;;21158:102:0;;:::i;11033:83::-;11103:5;11096:12;;;;;;;;-1:-1:-1;;11096:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11070:13;;11096:12;;11103:5;;11096:12;;11103:5;11096:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11033:83;:::o;21881:275::-;21981:16;;21956:4;;21981:16;;;;;21977:104;;;22018:9;:23;22028:12;:10;:12::i;:::-;-1:-1:-1;;;;;22018:23:0;;;;;;;;;;;;-1:-1:-1;22018:23:0;;;;:31;;:23;:31;22010:61;;;;;-1:-1:-1;;;22010:61:0;;;;;;;;;;;;-1:-1:-1;;;22010:61:0;;;;;;;;;;;;;;;22089:39;22098:12;:10;:12::i;:::-;22112:7;22121:6;22089:8;:39::i;:::-;-1:-1:-1;22144:4:0;21881:275;;;;:::o;12108:100::-;12188:12;;12108:100;:::o;13790:321::-;13896:4;13913:36;13923:6;13931:9;13942:6;13913:9;:36::i;:::-;13960:121;13969:6;13977:12;:10;:12::i;:::-;13991:89;14029:6;13991:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13991:19:0;;;;;;:11;:19;;;;;;14011:12;:10;:12::i;:::-;-1:-1:-1;;;;;13991:33:0;;;;;;;;;;;;-1:-1:-1;13991:33:0;;;:89;;:37;:89;:::i;:::-;13960:8;:121::i;:::-;-1:-1:-1;14099:4:0;13790:321;;;;;:::o;11960:83::-;12026:9;;;;11960:83;:::o;14520:218::-;14608:4;14625:83;14634:12;:10;:12::i;:::-;14648:7;14657:50;14696:10;14657:11;:25;14669:12;:10;:12::i;:::-;-1:-1:-1;;;;;14657:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14657:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;20372:151::-;20451:6;20426:21;20436:10;20426:9;:21::i;:::-;:31;;20418:63;;;;;-1:-1:-1;;;20418:63:0;;;;;;;;;;;;-1:-1:-1;;;20418:63:0;;;;;;;;;;;;;;;20490:25;20496:10;20508:6;20490:5;:25::i;:::-;20372:151;:::o;20901:101::-;20705:5;;-1:-1:-1;;;;;20705:5:0;20691:10;:19;20683:54;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;;;;20977:5:::1;:17:::0;;-1:-1:-1;;;;;;20977:17:0::1;-1:-1:-1::0;;;;;20977:17:0;;;::::1;::::0;;;::::1;::::0;;20901:101::o;19895:36::-;;;;;;;;;:::o;12271:119::-;-1:-1:-1;;;;;12364:18:0;12337:7;12364:18;;;;;;;;;;;;12271:119::o;21428:108::-;20705:5;;-1:-1:-1;;;;;20705:5:0;20691:10;:19;20683:54;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21505:15:0::1;21523:5;21505:15:::0;;;:9:::1;:15;::::0;;;;:23;;-1:-1:-1;;21505:23:0::1;::::0;;21428:108::o;19984:20::-;;;-1:-1:-1;;;;;19984:20:0;;:::o;11235:87::-;11307:7;11300:14;;;;;;;;-1:-1:-1;;11300:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11274:13;;11300:14;;11307:7;;11300:14;;11307:7;11300:14;;;;;;;;;;;;;;;;;;;;;;;;19938:39;;;;;;;;;;;;;;;:::o;15241:269::-;15334:4;15351:129;15360:12;:10;:12::i;:::-;15374:7;15383:96;15422:15;15383:96;;;;;;;;;;;;;;;;;:11;:25;15395:12;:10;:12::i;:::-;-1:-1:-1;;;;;15383:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15383:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12603:175::-;12689:4;12706:42;12716:12;:10;:12::i;:::-;12730:9;12741:6;12706:9;:42::i;21650:86::-;20705:5;;-1:-1:-1;;;;;20705:5:0;20691:10;:19;20683:54;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;;;;21704:16:::1;:24:::0;;-1:-1:-1;;21704:24:0::1;::::0;;21650:86::o;12841:151::-;-1:-1:-1;;;;;12957:18:0;;;12930:7;12957:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12841:151::o;21158:102::-;20705:5;;-1:-1:-1;;;;;20705:5:0;20691:10;:19;20683:54;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;-1:-1:-1;;;20683:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21230:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:22;;-1:-1:-1;;21230:22:0::1;21248:4;21230:22;::::0;;21158:102::o;5903:106::-;5991:10;5903:106;:::o;18388:346::-;-1:-1:-1;;;;;18490:19:0;;18482:68;;;;-1:-1:-1;;;18482:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18569:21:0;;18561:68;;;;-1:-1:-1;;;18561:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18642:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18694:32;;;;;;;;;;;;;;;;;18388:346;;;:::o;16000:539::-;-1:-1:-1;;;;;16106:20:0;;16098:70;;;;-1:-1:-1;;;16098:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16187:23:0;;16179:71;;;;-1:-1:-1;;;16179:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16263:47;16284:6;16292:9;16303:6;16263:20;:47::i;:::-;16343:71;16365:6;16343:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16343:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16323:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16448:20;;;;;;;:32;;16473:6;16448:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16425:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16496:35;;;;;;;16425:20;;16496:35;;;;;;;;;;;;;16000:539;;;:::o;1803:192::-;1889:7;1925:12;1917:6;;;;1909:29;;;;-1:-1:-1;;;1909: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;1909:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1961:5:0;;;1803:192::o;900:181::-;958:7;990:5;;;1014:6;;;;1006:46;;;;;-1:-1:-1;;;1006:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1072:1;900:181;-1:-1:-1;;;900:181:0:o;17532:418::-;-1:-1:-1;;;;;17616:21:0;;17608:67;;;;-1:-1:-1;;;17608:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17688:49;17709:7;17726:1;17730:6;17688:20;:49::i;:::-;17771:68;17794:6;17771:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17771:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;17750:18:0;;:9;:18;;;;;;;;;;:89;17865:12;;:24;;17882:6;17865:24;:16;:24;:::i;:::-;17850:12;:39;17905:37;;;;;;;;17931:1;;-1:-1:-1;;;;;17905:37:0;;;;;;;;;;;;17532:418;;:::o;19759:92::-;;;;:::o;1364:136::-;1422:7;1449:43;1453:1;1456;1449:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://15c990bd785b8eb42493ef7f3fafd49f2cffa9d7115d27b91eae05707367d270

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

BIOPset is the binary options settlement protocol. A decentralized solution to provide users with the ability to speculate on the prices of various tokenized assets in a simple easy to use way.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.