ETH Price: $3,296.20 (+5.55%)
Gas: 7 Gwei

Token

BDPToken (BDP)
 

Overview

Max Total Supply

64,923,252.851851851851851851 BDP

Holders

9,679 (0.00%)

Market

Price

$0.19 @ 0.000058 ETH (+2.49%)

Onchain Market Cap

$12,509,996.67

Circulating Supply Market Cap

$4,655,204.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Coinbase 10
Balance
1,299.069937881859424163 BDP

Value
$250.32 ( ~0.075941921441286 Eth) [0.0020%]
0xa9d1e08c7793af67e9d92fe308d5697fb81d3e43
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Powering a liquid marketplace for commercially valuable data.

Market

Volume (24H):$249,291.00
Market Capitalization:$4,655,204.00
Circulating Supply:24,159,174.00 BDP
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BDPToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

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


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/math/SafeMath.sol


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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


pragma solidity >=0.6.0 <0.8.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

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


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

// File: contracts/BDPToken.sol


pragma solidity 0.6.12;




contract BDPToken is ERC20("BDPToken", "BDP"), Ownable {
    using SafeMath for uint256;

    uint256 public NUMBER_BLOCKS_PER_DAY;
    uint256 public cap = 80000000e18 + 1e18;
    address public BDPMaster;
    address public BDPMasterPending;
    uint public setBDPMasterPendingAtBlock;

    uint256 public seedPoolAmount = 24000000e18;

    uint256 constant public PARTNERSHIP_TOTAL_AMOUNT = 20000000e18;
    uint256 constant public PARTNERSHIP_FIRST_MINT = 8000000e18;
    uint256 public partnershipAmount = PARTNERSHIP_TOTAL_AMOUNT;
    uint256 public partnershipMintedAtBlock = 0;

    uint256 constant public TEAM_TOTAL_AMOUNT = 8000000e18;
    uint256 public teamAmount = TEAM_TOTAL_AMOUNT;
    uint256 public teamMintedAtBlock = 0;

    uint256 constant public FUTURE_TOTAL_AMOUNT = 28000000e18;
    uint256 constant public FUTURE_EACH_MINT = 9333333e18;
    uint256 public futureAmount = FUTURE_TOTAL_AMOUNT;
    uint256 public futureCanMintAtBlock = 0;

    uint256 public startAtBlock;

    constructor (uint _startAtBlock, uint _numberBlockPerDay, address _sendTo) public {
        startAtBlock = _startAtBlock;
        NUMBER_BLOCKS_PER_DAY = _numberBlockPerDay > 0 ? _numberBlockPerDay : 6000;
        _mint(_sendTo, 1e18);
    }
    
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            require(totalSupply().add(amount) <= cap, "BDPToken: cap exceeded");
        }
    }

    function setPendingMaster(address _BDPMaster) public onlyOwner {
        BDPMasterPending = _BDPMaster;
        setBDPMasterPendingAtBlock = block.number;
    }

    function confirmMaster() public onlyOwner {
        require(block.number - setBDPMasterPendingAtBlock > 2 * NUMBER_BLOCKS_PER_DAY, "BDPToken: cannot confirm at this time");
        BDPMaster = BDPMasterPending;
    }

    function setMaster(address _BDPMaster) public onlyOwner {
        require(BDPMaster == address(0x0), "BDPToken: Cannot set master");
        BDPMaster = _BDPMaster;
    }

    function mint(address _to, uint256 _amount) public {
        require(msg.sender == BDPMaster, "BDPToken: only master farmer can mint");
        require(seedPoolAmount > 0, "BDPToken: cannot mint for pool");
        require(seedPoolAmount >= _amount, "BDPToken: amount greater than limitation");
        seedPoolAmount = seedPoolAmount.sub(_amount);
        _mint(_to, _amount);
    }

    function mintForPartnership(address _to) public onlyOwner {
        uint amount;

        require(block.number >= startAtBlock + 7 * NUMBER_BLOCKS_PER_DAY, "BDPToken: Cannot mint at this time");
        require(partnershipAmount > 0, "BDPToken: Cannot mint more token for partnership");

        // This first minting
        if (partnershipMintedAtBlock == 0) {
            amount = PARTNERSHIP_FIRST_MINT;
            partnershipMintedAtBlock = startAtBlock + 7 * NUMBER_BLOCKS_PER_DAY;
        }
        else {
            amount = PARTNERSHIP_TOTAL_AMOUNT
                .sub(PARTNERSHIP_FIRST_MINT)
                .mul(block.number - partnershipMintedAtBlock)
                .div(270 * NUMBER_BLOCKS_PER_DAY);
            partnershipMintedAtBlock = block.number;
        }

        amount = amount < partnershipAmount ? amount : partnershipAmount;

        partnershipAmount = partnershipAmount.sub(amount);
        _mint(_to, amount);
    }

    function mintForTeam(address _to) public onlyOwner {
        uint amount;

        require(block.number >= startAtBlock + 7 * NUMBER_BLOCKS_PER_DAY, "BDPToken: Cannot mint at this time");
        require(teamAmount > 0, "BDPToken: Cannot mint more token for team");
        // This first minting
        if (teamMintedAtBlock == 0) {
            teamMintedAtBlock = startAtBlock + 7 * NUMBER_BLOCKS_PER_DAY;
        }
        amount = TEAM_TOTAL_AMOUNT
            .mul(block.number - teamMintedAtBlock)
            .div(270 * NUMBER_BLOCKS_PER_DAY);
        teamMintedAtBlock = block.number;

        amount = amount < teamAmount ? amount : teamAmount;

        teamAmount = teamAmount.sub(amount);
        _mint(_to, amount);
    }

    function mintForFutureFarming(address _to) public onlyOwner {
        require(block.number >= startAtBlock + 56 * NUMBER_BLOCKS_PER_DAY, "BDPToken: Cannot mint at this time");
        require(futureAmount > 0, "BDPToken: Cannot mint more token for future farming");


        if (block.number >= startAtBlock + 56 * NUMBER_BLOCKS_PER_DAY 
            && futureAmount >= FUTURE_TOTAL_AMOUNT) {
            _mint(_to, FUTURE_EACH_MINT);
            futureAmount = futureAmount.sub(FUTURE_EACH_MINT);
        }

        if (block.number >= startAtBlock + 86 * NUMBER_BLOCKS_PER_DAY 
            && futureAmount >= FUTURE_TOTAL_AMOUNT.sub(FUTURE_EACH_MINT)) {
            _mint(_to, FUTURE_EACH_MINT);
            futureAmount = futureAmount.sub(FUTURE_EACH_MINT);
        }

        if (block.number >= startAtBlock + 116 * NUMBER_BLOCKS_PER_DAY
            && futureAmount > 0) {
            _mint(_to, futureAmount);
            futureAmount = 0;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startAtBlock","type":"uint256"},{"internalType":"uint256","name":"_numberBlockPerDay","type":"uint256"},{"internalType":"address","name":"_sendTo","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BDPMaster","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BDPMasterPending","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUTURE_EACH_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUTURE_TOTAL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_BLOCKS_PER_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARTNERSHIP_FIRST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARTNERSHIP_TOTAL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_TOTAL_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"confirmMaster","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":"futureAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"futureCanMintAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintForFutureFarming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintForPartnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintForTeam","outputs":[],"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":[],"name":"partnershipAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnershipMintedAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seedPoolAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setBDPMasterPendingAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_BDPMaster","type":"address"}],"name":"setMaster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_BDPMaster","type":"address"}],"name":"setPendingMaster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startAtBlock","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":"teamAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMintedAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526a422ca8be80c0f5f76400006007556a13da329b63364718000000600b556a108b2a2c28029094000000600c556000600d556a069e10de76676d08000000600e556000600f556a17293b0a9e69fd9c00000060105560006011553480156200006b57600080fd5b506040516200206a3803806200206a833981810160405260608110156200009157600080fd5b5080516020808301516040938401518451808601865260088152672122282a37b5b2b760c11b818501908152865180880190975260038088526204244560ec1b958801959095528151959693959294919392620000f0929190620003cf565b50805162000106906004906020840190620003cf565b50506005805460ff1916601217905550600062000122620001ae565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506012839055816200018c576117706200018e565b815b600655620001a581670de0b6b3a7640000620001b2565b5050506200046b565b3390565b6001600160a01b0382166200020e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200021c60008383620002c1565b62000238816002546200036760201b620013621790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200026b9183906200136262000367821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002d98383836200036260201b620013c31760201c565b6001600160a01b03831662000362576007546200030e82620002fa620003c9565b6200036760201b620013621790919060201c565b111562000362576040805162461bcd60e51b815260206004820152601660248201527f424450546f6b656e3a2063617020657863656564656400000000000000000000604482015290519081900360640190fd5b505050565b600082820183811015620003c2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60025490565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041257805160ff191683800117855562000442565b8280016001018555821562000442579182015b828111156200044257825182559160200191906001019062000425565b506200045092915062000454565b5090565b5b8082111562000450576000815560010162000455565b611bef806200047b6000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c8063704393851161013b578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e14610591578063e5dc5f1a146105bf578063f16daed6146105e5578063f2264a4a146105ed578063f2fde38b146105f55761023d565b8063a9059cbb14610545578063aa4c37d214610571578063d02c9f9314610579578063d5c4c64714610581578063dd3cf226146105895761023d565b80638da5cb5b116100ff5780638da5cb5b14610501578063939ab006146104b357806395d89b4114610509578063a457c2d714610511578063a4aebb3f1461053d5761023d565b806370439385146104bb57806370a08231146104c3578063715018a6146104e95780637265d040146104f157806375993783146104f95761023d565b8063313ce567116101c957806341dcaf341161018d57806341dcaf341461043b578063457217851461044357806352e2c41b146104695780635b1d73501461048d578063701c1955146104b35761023d565b8063313ce56714610397578063355274ea146103b557806339509351146103bd5780633aacd242146103e957806340c10f191461040f5761023d565b806318160ddd1161021057806318160ddd1461032157806323b872dd1461032957806326fae0d31461035f5780632b44b5b4146103875780632f51ca501461038f5761023d565b806306fdde03146102425780630748e052146102bf578063095ea7b3146102d95780631583e3a214610319575b600080fd5b61024a61061b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c76106b1565b60408051918252519081900360200190f35b610305600480360360408110156102ef57600080fd5b506001600160a01b0381351690602001356106b7565b604080519115158252519081900360200190f35b6102c76106d5565b6102c76106db565b6103056004803603606081101561033f57600080fd5b506001600160a01b038135811691602081013590911690604001356106e1565b6103856004803603602081101561037557600080fd5b50356001600160a01b0316610768565b005b6102c761084a565b6102c7610850565b61039f610856565b6040805160ff9092168252519081900360200190f35b6102c761085f565b610305600480360360408110156103d357600080fd5b506001600160a01b038135169060200135610865565b610385600480360360208110156103ff57600080fd5b50356001600160a01b03166108b3565b6103856004803603604081101561042557600080fd5b506001600160a01b038135169060200135610a9f565b6102c7610b9e565b6103856004803603602081101561045957600080fd5b50356001600160a01b0316610bad565b610471610d40565b604080516001600160a01b039092168252519081900360200190f35b610385600480360360208110156104a357600080fd5b50356001600160a01b0316610d4f565b6102c7610eb6565b6102c7610ec5565b6102c7600480360360208110156104d957600080fd5b50356001600160a01b0316610ecb565b610385610ee6565b6102c7610f98565b6102c7610f9e565b610471610fa4565b61024a610fb8565b6103056004803603604081101561052757600080fd5b506001600160a01b038135169060200135611019565b6102c7611081565b6103056004803603604081101561055b57600080fd5b506001600160a01b038135169060200135611087565b61038561109b565b610471611168565b6102c7611177565b6102c761117d565b6102c7600480360360408110156105a757600080fd5b506001600160a01b038135811691602001351661118c565b610385600480360360208110156105d557600080fd5b50356001600160a01b03166111b7565b6102c761123f565b6102c761124e565b6103856004803603602081101561060b57600080fd5b50356001600160a01b0316611254565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a75780601f1061067c576101008083540402835291602001916106a7565b820191906000526020600020905b81548152906001019060200180831161068a57829003601f168201915b5050505050905090565b60105481565b60006106cb6106c46113c8565b84846113cc565b5060015b92915050565b600d5481565b60025490565b60006106ee8484846114b8565b61075e846106fa6113c8565b61075985604051806060016040528060288152602001611aa9602891396001600160a01b038a166000908152600160205260408120906107386113c8565b6001600160a01b031681526020810191909152604001600020549190611613565b6113cc565b5060019392505050565b6107706113c8565b6001600160a01b0316610781610fa4565b6001600160a01b0316146107ca576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b6008546001600160a01b031615610828576040805162461bcd60e51b815260206004820152601b60248201527f424450546f6b656e3a2043616e6e6f7420736574206d61737465720000000000604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b600a5481565b60055460ff1690565b60075481565b60006106cb6108726113c8565b8461075985600160006108836113c8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611362565b6108bb6113c8565b6001600160a01b03166108cc610fa4565b6001600160a01b031614610915576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b6006546038026012540143101561095d5760405162461bcd60e51b815260040180806020018281038252602281526020018061197a6022913960400191505060405180910390fd5b60006010541161099e5760405162461bcd60e51b8152600401808060200182810382526033815260200180611b3e6033913960400191505060405180910390fd5b6006546038026012540143101580156109c457506a17293b0a9e69fd9c00000060105410155b156109fa576109de816a07b868fee9e66dfc3400006116aa565b6010546109f6906a07b868fee9e66dfc34000061179a565b6010555b600654605602601254014310158015610a345750610a2e6a17293b0a9e69fd9c0000006a07b868fee9e66dfc34000061179a565b60105410155b15610a6a57610a4e816a07b868fee9e66dfc3400006116aa565b601054610a66906a07b868fee9e66dfc34000061179a565b6010555b600654607402601254014310158015610a8557506000601054115b15610a9c57610a96816010546116aa565b60006010555b50565b6008546001600160a01b03163314610ae85760405162461bcd60e51b8152600401808060200182810382526025815260200180611a336025913960400191505060405180910390fd5b6000600b5411610b3f576040805162461bcd60e51b815260206004820152601e60248201527f424450546f6b656e3a2063616e6e6f74206d696e7420666f7220706f6f6c0000604482015290519081900360640190fd5b80600b541015610b805760405162461bcd60e51b8152600401808060200182810382526028815260200180611af16028913960400191505060405180910390fd5b600b54610b8d908261179a565b600b55610b9a82826116aa565b5050565b6a07b868fee9e66dfc34000081565b610bb56113c8565b6001600160a01b0316610bc6610fa4565b6001600160a01b031614610c0f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600060065460070260125401431015610c595760405162461bcd60e51b815260040180806020018281038252602281526020018061197a6022913960400191505060405180910390fd5b6000600c5411610c9a5760405162461bcd60e51b8152600401808060200182810382526030815260200180611a586030913960400191505060405180910390fd5b600d54610cc25750600654601254600790910201600d556a069e10de76676d08000000610d10565b610d0960065461010e02610d03600d544303610cfd6a069e10de76676d080000006a108b2a2c2802909400000061179a90919063ffffffff16565b906117f7565b90611850565b43600d5590505b600c548110610d2157600c54610d23565b805b600c54909150610d33908261179a565b600c55610b9a82826116aa565b6008546001600160a01b031681565b610d576113c8565b6001600160a01b0316610d68610fa4565b6001600160a01b031614610db1576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600060065460070260125401431015610dfb5760405162461bcd60e51b815260040180806020018281038252602281526020018061197a6022913960400191505060405180910390fd5b6000600e5411610e3c5760405162461bcd60e51b81526004018080602001828103825260298152602001806119e46029913960400191505060405180910390fd5b600f54610e5357600654601254600790910201600f555b610e7f60065461010e02610d03600f5443036a069e10de76676d080000006117f790919063ffffffff16565b43600f55600e549091508110610e9757600e54610e99565b805b600e54909150610ea9908261179a565b600e55610b9a82826116aa565b6a069e10de76676d0800000081565b600e5481565b6001600160a01b031660009081526020819052604090205490565b610eee6113c8565b6001600160a01b0316610eff610fa4565b6001600160a01b031614610f48576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60125481565b600b5481565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a75780601f1061067c576101008083540402835291602001916106a7565b60006106cb6110266113c8565b8461075985604051806060016040528060258152602001611b9560259139600160006110506113c8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611613565b600c5481565b60006106cb6110946113c8565b84846114b8565b6110a36113c8565b6001600160a01b03166110b4610fa4565b6001600160a01b0316146110fd576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600654600202600a544303116111445760405162461bcd60e51b81526004018080602001828103825260258152602001806119556025913960400191505060405180910390fd5b600954600880546001600160a01b0319166001600160a01b03909216919091179055565b6009546001600160a01b031681565b60065481565b6a108b2a2c2802909400000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6111bf6113c8565b6001600160a01b03166111d0610fa4565b6001600160a01b031614611219576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b039290921691909117905543600a55565b6a17293b0a9e69fd9c00000081565b60115481565b61125c6113c8565b6001600160a01b031661126d610fa4565b6001600160a01b0316146112b6576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b6001600160a01b0381166112fb5760405162461bcd60e51b815260040180806020018281038252602681526020018061199c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156113bc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b505050565b3390565b6001600160a01b0383166114115760405162461bcd60e51b8152600401808060200182810382526024815260200180611b716024913960400191505060405180910390fd5b6001600160a01b0382166114565760405162461bcd60e51b81526004018080602001828103825260228152602001806119c26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114fd5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b196025913960400191505060405180910390fd5b6001600160a01b0382166115425760405162461bcd60e51b81526004018080602001828103825260238152602001806119326023913960400191505060405180910390fd5b61154d8383836118b7565b61158a81604051806060016040528060268152602001611a0d602691396001600160a01b0386166000908152602081905260409020549190611613565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115b99082611362565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116a25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561166757818101518382015260200161164f565b50505050905090810190601f1680156116945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611705576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611711600083836118b7565b60025461171e9082611362565b6002556001600160a01b0382166000908152602081905260409020546117449082611362565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828211156117f1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611806575060006106cf565b8282028284828161181357fe5b04146113bc5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a886021913960400191505060405180910390fd5b60008082116118a6576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816118af57fe5b049392505050565b6118c28383836113c3565b6001600160a01b0383166113c3576007546118e5826118df6106db565b90611362565b11156113c3576040805162461bcd60e51b8152602060048201526016602482015275109114151bdad95b8e8818d85c08195e18d95959195960521b604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373424450546f6b656e3a2063616e6e6f7420636f6e6669726d20617420746869732074696d65424450546f6b656e3a2043616e6e6f74206d696e7420617420746869732074696d654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373424450546f6b656e3a2043616e6e6f74206d696e74206d6f726520746f6b656e20666f72207465616d45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365424450546f6b656e3a206f6e6c79206d6173746572206661726d65722063616e206d696e74424450546f6b656e3a2043616e6e6f74206d696e74206d6f726520746f6b656e20666f7220706172746e657273686970536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572424450546f6b656e3a20616d6f756e742067726561746572207468616e206c696d69746174696f6e45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373424450546f6b656e3a2043616e6e6f74206d696e74206d6f726520746f6b656e20666f7220667574757265206661726d696e6745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122059413b0d99abc1d253eca9ab972f0c21d2569f48307874c0709e05cd5dfbcc6864736f6c634300060c00330000000000000000000000000000000000000000000000000000000000b6e4360000000000000000000000000000000000000000000000000000000000001770000000000000000000000000498f9f1740c991cf8028a213e35221c781d6d3f2

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c8063704393851161013b578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e14610591578063e5dc5f1a146105bf578063f16daed6146105e5578063f2264a4a146105ed578063f2fde38b146105f55761023d565b8063a9059cbb14610545578063aa4c37d214610571578063d02c9f9314610579578063d5c4c64714610581578063dd3cf226146105895761023d565b80638da5cb5b116100ff5780638da5cb5b14610501578063939ab006146104b357806395d89b4114610509578063a457c2d714610511578063a4aebb3f1461053d5761023d565b806370439385146104bb57806370a08231146104c3578063715018a6146104e95780637265d040146104f157806375993783146104f95761023d565b8063313ce567116101c957806341dcaf341161018d57806341dcaf341461043b578063457217851461044357806352e2c41b146104695780635b1d73501461048d578063701c1955146104b35761023d565b8063313ce56714610397578063355274ea146103b557806339509351146103bd5780633aacd242146103e957806340c10f191461040f5761023d565b806318160ddd1161021057806318160ddd1461032157806323b872dd1461032957806326fae0d31461035f5780632b44b5b4146103875780632f51ca501461038f5761023d565b806306fdde03146102425780630748e052146102bf578063095ea7b3146102d95780631583e3a214610319575b600080fd5b61024a61061b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c76106b1565b60408051918252519081900360200190f35b610305600480360360408110156102ef57600080fd5b506001600160a01b0381351690602001356106b7565b604080519115158252519081900360200190f35b6102c76106d5565b6102c76106db565b6103056004803603606081101561033f57600080fd5b506001600160a01b038135811691602081013590911690604001356106e1565b6103856004803603602081101561037557600080fd5b50356001600160a01b0316610768565b005b6102c761084a565b6102c7610850565b61039f610856565b6040805160ff9092168252519081900360200190f35b6102c761085f565b610305600480360360408110156103d357600080fd5b506001600160a01b038135169060200135610865565b610385600480360360208110156103ff57600080fd5b50356001600160a01b03166108b3565b6103856004803603604081101561042557600080fd5b506001600160a01b038135169060200135610a9f565b6102c7610b9e565b6103856004803603602081101561045957600080fd5b50356001600160a01b0316610bad565b610471610d40565b604080516001600160a01b039092168252519081900360200190f35b610385600480360360208110156104a357600080fd5b50356001600160a01b0316610d4f565b6102c7610eb6565b6102c7610ec5565b6102c7600480360360208110156104d957600080fd5b50356001600160a01b0316610ecb565b610385610ee6565b6102c7610f98565b6102c7610f9e565b610471610fa4565b61024a610fb8565b6103056004803603604081101561052757600080fd5b506001600160a01b038135169060200135611019565b6102c7611081565b6103056004803603604081101561055b57600080fd5b506001600160a01b038135169060200135611087565b61038561109b565b610471611168565b6102c7611177565b6102c761117d565b6102c7600480360360408110156105a757600080fd5b506001600160a01b038135811691602001351661118c565b610385600480360360208110156105d557600080fd5b50356001600160a01b03166111b7565b6102c761123f565b6102c761124e565b6103856004803603602081101561060b57600080fd5b50356001600160a01b0316611254565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a75780601f1061067c576101008083540402835291602001916106a7565b820191906000526020600020905b81548152906001019060200180831161068a57829003601f168201915b5050505050905090565b60105481565b60006106cb6106c46113c8565b84846113cc565b5060015b92915050565b600d5481565b60025490565b60006106ee8484846114b8565b61075e846106fa6113c8565b61075985604051806060016040528060288152602001611aa9602891396001600160a01b038a166000908152600160205260408120906107386113c8565b6001600160a01b031681526020810191909152604001600020549190611613565b6113cc565b5060019392505050565b6107706113c8565b6001600160a01b0316610781610fa4565b6001600160a01b0316146107ca576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b6008546001600160a01b031615610828576040805162461bcd60e51b815260206004820152601b60248201527f424450546f6b656e3a2043616e6e6f7420736574206d61737465720000000000604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b600a5481565b60055460ff1690565b60075481565b60006106cb6108726113c8565b8461075985600160006108836113c8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611362565b6108bb6113c8565b6001600160a01b03166108cc610fa4565b6001600160a01b031614610915576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b6006546038026012540143101561095d5760405162461bcd60e51b815260040180806020018281038252602281526020018061197a6022913960400191505060405180910390fd5b60006010541161099e5760405162461bcd60e51b8152600401808060200182810382526033815260200180611b3e6033913960400191505060405180910390fd5b6006546038026012540143101580156109c457506a17293b0a9e69fd9c00000060105410155b156109fa576109de816a07b868fee9e66dfc3400006116aa565b6010546109f6906a07b868fee9e66dfc34000061179a565b6010555b600654605602601254014310158015610a345750610a2e6a17293b0a9e69fd9c0000006a07b868fee9e66dfc34000061179a565b60105410155b15610a6a57610a4e816a07b868fee9e66dfc3400006116aa565b601054610a66906a07b868fee9e66dfc34000061179a565b6010555b600654607402601254014310158015610a8557506000601054115b15610a9c57610a96816010546116aa565b60006010555b50565b6008546001600160a01b03163314610ae85760405162461bcd60e51b8152600401808060200182810382526025815260200180611a336025913960400191505060405180910390fd5b6000600b5411610b3f576040805162461bcd60e51b815260206004820152601e60248201527f424450546f6b656e3a2063616e6e6f74206d696e7420666f7220706f6f6c0000604482015290519081900360640190fd5b80600b541015610b805760405162461bcd60e51b8152600401808060200182810382526028815260200180611af16028913960400191505060405180910390fd5b600b54610b8d908261179a565b600b55610b9a82826116aa565b5050565b6a07b868fee9e66dfc34000081565b610bb56113c8565b6001600160a01b0316610bc6610fa4565b6001600160a01b031614610c0f576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600060065460070260125401431015610c595760405162461bcd60e51b815260040180806020018281038252602281526020018061197a6022913960400191505060405180910390fd5b6000600c5411610c9a5760405162461bcd60e51b8152600401808060200182810382526030815260200180611a586030913960400191505060405180910390fd5b600d54610cc25750600654601254600790910201600d556a069e10de76676d08000000610d10565b610d0960065461010e02610d03600d544303610cfd6a069e10de76676d080000006a108b2a2c2802909400000061179a90919063ffffffff16565b906117f7565b90611850565b43600d5590505b600c548110610d2157600c54610d23565b805b600c54909150610d33908261179a565b600c55610b9a82826116aa565b6008546001600160a01b031681565b610d576113c8565b6001600160a01b0316610d68610fa4565b6001600160a01b031614610db1576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600060065460070260125401431015610dfb5760405162461bcd60e51b815260040180806020018281038252602281526020018061197a6022913960400191505060405180910390fd5b6000600e5411610e3c5760405162461bcd60e51b81526004018080602001828103825260298152602001806119e46029913960400191505060405180910390fd5b600f54610e5357600654601254600790910201600f555b610e7f60065461010e02610d03600f5443036a069e10de76676d080000006117f790919063ffffffff16565b43600f55600e549091508110610e9757600e54610e99565b805b600e54909150610ea9908261179a565b600e55610b9a82826116aa565b6a069e10de76676d0800000081565b600e5481565b6001600160a01b031660009081526020819052604090205490565b610eee6113c8565b6001600160a01b0316610eff610fa4565b6001600160a01b031614610f48576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60125481565b600b5481565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a75780601f1061067c576101008083540402835291602001916106a7565b60006106cb6110266113c8565b8461075985604051806060016040528060258152602001611b9560259139600160006110506113c8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611613565b600c5481565b60006106cb6110946113c8565b84846114b8565b6110a36113c8565b6001600160a01b03166110b4610fa4565b6001600160a01b0316146110fd576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600654600202600a544303116111445760405162461bcd60e51b81526004018080602001828103825260258152602001806119556025913960400191505060405180910390fd5b600954600880546001600160a01b0319166001600160a01b03909216919091179055565b6009546001600160a01b031681565b60065481565b6a108b2a2c2802909400000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6111bf6113c8565b6001600160a01b03166111d0610fa4565b6001600160a01b031614611219576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b039290921691909117905543600a55565b6a17293b0a9e69fd9c00000081565b60115481565b61125c6113c8565b6001600160a01b031661126d610fa4565b6001600160a01b0316146112b6576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad1833981519152604482015290519081900360640190fd5b6001600160a01b0381166112fb5760405162461bcd60e51b815260040180806020018281038252602681526020018061199c6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156113bc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b505050565b3390565b6001600160a01b0383166114115760405162461bcd60e51b8152600401808060200182810382526024815260200180611b716024913960400191505060405180910390fd5b6001600160a01b0382166114565760405162461bcd60e51b81526004018080602001828103825260228152602001806119c26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114fd5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b196025913960400191505060405180910390fd5b6001600160a01b0382166115425760405162461bcd60e51b81526004018080602001828103825260238152602001806119326023913960400191505060405180910390fd5b61154d8383836118b7565b61158a81604051806060016040528060268152602001611a0d602691396001600160a01b0386166000908152602081905260409020549190611613565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115b99082611362565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116a25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561166757818101518382015260200161164f565b50505050905090810190601f1680156116945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611705576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611711600083836118b7565b60025461171e9082611362565b6002556001600160a01b0382166000908152602081905260409020546117449082611362565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828211156117f1576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082611806575060006106cf565b8282028284828161181357fe5b04146113bc5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a886021913960400191505060405180910390fd5b60008082116118a6576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816118af57fe5b049392505050565b6118c28383836113c3565b6001600160a01b0383166113c3576007546118e5826118df6106db565b90611362565b11156113c3576040805162461bcd60e51b8152602060048201526016602482015275109114151bdad95b8e8818d85c08195e18d95959195960521b604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373424450546f6b656e3a2063616e6e6f7420636f6e6669726d20617420746869732074696d65424450546f6b656e3a2043616e6e6f74206d696e7420617420746869732074696d654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373424450546f6b656e3a2043616e6e6f74206d696e74206d6f726520746f6b656e20666f72207465616d45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365424450546f6b656e3a206f6e6c79206d6173746572206661726d65722063616e206d696e74424450546f6b656e3a2043616e6e6f74206d696e74206d6f726520746f6b656e20666f7220706172746e657273686970536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572424450546f6b656e3a20616d6f756e742067726561746572207468616e206c696d69746174696f6e45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373424450546f6b656e3a2043616e6e6f74206d696e74206d6f726520746f6b656e20666f7220667574757265206661726d696e6745524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122059413b0d99abc1d253eca9ab972f0c21d2569f48307874c0709e05cd5dfbcc6864736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000b6e4360000000000000000000000000000000000000000000000000000000000001770000000000000000000000000498f9f1740c991cf8028a213e35221c781d6d3f2

-----Decoded View---------------
Arg [0] : _startAtBlock (uint256): 11985974
Arg [1] : _numberBlockPerDay (uint256): 6000
Arg [2] : _sendTo (address): 0x498F9F1740C991CF8028A213e35221C781d6D3F2

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000b6e436
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001770
Arg [2] : 000000000000000000000000498f9f1740c991cf8028a213e35221c781d6d3f2


Deployed Bytecode Sourcemap

24715:5286:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13458:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25604:49;;;:::i;:::-;;;;;;;;;;;;;;;;15604:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15604:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25270:43;;;:::i;14557:108::-;;;:::i;16255:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16255:321:0;;;;;;;;;;;;;;;;;:::i;26698:173::-;;;;;;;;;;;;;;;;-1:-1:-1;26698:173:0;-1:-1:-1;;;;;26698:173:0;;:::i;:::-;;25435:36;;;:::i;24970:38::-;;;:::i;14401:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24855:39;;;:::i;16985:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16985:218:0;;;;;;;;:::i;29015:983::-;;;;;;;;;;;;;;;;-1:-1:-1;29015:983:0;-1:-1:-1;;;;;29015:983:0;;:::i;26879:389::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26879:389:0;;;;;;;;:::i;25544:53::-;;;:::i;27276:972::-;;;;;;;;;;;;;;;;-1:-1:-1;27276:972:0;-1:-1:-1;;;;;27276:972:0;;:::i;24901:24::-;;;:::i;:::-;;;;-1:-1:-1;;;;;24901:24:0;;;;;;;;;;;;;;28256:751;;;;;;;;;;;;;;;;-1:-1:-1;28256:751:0;-1:-1:-1;;;;;28256:751:0;;:::i;25322:54::-;;;:::i;25383:45::-;;;:::i;14728:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14728:127:0;-1:-1:-1;;;;;14728:127:0;;:::i;24091:148::-;;;:::i;25708:27::-;;;:::i;25017:43::-;;;:::i;23440:87::-;;;:::i;13668:95::-;;;:::i;17706:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17706:269:0;;;;;;;;:::i;25204:59::-;;;:::i;15068:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15068:175:0;;;;;;;;:::i;26471:219::-;;;:::i;24932:31::-;;;:::i;24812:36::-;;;:::i;25069:62::-;;;:::i;15306:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15306:151:0;;;;;;;;;;:::i;26300:163::-;;;;;;;;;;;;;;;;-1:-1:-1;26300:163:0;-1:-1:-1;;;;;26300:163:0;;:::i;25480:57::-;;;:::i;25660:39::-;;;:::i;24394:244::-;;;;;;;;;;;;;;;;-1:-1:-1;24394:244:0;-1:-1:-1;;;;;24394:244:0;;:::i;13458:91::-;13536:5;13529:12;;;;;;;;-1:-1:-1;;13529:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13503:13;;13529:12;;13536:5;;13529:12;;13536:5;13529:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13458:91;:::o;25604:49::-;;;;:::o;15604:169::-;15687:4;15704:39;15713:12;:10;:12::i;:::-;15727:7;15736:6;15704:8;:39::i;:::-;-1:-1:-1;15761:4:0;15604:169;;;;;:::o;25270:43::-;;;;:::o;14557:108::-;14645:12;;14557:108;:::o;16255:321::-;16361:4;16378:36;16388:6;16396:9;16407:6;16378:9;:36::i;:::-;16425:121;16434:6;16442:12;:10;:12::i;:::-;16456:89;16494:6;16456:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16456:19:0;;;;;;:11;:19;;;;;;16476:12;:10;:12::i;:::-;-1:-1:-1;;;;;16456:33:0;;;;;;;;;;;;-1:-1:-1;16456:33:0;;;:89;:37;:89::i;:::-;16425:8;:121::i;:::-;-1:-1:-1;16564:4:0;16255:321;;;;;:::o;26698:173::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;26773:9:::1;::::0;-1:-1:-1;;;;;26773:9:0::1;:25:::0;26765:65:::1;;;::::0;;-1:-1:-1;;;26765:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;26841:9;:22:::0;;-1:-1:-1;;;;;;26841:22:0::1;-1:-1:-1::0;;;;;26841:22:0;;;::::1;::::0;;;::::1;::::0;;26698:173::o;25435:36::-;;;;:::o;24970:38::-;;;;:::o;14401:91::-;14475:9;;;;14401:91;:::o;24855:39::-;;;;:::o;16985:218::-;17073:4;17090:83;17099:12;:10;:12::i;:::-;17113:7;17122:50;17161:10;17122:11;:25;17134:12;:10;:12::i;:::-;-1:-1:-1;;;;;17122:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17122:25:0;;;:34;;;;;;;;;;;:38;:50::i;29015:983::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;29130:21:::1;;29125:2;:26;29110:12;;:41;29094:12;:57;;29086:104;;;;-1:-1:-1::0;;;29086:104:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29224:1;29209:12;;:16;29201:80;;;;-1:-1:-1::0;;;29201:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29336:21;;29331:2;:26;29316:12;;:41;29300:12;:57;;:110;;;;;25526:11;29375:12;;:35;;29300:110;29296:235;;;29427:28;29433:3;25587:10;29427:5;:28::i;:::-;29485:12;::::0;:34:::1;::::0;25587:10:::1;29485:16;:34::i;:::-;29470:12;:49:::0;29296:235:::1;29583:21;;29578:2;:26;29563:12;;:41;29547:12;:57;;:132;;;;-1:-1:-1::0;29638:41:0::1;25526:11;25587:10;29638:23;:41::i;:::-;29622:12;;:57;;29547:132;29543:257;;;29696:28;29702:3;25587:10;29696:5;:28::i;:::-;29754:12;::::0;:34:::1;::::0;25587:10:::1;29754:16;:34::i;:::-;29739:12;:49:::0;29543:257:::1;29853:21;;29847:3;:27;29832:12;;:42;29816:12;:58;;:91;;;;;29906:1;29891:12;;:16;29816:91;29812:179;;;29924:24;29930:3;29935:12;;29924:5;:24::i;:::-;29978:1;29963:12;:16:::0;29812:179:::1;29015:983:::0;:::o;26879:389::-;26963:9;;-1:-1:-1;;;;;26963:9:0;26949:10;:23;26941:73;;;;-1:-1:-1;;;26941:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27050:1;27033:14;;:18;27025:61;;;;;-1:-1:-1;;;27025:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27123:7;27105:14;;:25;;27097:78;;;;-1:-1:-1;;;27097:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27203:14;;:27;;27222:7;27203:18;:27::i;:::-;27186:14;:44;27241:19;27247:3;27252:7;27241:5;:19::i;:::-;26879:389;;:::o;25544:53::-;25587:10;25544:53;:::o;27276:972::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;27345:11:::1;27412:21;;27408:1;:25;27393:12;;:40;27377:12;:56;;27369:103;;;;-1:-1:-1::0;;;27369:103:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27511:1;27491:17;;:21;27483:82;;;;-1:-1:-1::0;;;27483:82:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27613:24;::::0;27609:464:::1;;-1:-1:-1::0;27751:21:0::1;::::0;27732:12:::1;::::0;27747:1:::1;:25:::0;;::::1;27732:40;27705:24;:67:::0;25187:10:::1;27609:464;;;27823:184;27985:21;;27979:3;:27;27823:133;27931:24;;27916:12;:39;27823:70;25187:10;25120:11;27823:46;;:70;;;;:::i;:::-;:92:::0;::::1;:133::i;:::-;:155:::0;::::1;:184::i;:::-;28049:12;28022:24;:39:::0;27814:193;-1:-1:-1;27609:464:0::1;28103:17;;28094:6;:26;:55;;28132:17;;28094:55;;;28123:6;28094:55;28182:17;::::0;28085:64;;-1:-1:-1;28182:29:0::1;::::0;28085:64;28182:21:::1;:29::i;:::-;28162:17;:49:::0;28222:18:::1;28228:3:::0;28233:6;28222:5:::1;:18::i;24901:24::-:0;;;-1:-1:-1;;;;;24901:24:0;;:::o;28256:751::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;28318:11:::1;28385:21;;28381:1;:25;28366:12;;:40;28350:12;:56;;28342:103;;;;-1:-1:-1::0;;;28342:103:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28477:1;28464:10;;:14;28456:68;;;;-1:-1:-1::0;;;28456:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28570:17;::::0;28566:115:::1;;28648:21;::::0;28629:12:::1;::::0;28644:1:::1;:25:::0;;::::1;28629:40;28609:17;:60:::0;28566:115:::1;28700:116;28794:21;;28788:3;:27;28700:69;28751:17;;28736:12;:32;25366:10;28700:35;;:69;;;;:::i;:116::-;28847:12;28827:17;:32:::0;28890:10:::1;::::0;28691:125;;-1:-1:-1;28881:19:0;::::1;:41;;28912:10;;28881:41;;;28903:6;28881:41;28948:10;::::0;28872:50;;-1:-1:-1;28948:22:0::1;::::0;28872:50;28948:14:::1;:22::i;:::-;28935:10;:35:::0;28981:18:::1;28987:3:::0;28992:6;28981:5:::1;:18::i;25322:54::-:0;25366:10;25322:54;:::o;25383:45::-;;;;:::o;14728:127::-;-1:-1:-1;;;;;14829:18:0;14802:7;14829:18;;;;;;;;;;;;14728:127::o;24091:148::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;24182:6:::1;::::0;24161:40:::1;::::0;24198:1:::1;::::0;24182:6:::1;::::0;::::1;-1:-1:-1::0;;;;;24182:6:0::1;::::0;24161:40:::1;::::0;24198:1;;24161:40:::1;24212:6;:19:::0;;-1:-1:-1;;;;;;24212:19:0::1;::::0;;24091:148::o;25708:27::-;;;;:::o;25017:43::-;;;;:::o;23440:87::-;23513:6;;;;;-1:-1:-1;;;;;23513:6:0;;23440:87::o;13668:95::-;13748:7;13741:14;;;;;;;;-1:-1:-1;;13741:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13715:13;;13741:14;;13748:7;;13741:14;;13748:7;13741:14;;;;;;;;;;;;;;;;;;;;;;;;17706:269;17799:4;17816:129;17825:12;:10;:12::i;:::-;17839:7;17848:96;17887:15;17848:96;;;;;;;;;;;;;;;;;:11;:25;17860:12;:10;:12::i;:::-;-1:-1:-1;;;;;17848:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17848:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;25204:59::-;;;;:::o;15068:175::-;15154:4;15171:42;15181:12;:10;:12::i;:::-;15195:9;15206:6;15171:9;:42::i;26471:219::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;26580:21:::1;;26576:1;:25;26547:26;;26532:12;:41;:69;26524:119;;;;-1:-1:-1::0;;;26524:119:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26666:16;::::0;26654:9:::1;:28:::0;;-1:-1:-1;;;;;;26654:28:0::1;-1:-1:-1::0;;;;;26666:16:0;;::::1;26654:28:::0;;;::::1;::::0;;26471:219::o;24932:31::-;;;-1:-1:-1;;;;;24932:31:0;;:::o;24812:36::-;;;;:::o;25069:62::-;25120:11;25069:62;:::o;15306:151::-;-1:-1:-1;;;;;15422:18:0;;;15395:7;15422:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15306:151::o;26300:163::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;26374:16:::1;:29:::0;;-1:-1:-1;;;;;;26374:29:0::1;-1:-1:-1::0;;;;;26374:29:0;;;::::1;::::0;;;::::1;::::0;;26443:12:::1;26414:26;:41:::0;26300:163::o;25480:57::-;25526:11;25480:57;:::o;25660:39::-;;;;:::o;24394:244::-;23671:12;:10;:12::i;:::-;-1:-1:-1;;;;;23660:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23660:23:0;;23652:68;;;;;-1:-1:-1;;;23652:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23652:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24483:22:0;::::1;24475:73;;;;-1:-1:-1::0;;;24475:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24585:6;::::0;24564:38:::1;::::0;-1:-1:-1;;;;;24564:38:0;;::::1;::::0;24585:6:::1;::::0;::::1;;::::0;24564:38:::1;::::0;;;::::1;24613:6;:17:::0;;-1:-1:-1;;;;;24613:17:0;;::::1;;;-1:-1:-1::0;;;;;;24613:17:0;;::::1;::::0;;;::::1;::::0;;24394:244::o;6625:179::-;6683:7;6715:5;;;6739:6;;;;6731:46;;;;;-1:-1:-1;;;6731:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6795:1;6625:179;-1:-1:-1;;;6625:179:0:o;22232:92::-;;;;:::o;667:106::-;755:10;667:106;:::o;20853:346::-;-1:-1:-1;;;;;20955:19:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21034:21:0;;21026:68;;;;-1:-1:-1;;;21026:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21107:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21159:32;;;;;;;;;;;;;;;;;20853:346;;;:::o;18465:539::-;-1:-1:-1;;;;;18571:20:0;;18563:70;;;;-1:-1:-1;;;18563:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18652:23:0;;18644:71;;;;-1:-1:-1;;;18644:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18728:47;18749:6;18757:9;18768:6;18728:20;:47::i;:::-;18808:71;18830:6;18808:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18808:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18788:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18913:20;;;;;;;:32;;18938:6;18913:24;:32::i;:::-;-1:-1:-1;;;;;18890:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18961:35;;;;;;;18890:20;;18961:35;;;;;;;;;;;;;18465:539;;;:::o;9452:166::-;9538:7;9574:12;9566:6;;;;9558:29;;;;-1:-1:-1;;;9558:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9605:5:0;;;9452:166::o;19286:378::-;-1:-1:-1;;;;;19370:21:0;;19362:65;;;;;-1:-1:-1;;;19362:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19440:49;19469:1;19473:7;19482:6;19440:20;:49::i;:::-;19517:12;;:24;;19534:6;19517:16;:24::i;:::-;19502:12;:39;-1:-1:-1;;;;;19573:18:0;;:9;:18;;;;;;;;;;;:30;;19596:6;19573:22;:30::i;:::-;-1:-1:-1;;;;;19552:18:0;;:9;:18;;;;;;;;;;;:51;;;;19619:37;;;;;;;19552:18;;:9;;19619:37;;;;;;;;;;19286:378;;:::o;7087:158::-;7145:7;7178:1;7173;:6;;7165:49;;;;;-1:-1:-1;;;7165:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7232:5:0;;;7087:158::o;7504:220::-;7562:7;7586:6;7582:20;;-1:-1:-1;7601:1:0;7594:8;;7582:20;7625:5;;;7629:1;7625;:5;:1;7649:5;;;;;:10;7641:56;;;;-1:-1:-1;;;7641:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8202:153;8260:7;8292:1;8288;:5;8280:44;;;;;-1:-1:-1;;;8280:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8346:1;8342;:5;;;;;;;8202:153;-1:-1:-1;;;8202:153:0:o;26001:291::-;26110:44;26137:4;26143:2;26147:6;26110:26;:44::i;:::-;-1:-1:-1;;;;;26171:18:0;;26167:118;;26243:3;;26214:25;26232:6;26214:13;:11;:13::i;:::-;:17;;:25::i;:::-;:32;;26206:67;;;;;-1:-1:-1;;;26206:67:0;;;;;;;;;;;;-1:-1:-1;;;26206:67:0;;;;;;;;;;;;;

Swarm Source

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