ETH Price: $2,393.75 (-3.84%)

Token

BTC Base (BTCB)
 

Overview

Max Total Supply

2,000,000 BTCB

Holders

63

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
796.566055141514434547 BTCB

Value
$0.00
0xa33a8b1171941b4eb04a57605dccdeffd4860eb8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4ED251f4...D79B54F71
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BTCBase

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-16
*/

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}

contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    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.
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(_msgSender(), spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public 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 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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}
contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}


contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

contract Ownable {
    address private _owner;

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

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

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


contract BTCBase is ERC20Mintable,  Ownable, ERC20Detailed, ERC20Burnable{
     
    constructor(
        string memory name,
        string memory symbol,
        uint8 decimals,
        
        uint256 initialSupply
    )
        public
        ERC20Detailed(name, symbol, decimals)
        
    {
        if (initialSupply > 0) {
            _mint(owner(), initialSupply);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"payable":false,"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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620019f9380380620019f9833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604090815260208201519101519092509050838383620001d4620001c56001600160e01b036200029a16565b6001600160e01b036200029f16565b600480546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a382516200023590600590602086019062000559565b5081516200024b90600690602085019062000559565b506007805460ff191660ff9290921691909117905550508015620002905762000290620002806001600160e01b03620002f116565b826001600160e01b036200030016565b50505050620005fb565b335b90565b620002ba8160036200040160201b620010ae1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6004546001600160a01b031690565b6001600160a01b0382166200035c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000378816002546200048e60201b62000c331790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620003ab91839062000c336200048e821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200041682826001600160e01b03620004f016565b1562000469576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620004e9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620005395760405162461bcd60e51b8152600401808060200182810382526022815260200180620019d76022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200059c57805160ff1916838001178555620005cc565b82800160010185558215620005cc579182015b82811115620005cc578251825591602001919060010190620005af565b50620005da929150620005de565b5090565b6200029c91905b80821115620005da5760008155600101620005e5565b6113cc806200060b6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806379cc6790116100b8578063986502751161007c5780639865027514610392578063a457c2d71461039a578063a9059cbb146103c6578063aa271e1a146103f2578063dd62ed3e14610418578063f2fde38b1461044657610137565b806379cc67901461030c5780638da5cb5b146103385780638f32d59b1461035c57806395d89b4114610364578063983b2d561461036c57610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806342966c68146102bf57806370a08231146102de578063715018a61461030457610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b61014461046c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b038135169060200135610502565b604080519115158252519081900360200190f35b61020161051f565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610525565b6102516105b2565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105bb565b6101e5600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561060f565b6102dc600480360360208110156102d557600080fd5b5035610666565b005b610201600480360360208110156102f457600080fd5b50356001600160a01b031661067a565b6102dc610695565b6102dc6004803603604081101561032257600080fd5b506001600160a01b038135169060200135610738565b610340610746565b604080516001600160a01b039092168252519081900360200190f35b6101e5610755565b610144610766565b6102dc6004803603602081101561038257600080fd5b50356001600160a01b03166107c7565b6102dc610816565b6101e5600480360360408110156103b057600080fd5b506001600160a01b038135169060200135610828565b6101e5600480360360408110156103dc57600080fd5b506001600160a01b038135169060200135610896565b6101e56004803603602081101561040857600080fd5b50356001600160a01b03166108aa565b6102016004803603604081101561042e57600080fd5b506001600160a01b03813581169160200135166108c3565b6102dc6004803603602081101561045c57600080fd5b50356001600160a01b03166108ee565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f85780601f106104cd576101008083540402835291602001916104f8565b820191906000526020600020905b8154815290600101906020018083116104db57829003601f168201915b5050505050905090565b600061051661050f610950565b8484610954565b50600192915050565b60025490565b6000610532848484610a40565b6105a88461053e610950565b6105a38560405180606001604052806028815260200161129b602891396001600160a01b038a1660009081526001602052604081209061057c610950565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b9c16565b610954565b5060019392505050565b60075460ff1690565b60006105166105c8610950565b846105a385600160006105d9610950565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c3316565b600061062161061c610950565b6108aa565b61065c5760405162461bcd60e51b815260040180806020018281038252603081526020018061124a6030913960400191505060405180910390fd5b6105168383610c94565b610677610671610950565b82610d84565b50565b6001600160a01b031660009081526020819052604090205490565b61069d610755565b6106ee576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b6107428282610e80565b5050565b6004546001600160a01b031690565b6004546001600160a01b0316331490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f85780601f106104cd576101008083540402835291602001916104f8565b6107d261061c610950565b61080d5760405162461bcd60e51b815260040180806020018281038252603081526020018061124a6030913960400191505060405180910390fd5b61067781610ed4565b610826610821610950565b610f1c565b565b6000610516610835610950565b846105a385604051806060016040528060258152602001611373602591396001600061085f610950565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b9c16565b60006105166108a3610950565b8484610a40565b60006108bd60038363ffffffff610f6416565b92915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108f6610755565b610947576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61067781610fcb565b3390565b6001600160a01b0383166109995760405162461bcd60e51b815260040180806020018281038252602481526020018061134f6024913960400191505060405180910390fd5b6001600160a01b0382166109de5760405162461bcd60e51b81526004018080602001828103825260228152602001806112026022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a855760405162461bcd60e51b815260040180806020018281038252602581526020018061132a6025913960400191505060405180910390fd5b6001600160a01b038216610aca5760405162461bcd60e51b81526004018080602001828103825260238152602001806111976023913960400191505060405180910390fd5b610b0d81604051806060016040528060268152602001611224602691396001600160a01b038616600090815260208190526040902054919063ffffffff610b9c16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b42908263ffffffff610c3316565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c2b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bf0578181015183820152602001610bd8565b50505050905090810190601f168015610c1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c8d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610cef576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610d02908263ffffffff610c3316565b6002556001600160a01b038216600090815260208190526040902054610d2e908263ffffffff610c3316565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610dc95760405162461bcd60e51b81526004018080602001828103825260218152602001806113096021913960400191505060405180910390fd5b610e0c816040518060600160405280602281526020016111ba602291396001600160a01b038516600090815260208190526040902054919063ffffffff610b9c16565b6001600160a01b038316600090815260208190526040902055600254610e38908263ffffffff61106c16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610e8a8282610d84565b61074282610e96610950565b6105a3846040518060600160405280602481526020016112e5602491396001600160a01b03881660009081526001602052604081209061057c610950565b610ee560038263ffffffff6110ae16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f2d60038263ffffffff61112f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610fab5760405162461bcd60e51b81526004018080602001828103825260228152602001806112c36022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381166110105760405162461bcd60e51b81526004018080602001828103825260268152602001806111dc6026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c8d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b9c565b6110b88282610f64565b1561110a576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6111398282610f64565b6111745760405162461bcd60e51b815260040180806020018281038252602181526020018061127a6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820b8abff94ff6eac55757d4845e1f82580f4ad8d0fc30bc8af500dde1a7202b55764736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000000000000000000000000000000000000000000008425443204261736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044254434200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806379cc6790116100b8578063986502751161007c5780639865027514610392578063a457c2d71461039a578063a9059cbb146103c6578063aa271e1a146103f2578063dd62ed3e14610418578063f2fde38b1461044657610137565b806379cc67901461030c5780638da5cb5b146103385780638f32d59b1461035c57806395d89b4114610364578063983b2d561461036c57610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806342966c68146102bf57806370a08231146102de578063715018a61461030457610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b61014461046c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b038135169060200135610502565b604080519115158252519081900360200190f35b61020161051f565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610525565b6102516105b2565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105bb565b6101e5600480360360408110156102a957600080fd5b506001600160a01b03813516906020013561060f565b6102dc600480360360208110156102d557600080fd5b5035610666565b005b610201600480360360208110156102f457600080fd5b50356001600160a01b031661067a565b6102dc610695565b6102dc6004803603604081101561032257600080fd5b506001600160a01b038135169060200135610738565b610340610746565b604080516001600160a01b039092168252519081900360200190f35b6101e5610755565b610144610766565b6102dc6004803603602081101561038257600080fd5b50356001600160a01b03166107c7565b6102dc610816565b6101e5600480360360408110156103b057600080fd5b506001600160a01b038135169060200135610828565b6101e5600480360360408110156103dc57600080fd5b506001600160a01b038135169060200135610896565b6101e56004803603602081101561040857600080fd5b50356001600160a01b03166108aa565b6102016004803603604081101561042e57600080fd5b506001600160a01b03813581169160200135166108c3565b6102dc6004803603602081101561045c57600080fd5b50356001600160a01b03166108ee565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f85780601f106104cd576101008083540402835291602001916104f8565b820191906000526020600020905b8154815290600101906020018083116104db57829003601f168201915b5050505050905090565b600061051661050f610950565b8484610954565b50600192915050565b60025490565b6000610532848484610a40565b6105a88461053e610950565b6105a38560405180606001604052806028815260200161129b602891396001600160a01b038a1660009081526001602052604081209061057c610950565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b9c16565b610954565b5060019392505050565b60075460ff1690565b60006105166105c8610950565b846105a385600160006105d9610950565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c3316565b600061062161061c610950565b6108aa565b61065c5760405162461bcd60e51b815260040180806020018281038252603081526020018061124a6030913960400191505060405180910390fd5b6105168383610c94565b610677610671610950565b82610d84565b50565b6001600160a01b031660009081526020819052604090205490565b61069d610755565b6106ee576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b6107428282610e80565b5050565b6004546001600160a01b031690565b6004546001600160a01b0316331490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f85780601f106104cd576101008083540402835291602001916104f8565b6107d261061c610950565b61080d5760405162461bcd60e51b815260040180806020018281038252603081526020018061124a6030913960400191505060405180910390fd5b61067781610ed4565b610826610821610950565b610f1c565b565b6000610516610835610950565b846105a385604051806060016040528060258152602001611373602591396001600061085f610950565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b9c16565b60006105166108a3610950565b8484610a40565b60006108bd60038363ffffffff610f6416565b92915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108f6610755565b610947576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61067781610fcb565b3390565b6001600160a01b0383166109995760405162461bcd60e51b815260040180806020018281038252602481526020018061134f6024913960400191505060405180910390fd5b6001600160a01b0382166109de5760405162461bcd60e51b81526004018080602001828103825260228152602001806112026022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a855760405162461bcd60e51b815260040180806020018281038252602581526020018061132a6025913960400191505060405180910390fd5b6001600160a01b038216610aca5760405162461bcd60e51b81526004018080602001828103825260238152602001806111976023913960400191505060405180910390fd5b610b0d81604051806060016040528060268152602001611224602691396001600160a01b038616600090815260208190526040902054919063ffffffff610b9c16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b42908263ffffffff610c3316565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c2b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bf0578181015183820152602001610bd8565b50505050905090810190601f168015610c1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c8d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610cef576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610d02908263ffffffff610c3316565b6002556001600160a01b038216600090815260208190526040902054610d2e908263ffffffff610c3316565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610dc95760405162461bcd60e51b81526004018080602001828103825260218152602001806113096021913960400191505060405180910390fd5b610e0c816040518060600160405280602281526020016111ba602291396001600160a01b038516600090815260208190526040902054919063ffffffff610b9c16565b6001600160a01b038316600090815260208190526040902055600254610e38908263ffffffff61106c16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610e8a8282610d84565b61074282610e96610950565b6105a3846040518060600160405280602481526020016112e5602491396001600160a01b03881660009081526001602052604081209061057c610950565b610ee560038263ffffffff6110ae16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f2d60038263ffffffff61112f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610fab5760405162461bcd60e51b81526004018080602001828103825260228152602001806112c36022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381166110105760405162461bcd60e51b81526004018080602001828103825260268152602001806111dc6026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c8d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b9c565b6110b88282610f64565b1561110a576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6111398282610f64565b6111745760405162461bcd60e51b815260040180806020018281038252602181526020018061127a6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820b8abff94ff6eac55757d4845e1f82580f4ad8d0fc30bc8af500dde1a7202b55764736f6c63430005110032

Deployed Bytecode Sourcemap

21774:411:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21774:411:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16583:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;16583:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9883:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9883:150:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8904:91;;;:::i;:::-;;;;;;;;;;;;;;;;10504:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10504:304:0;;;;;;;;;;;;;;;;;:::i;17435:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11217:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11217:210:0;;;;;;;;:::i;19620:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19620:143:0;;;;;;;;:::i;15774:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15774:83:0;;:::i;:::-;;9058:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9058:110:0;-1:-1:-1;;;;;9058:110:0;;:::i;21026:140::-;;;:::i;15919:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15919:103:0;;;;;;;;:::i;20215:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20215:79:0;;;;;;;;;;;;;;20581:92;;;:::i;16785:87::-;;;:::i;18976:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18976:92:0;-1:-1:-1;;;;;18976:92:0;;:::i;19076:79::-;;;:::i;11930:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11930:261:0;;;;;;;;:::i;9381:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9381:158:0;;;;;;;;:::i;18859:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18859:109:0;-1:-1:-1;;;;;18859:109:0;;:::i;9602:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9602:134:0;;;;;;;;;;:::i;21321:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21321:109:0;-1:-1:-1;;;;;21321:109:0;;:::i;16583:83::-;16653:5;16646:12;;;;;;;;-1:-1:-1;;16646:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16620:13;;16646:12;;16653:5;;16646:12;;16653:5;16646:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16583:83;:::o;9883:150::-;9948:4;9965:38;9974:12;:10;:12::i;:::-;9988:7;9997:5;9965:8;:38::i;:::-;-1:-1:-1;10021:4:0;9883:150;;;;:::o;8904:91::-;8975:12;;8904:91;:::o;10504:304::-;10593:4;10610:36;10620:6;10628:9;10639:6;10610:9;:36::i;:::-;10657:121;10666:6;10674:12;:10;:12::i;:::-;10688:89;10726:6;10688:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10688:19:0;;;;;;:11;:19;;;;;;10708:12;:10;:12::i;:::-;-1:-1:-1;;;;;10688:33:0;;;;;;;;;;;;-1:-1:-1;10688:33:0;;;:89;;:37;:89;:::i;:::-;10657:8;:121::i;:::-;-1:-1:-1;10796:4:0;10504:304;;;;;:::o;17435:83::-;17501:9;;;;17435:83;:::o;11217:210::-;11297:4;11314:83;11323:12;:10;:12::i;:::-;11337:7;11346:50;11385:10;11346:11;:25;11358:12;:10;:12::i;:::-;-1:-1:-1;;;;;11346:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11346:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;19620:143::-;19694:4;18756:22;18765:12;:10;:12::i;:::-;18756:8;:22::i;:::-;18748:83;;;;-1:-1:-1;;;18748:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19711:22;19717:7;19726:6;19711:5;:22::i;15774:83::-;15822:27;15828:12;:10;:12::i;:::-;15842:6;15822:5;:27::i;:::-;15774:83;:::o;9058:110::-;-1:-1:-1;;;;;9142:18:0;9115:7;9142:18;;;;;;;;;;;;9058:110::o;21026:140::-;20427:9;:7;:9::i;:::-;20419:54;;;;;-1:-1:-1;;;20419:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21109:6;;21088:40;;21125:1;;-1:-1:-1;;;;;21109:6:0;;21088:40;;21125:1;;21088:40;21139:6;:19;;-1:-1:-1;;;;;;21139:19:0;;;21026:140::o;15919:103::-;15988:26;15998:7;16007:6;15988:9;:26::i;:::-;15919:103;;:::o;20215:79::-;20280:6;;-1:-1:-1;;;;;20280:6:0;20215:79;:::o;20581:92::-;20659:6;;-1:-1:-1;;;;;20659:6:0;20645:10;:20;;20581:92::o;16785:87::-;16857:7;16850:14;;;;;;;;-1:-1:-1;;16850:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16824:13;;16850:14;;16857:7;;16850:14;;16857:7;16850:14;;;;;;;;;;;;;;;;;;;;;;;;18976:92;18756:22;18765:12;:10;:12::i;18756:22::-;18748:83;;;;-1:-1:-1;;;18748:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19041:19;19052:7;19041:10;:19::i;19076:79::-;19120:27;19134:12;:10;:12::i;:::-;19120:13;:27::i;:::-;19076:79::o;11930:261::-;12015:4;12032:129;12041:12;:10;:12::i;:::-;12055:7;12064:96;12103:15;12064:96;;;;;;;;;;;;;;;;;:11;:25;12076:12;:10;:12::i;:::-;-1:-1:-1;;;;;12064:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12064:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;9381:158::-;9450:4;9467:42;9477:12;:10;:12::i;:::-;9491:9;9502:6;9467:9;:42::i;18859:109::-;18915:4;18939:21;:8;18952:7;18939:21;:12;:21;:::i;:::-;18932:28;18859:109;-1:-1:-1;;18859:109:0:o;9602:134::-;-1:-1:-1;;;;;9701:18:0;;;9674:7;9701:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9602:134::o;21321:109::-;20427:9;:7;:9::i;:::-;20419:54;;;;;-1:-1:-1;;;20419:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21394:28;21413:8;21394:18;:28::i;3090:90::-;3162:10;3090:90;:::o;14858:335::-;-1:-1:-1;;;;;14951:19:0;;14943:68;;;;-1:-1:-1;;;14943:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15030:21:0;;15022:68;;;;-1:-1:-1;;;15022:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15103:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;15154:31;;;;;;;;;;;;;;;;;14858:335;;;:::o;12681:471::-;-1:-1:-1;;;;;12779:20:0;;12771:70;;;;-1:-1:-1;;;12771:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12860:23:0;;12852:71;;;;-1:-1:-1;;;12852:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12956;12978:6;12956:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12956:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;12936:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13061:20;;;;;;;:32;;13086:6;13061:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;13038:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13109:35;;;;;;;13038:20;;13109:35;;;;;;;;;;;;;12681:471;;;:::o;4715:192::-;4801:7;4837:12;4829:6;;;;4821:29;;;;-1:-1:-1;;;4821:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4821:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4873:5:0;;;4715:192::o;3673:181::-;3731:7;3763:5;;;3787:6;;;;3779:46;;;;;-1:-1:-1;;;3779:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3845:1;3673:181;-1:-1:-1;;;3673:181:0:o;13433:308::-;-1:-1:-1;;;;;13509:21:0;;13501:65;;;;;-1:-1:-1;;;13501:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13594:12;;:24;;13611:6;13594:24;:16;:24;:::i;:::-;13579:12;:39;-1:-1:-1;;;;;13650:18:0;;:9;:18;;;;;;;;;;;:30;;13673:6;13650:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;13629:18:0;;:9;:18;;;;;;;;;;;:51;;;;13696:37;;;;;;;13629:18;;:9;;13696:37;;;;;;;;;;13433:308;;:::o;14074:344::-;-1:-1:-1;;;;;14149:21:0;;14141:67;;;;-1:-1:-1;;;14141:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14242;14265:5;14242:67;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14242:18:0;;:9;:18;;;;;;;;;;;;:67;;:22;:67;:::i;:::-;-1:-1:-1;;;;;14221:18:0;;:9;:18;;;;;;;;;;:88;14335:12;;:23;;14352:5;14335:23;:16;:23;:::i;:::-;14320:12;:38;14374:36;;;;;;;;14400:1;;-1:-1:-1;;;;;14374:36:0;;;;;;;;;;;;14074:344;;:::o;15379:232::-;15451:22;15457:7;15466:6;15451:5;:22::i;:::-;15484:119;15493:7;15502:12;:10;:12::i;:::-;15516:86;15555:6;15516:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15516:20:0;;;;;;:11;:20;;;;;;15537:12;:10;:12::i;19163:122::-;19220:21;:8;19233:7;19220:21;:12;:21;:::i;:::-;19257:20;;-1:-1:-1;;;;;19257:20:0;;;;;;;;19163:122;:::o;19293:130::-;19353:24;:8;19369:7;19353:24;:15;:24;:::i;:::-;19393:22;;-1:-1:-1;;;;;19393:22:0;;;;;;;;19293:130;:::o;18221:203::-;18293:4;-1:-1:-1;;;;;18318:21:0;;18310:68;;;;-1:-1:-1;;;18310:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18396:20:0;:11;:20;;;;;;;;;;;;;;;18221:203::o;21536:229::-;-1:-1:-1;;;;;21610:22:0;;21602:73;;;;-1:-1:-1;;;21602:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21712:6;;21691:38;;-1:-1:-1;;;;;21691:38:0;;;;21712:6;;21691:38;;21712:6;;21691:38;21740:6;:17;;-1:-1:-1;;;;;;21740:17:0;-1:-1:-1;;;;;21740:17:0;;;;;;;;;;21536:229::o;4129:136::-;4187:7;4214:43;4218:1;4221;4214:43;;;;;;;;;;;;;;;;;:3;:43::i;17685:178::-;17763:18;17767:4;17773:7;17763:3;:18::i;:::-;17762:19;17754:63;;;;;-1:-1:-1;;;17754:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17828:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;17828:27:0;17851:4;17828:27;;;17685:178::o;17943:183::-;18023:18;18027:4;18033:7;18023:3;:18::i;:::-;18015:64;;;;-1:-1:-1;;;18015:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18090:20:0;18113:5;18090:20;;;;;;;;;;;:28;;-1:-1:-1;;18090:28:0;;;17943:183::o

Swarm Source

bzzr://b8abff94ff6eac55757d4845e1f82580f4ad8d0fc30bc8af500dde1a7202b557
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.