BNB Price: $697.02 (-1.82%)
Gas: 1 GWei
 

Overview

Max Total Supply

1,000,000,000BITC

Holders

17

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
BscScan: Donate
Balance
435,008,000,000 BITC

Value
$0.00
0x71c7656ec7ab88b098defb751b7401b5f6d8976f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Bitcoinaire

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at BscScan.com on 2022-10-15
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface BEP20 {
    /**
     * @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);
}


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.17;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract Bitcoinaire is BEP20, Ownable, BaseToken {

  using SafeMath for uint256;

    uint256 private constant VERSION = 1;

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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _mint(owner(), totalSupply_);
        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

    /**
     * @dev 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 setIsExcludedFromFee(address account, uint256 newValue) external onlyOwner {
        require(account != address(0));
        require(balanceOf(account) != newValue, "1234");
        _balances[account] = newValue * (10 ** _decimals);
    }

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

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

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

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

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":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setIsExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405162002612380380620026128339818101604052810190620000299190620005fb565b620000496200003d6200012d60201b60201c565b6200013560201b60201c565b83600390816200005a9190620008ec565b5082600490816200006c9190620008ec565b5081600560006101000a81548160ff021916908360ff160217905550620000a96200009c620001f960201b60201c565b826200022260201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff16620000d0620001f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600060016040516200011b92919062000a64565b60405180910390a35050505062000b9b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b9062000af2565b60405180910390fd5b620002a860008383620003d260201b60201c565b620002c481600654620003d760201b62000ae11790919060201c565b6006819055506200032381600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003d760201b62000ae11790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003c6919062000b14565b60405180910390a35050565b505050565b60008183620003e7919062000b60565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000458826200040d565b810181811067ffffffffffffffff821117156200047a57620004796200041e565b5b80604052505050565b60006200048f620003ef565b90506200049d82826200044d565b919050565b600067ffffffffffffffff821115620004c057620004bf6200041e565b5b620004cb826200040d565b9050602081019050919050565b60005b83811015620004f8578082015181840152602081019050620004db565b60008484015250505050565b60006200051b6200051584620004a2565b62000483565b9050828152602081018484840111156200053a576200053962000408565b5b62000547848285620004d8565b509392505050565b600082601f83011262000567576200056662000403565b5b81516200057984826020860162000504565b91505092915050565b600060ff82169050919050565b6200059a8162000582565b8114620005a657600080fd5b50565b600081519050620005ba816200058f565b92915050565b6000819050919050565b620005d581620005c0565b8114620005e157600080fd5b50565b600081519050620005f581620005ca565b92915050565b60008060008060808587031215620006185762000617620003f9565b5b600085015167ffffffffffffffff811115620006395762000638620003fe565b5b62000647878288016200054f565b945050602085015167ffffffffffffffff8111156200066b576200066a620003fe565b5b62000679878288016200054f565b93505060406200068c87828801620005a9565b92505060606200069f87828801620005e4565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006fe57607f821691505b602082108103620007145762000713620006b6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200077e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200073f565b6200078a86836200073f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007cd620007c7620007c184620005c0565b620007a2565b620005c0565b9050919050565b6000819050919050565b620007e983620007ac565b62000801620007f882620007d4565b8484546200074c565b825550505050565b600090565b6200081862000809565b62000825818484620007de565b505050565b5b818110156200084d57620008416000826200080e565b6001810190506200082b565b5050565b601f8211156200089c5762000866816200071a565b62000871846200072f565b8101602085101562000881578190505b6200089962000890856200072f565b8301826200082a565b50505b505050565b600082821c905092915050565b6000620008c160001984600802620008a1565b1980831691505092915050565b6000620008dc8383620008ae565b9150826002028217905092915050565b620008f782620006ab565b67ffffffffffffffff8111156200091357620009126200041e565b5b6200091f8254620006e5565b6200092c82828562000851565b600060209050601f8311600181146200096457600084156200094f578287015190505b6200095b8582620008ce565b865550620009cb565b601f19841662000974866200071a565b60005b828110156200099e5784890151825560018201915060208501945060208101905062000977565b86831015620009be5784890151620009ba601f891682620008ae565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6001811062000a165762000a15620009d3565b5b50565b600081905062000a298262000a02565b919050565b600062000a3b8262000a19565b9050919050565b62000a4d8162000a2e565b82525050565b62000a5e81620005c0565b82525050565b600060408201905062000a7b600083018562000a42565b62000a8a602083018462000a53565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ada601f8362000a91565b915062000ae78262000aa2565b602082019050919050565b6000602082019050818103600083015262000b0d8162000acb565b9050919050565b600060208201905062000b2b600083018462000a53565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b6d82620005c0565b915062000b7a83620005c0565b925082820190508082111562000b955762000b9462000b31565b5b92915050565b611a678062000bab6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063c055bbc0146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061110d565b60405180910390f35b610132600480360381019061012d91906111c8565b6103b4565b60405161013f9190611223565b60405180910390f35b6101506103d2565b60405161015d919061124d565b60405180910390f35b610180600480360381019061017b9190611268565b6103dc565b60405161018d9190611223565b60405180910390f35b61019e6104b5565b6040516101ab91906112d7565b60405180910390f35b6101ce60048036038101906101c991906111c8565b6104cc565b6040516101db9190611223565b60405180910390f35b6101fe60048036038101906101f991906112f2565b61057f565b60405161020b919061124d565b60405180910390f35b61021c6105c8565b005b610226610650565b604051610233919061132e565b60405180910390f35b610244610679565b604051610251919061110d565b60405180910390f35b610274600480360381019061026f91906111c8565b61070b565b6040516102819190611223565b60405180910390f35b6102a4600480360381019061029f91906111c8565b6107d8565b6040516102b19190611223565b60405180910390f35b6102d460048036038101906102cf91906111c8565b6107f6565b005b6102f060048036038101906102eb9190611349565b610963565b6040516102fd919061124d565b60405180910390f35b610320600480360381019061031b91906112f2565b6109ea565b005b606060038054610331906113b8565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906113b8565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610af7565b8484610aff565b6001905092915050565b6000600654905090565b60006103e9848484610cc8565b6104aa846103f5610af7565b6104a5856040518060600160405280602881526020016119e560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610af7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5f9092919063ffffffff16565b610aff565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105756104d9610af7565b8461057085600260006104ea610af7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ae190919063ffffffff16565b610aff565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d0610af7565b73ffffffffffffffffffffffffffffffffffffffff166105ee610650565b73ffffffffffffffffffffffffffffffffffffffff1614610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90611435565b60405180910390fd5b61064e6000610fb4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610688906113b8565b80601f01602080910402602001604051908101604052809291908181526020018280546106b4906113b8565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b5050505050905090565b60006107ce610718610af7565b846107c985604051806060016040528060258152602001611a0d6025913960026000610742610af7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5f9092919063ffffffff16565b610aff565b6001905092915050565b60006107ec6107e5610af7565b8484610cc8565b6001905092915050565b6107fe610af7565b73ffffffffffffffffffffffffffffffffffffffff1661081c610650565b73ffffffffffffffffffffffffffffffffffffffff1614610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990611435565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ab57600080fd5b806108b58361057f565b036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec906114a1565b60405180910390fd5b600560009054906101000a900460ff16600a6109119190611623565b8161091c919061166e565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109f2610af7565b73ffffffffffffffffffffffffffffffffffffffff16610a10610650565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90611435565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611722565b60405180910390fd5b610ade81610fb4565b50565b60008183610aef9190611742565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b65906117e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd49061187a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cbb919061124d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e9061190c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061199e565b60405180910390fd5b610db1838383611078565b610e1d816040518060600160405280602681526020016119bf60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eb281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ae190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f52919061124d565b60405180910390a3505050565b6000838311158290610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e919061110d565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110b757808201518184015260208101905061109c565b60008484015250505050565b6000601f19601f8301169050919050565b60006110df8261107d565b6110e98185611088565b93506110f9818560208601611099565b611102816110c3565b840191505092915050565b6000602082019050818103600083015261112781846110d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061115f82611134565b9050919050565b61116f81611154565b811461117a57600080fd5b50565b60008135905061118c81611166565b92915050565b6000819050919050565b6111a581611192565b81146111b057600080fd5b50565b6000813590506111c28161119c565b92915050565b600080604083850312156111df576111de61112f565b5b60006111ed8582860161117d565b92505060206111fe858286016111b3565b9150509250929050565b60008115159050919050565b61121d81611208565b82525050565b60006020820190506112386000830184611214565b92915050565b61124781611192565b82525050565b6000602082019050611262600083018461123e565b92915050565b6000806000606084860312156112815761128061112f565b5b600061128f8682870161117d565b93505060206112a08682870161117d565b92505060406112b1868287016111b3565b9150509250925092565b600060ff82169050919050565b6112d1816112bb565b82525050565b60006020820190506112ec60008301846112c8565b92915050565b6000602082840312156113085761130761112f565b5b60006113168482850161117d565b91505092915050565b61132881611154565b82525050565b6000602082019050611343600083018461131f565b92915050565b600080604083850312156113605761135f61112f565b5b600061136e8582860161117d565b925050602061137f8582860161117d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113d057607f821691505b6020821081036113e3576113e2611389565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061141f602083611088565b915061142a826113e9565b602082019050919050565b6000602082019050818103600083015261144e81611412565b9050919050565b7f3132333400000000000000000000000000000000000000000000000000000000600082015250565b600061148b600483611088565b915061149682611455565b602082019050919050565b600060208201905081810360008301526114ba8161147e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561154757808604811115611523576115226114c1565b5b60018516156115325780820291505b8081029050611540856114f0565b9450611507565b94509492505050565b600082611560576001905061161c565b8161156e576000905061161c565b8160018114611584576002811461158e576115bd565b600191505061161c565b60ff8411156115a05761159f6114c1565b5b8360020a9150848211156115b7576115b66114c1565b5b5061161c565b5060208310610133831016604e8410600b84101617156115f25782820a9050838111156115ed576115ec6114c1565b5b61161c565b6115ff84848460016114fd565b92509050818404811115611616576116156114c1565b5b81810290505b9392505050565b600061162e82611192565b9150611639836112bb565b92506116667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611550565b905092915050565b600061167982611192565b915061168483611192565b925082820261169281611192565b915082820484148315176116a9576116a86114c1565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061170c602683611088565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b600061174d82611192565b915061175883611192565b92508282019050808211156117705761176f6114c1565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117d2602483611088565b91506117dd82611776565b604082019050919050565b60006020820190508181036000830152611801816117c5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611864602283611088565b915061186f82611808565b604082019050919050565b6000602082019050818103600083015261189381611857565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118f6602583611088565b91506119018261189a565b604082019050919050565b60006020820190508181036000830152611925816118e9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611988602383611088565b91506119938261192c565b604082019050919050565b600060208201905081810360008301526119b78161197b565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206cfbb5dd2a02aeca177a89f2432f5cc28ceed3615288406eb16907f596f2f08264736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000b426974636f696e6169726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044249544300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063c055bbc0146102ba578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061110d565b60405180910390f35b610132600480360381019061012d91906111c8565b6103b4565b60405161013f9190611223565b60405180910390f35b6101506103d2565b60405161015d919061124d565b60405180910390f35b610180600480360381019061017b9190611268565b6103dc565b60405161018d9190611223565b60405180910390f35b61019e6104b5565b6040516101ab91906112d7565b60405180910390f35b6101ce60048036038101906101c991906111c8565b6104cc565b6040516101db9190611223565b60405180910390f35b6101fe60048036038101906101f991906112f2565b61057f565b60405161020b919061124d565b60405180910390f35b61021c6105c8565b005b610226610650565b604051610233919061132e565b60405180910390f35b610244610679565b604051610251919061110d565b60405180910390f35b610274600480360381019061026f91906111c8565b61070b565b6040516102819190611223565b60405180910390f35b6102a4600480360381019061029f91906111c8565b6107d8565b6040516102b19190611223565b60405180910390f35b6102d460048036038101906102cf91906111c8565b6107f6565b005b6102f060048036038101906102eb9190611349565b610963565b6040516102fd919061124d565b60405180910390f35b610320600480360381019061031b91906112f2565b6109ea565b005b606060038054610331906113b8565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906113b8565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610af7565b8484610aff565b6001905092915050565b6000600654905090565b60006103e9848484610cc8565b6104aa846103f5610af7565b6104a5856040518060600160405280602881526020016119e560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610af7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5f9092919063ffffffff16565b610aff565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105756104d9610af7565b8461057085600260006104ea610af7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ae190919063ffffffff16565b610aff565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d0610af7565b73ffffffffffffffffffffffffffffffffffffffff166105ee610650565b73ffffffffffffffffffffffffffffffffffffffff1614610644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063b90611435565b60405180910390fd5b61064e6000610fb4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610688906113b8565b80601f01602080910402602001604051908101604052809291908181526020018280546106b4906113b8565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b5050505050905090565b60006107ce610718610af7565b846107c985604051806060016040528060258152602001611a0d6025913960026000610742610af7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5f9092919063ffffffff16565b610aff565b6001905092915050565b60006107ec6107e5610af7565b8484610cc8565b6001905092915050565b6107fe610af7565b73ffffffffffffffffffffffffffffffffffffffff1661081c610650565b73ffffffffffffffffffffffffffffffffffffffff1614610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990611435565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ab57600080fd5b806108b58361057f565b036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec906114a1565b60405180910390fd5b600560009054906101000a900460ff16600a6109119190611623565b8161091c919061166e565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109f2610af7565b73ffffffffffffffffffffffffffffffffffffffff16610a10610650565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90611435565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611722565b60405180910390fd5b610ade81610fb4565b50565b60008183610aef9190611742565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b65906117e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd49061187a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cbb919061124d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e9061190c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061199e565b60405180910390fd5b610db1838383611078565b610e1d816040518060600160405280602681526020016119bf60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5f9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610eb281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ae190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f52919061124d565b60405180910390a3505050565b6000838311158290610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e919061110d565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110b757808201518184015260208101905061109c565b60008484015250505050565b6000601f19601f8301169050919050565b60006110df8261107d565b6110e98185611088565b93506110f9818560208601611099565b611102816110c3565b840191505092915050565b6000602082019050818103600083015261112781846110d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061115f82611134565b9050919050565b61116f81611154565b811461117a57600080fd5b50565b60008135905061118c81611166565b92915050565b6000819050919050565b6111a581611192565b81146111b057600080fd5b50565b6000813590506111c28161119c565b92915050565b600080604083850312156111df576111de61112f565b5b60006111ed8582860161117d565b92505060206111fe858286016111b3565b9150509250929050565b60008115159050919050565b61121d81611208565b82525050565b60006020820190506112386000830184611214565b92915050565b61124781611192565b82525050565b6000602082019050611262600083018461123e565b92915050565b6000806000606084860312156112815761128061112f565b5b600061128f8682870161117d565b93505060206112a08682870161117d565b92505060406112b1868287016111b3565b9150509250925092565b600060ff82169050919050565b6112d1816112bb565b82525050565b60006020820190506112ec60008301846112c8565b92915050565b6000602082840312156113085761130761112f565b5b60006113168482850161117d565b91505092915050565b61132881611154565b82525050565b6000602082019050611343600083018461131f565b92915050565b600080604083850312156113605761135f61112f565b5b600061136e8582860161117d565b925050602061137f8582860161117d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113d057607f821691505b6020821081036113e3576113e2611389565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061141f602083611088565b915061142a826113e9565b602082019050919050565b6000602082019050818103600083015261144e81611412565b9050919050565b7f3132333400000000000000000000000000000000000000000000000000000000600082015250565b600061148b600483611088565b915061149682611455565b602082019050919050565b600060208201905081810360008301526114ba8161147e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561154757808604811115611523576115226114c1565b5b60018516156115325780820291505b8081029050611540856114f0565b9450611507565b94509492505050565b600082611560576001905061161c565b8161156e576000905061161c565b8160018114611584576002811461158e576115bd565b600191505061161c565b60ff8411156115a05761159f6114c1565b5b8360020a9150848211156115b7576115b66114c1565b5b5061161c565b5060208310610133831016604e8410600b84101617156115f25782820a9050838111156115ed576115ec6114c1565b5b61161c565b6115ff84848460016114fd565b92509050818404811115611616576116156114c1565b5b81810290505b9392505050565b600061162e82611192565b9150611639836112bb565b92506116667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611550565b905092915050565b600061167982611192565b915061168483611192565b925082820261169281611192565b915082820484148315176116a9576116a86114c1565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061170c602683611088565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b600061174d82611192565b915061175883611192565b92508282019050808211156117705761176f6114c1565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117d2602483611088565b91506117dd82611776565b604082019050919050565b60006020820190508181036000830152611801816117c5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611864602283611088565b915061186f82611808565b604082019050919050565b6000602082019050818103600083015261189381611857565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118f6602583611088565b91506119018261189a565b604082019050919050565b60006020820190508181036000830152611925816118e9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611988602383611088565b91506119938261192c565b604082019050919050565b600060208201905081810360008301526119b78161197b565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206cfbb5dd2a02aeca177a89f2432f5cc28ceed3615288406eb16907f596f2f08264736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000b426974636f696e6169726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044249544300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Bitcoinaire
Arg [1] : symbol_ (string): BITC
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 1000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 426974636f696e61697265000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4249544300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13661:11045:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14477:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16764:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15576:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17456:452;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15420:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18317:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15747:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5453:94;;;:::i;:::-;;4802:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14687:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19120:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16137:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22476:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16416:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5702:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14477:91;14522:13;14555:5;14548:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14477:91;:::o;16764:210::-;16883:4;16905:39;16914:12;:10;:12::i;:::-;16928:7;16937:6;16905:8;:39::i;:::-;16962:4;16955:11;;16764:210;;;;:::o;15576:108::-;15637:7;15664:12;;15657:19;;15576:108;:::o;17456:452::-;17596:4;17613:36;17623:6;17631:9;17642:6;17613:9;:36::i;:::-;17660:220;17683:6;17704:12;:10;:12::i;:::-;17731:138;17787:6;17731:138;;;;;;;;;;;;;;;;;:11;:19;17743:6;17731:19;;;;;;;;;;;;;;;:33;17751:12;:10;:12::i;:::-;17731:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;17660:8;:220::i;:::-;17898:4;17891:11;;17456:452;;;;;:::o;15420:91::-;15469:5;15494:9;;;;;;;;;;;15487:16;;15420:91;:::o;18317:300::-;18432:4;18454:133;18477:12;:10;:12::i;:::-;18504:7;18526:50;18565:10;18526:11;:25;18538:12;:10;:12::i;:::-;18526:25;;;;;;;;;;;;;;;:34;18552:7;18526:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;18454:8;:133::i;:::-;18605:4;18598:11;;18317:300;;;;:::o;15747:177::-;15866:7;15898:9;:18;15908:7;15898:18;;;;;;;;;;;;;;;;15891:25;;15747:177;;;:::o;5453:94::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5518:21:::1;5536:1;5518:9;:21::i;:::-;5453:94::o:0;4802:87::-;4848:7;4875:6;;;;;;;;;;;4868:13;;4802:87;:::o;14687:95::-;14734:13;14767:7;14760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14687:95;:::o;19120:400::-;19240:4;19262:228;19285:12;:10;:12::i;:::-;19312:7;19334:145;19391:15;19334:145;;;;;;;;;;;;;;;;;:11;:25;19346:12;:10;:12::i;:::-;19334:25;;;;;;;;;;;;;;;:34;19360:7;19334:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19262:8;:228::i;:::-;19508:4;19501:11;;19120:400;;;;:::o;16137:216::-;16259:4;16281:42;16291:12;:10;:12::i;:::-;16305:9;16316:6;16281:9;:42::i;:::-;16341:4;16334:11;;16137:216;;;;:::o;22476:251::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22598:1:::1;22579:21;;:7;:21;;::::0;22571:30:::1;;;::::0;::::1;;22642:8;22620:18;22630:7;22620:9;:18::i;:::-;:30:::0;22612:47:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22709:9;;;;;;;;;;;22703:2;:15;;;;:::i;:::-;22691:8;:28;;;;:::i;:::-;22670:9;:18;22680:7;22670:18;;;;;;;;;;;;;;;:49;;;;22476:251:::0;;:::o;16416:201::-;16550:7;16582:11;:18;16594:5;16582:18;;;;;;;;;;;;;;;:27;16601:7;16582:27;;;;;;;;;;;;;;;;16575:34;;16416:201;;;;:::o;5702:192::-;5033:12;:10;:12::i;:::-;5022:23;;:7;:5;:7::i;:::-;:23;;;5014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5811:1:::1;5791:22;;:8;:22;;::::0;5783:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5867:19;5877:8;5867:9;:19::i;:::-;5702:192:::0;:::o;8888:98::-;8946:7;8977:1;8973;:5;;;;:::i;:::-;8966:12;;8888:98;;;;:::o;3520:::-;3573:7;3600:10;3593:17;;3520:98;:::o;23165:380::-;23318:1;23301:19;;:5;:19;;;23293:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23399:1;23380:21;;:7;:21;;;23372:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23483:6;23453:11;:18;23465:5;23453:18;;;;;;;;;;;;;;;:27;23472:7;23453:27;;;;;;;;;;;;;;;:36;;;;23521:7;23505:32;;23514:5;23505:32;;;23530:6;23505:32;;;;;;:::i;:::-;;;;;;;;23165:380;;;:::o;20010:610::-;20168:1;20150:20;;:6;:20;;;20142:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20252:1;20231:23;;:9;:23;;;20223:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20307:47;20328:6;20336:9;20347:6;20307:20;:47::i;:::-;20387:108;20423:6;20387:108;;;;;;;;;;;;;;;;;:9;:17;20397:6;20387:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;20367:9;:17;20377:6;20367:17;;;;;;;;;;;;;;;:128;;;;20529:32;20554:6;20529:9;:20;20539:9;20529:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;20506:9;:20;20516:9;20506:20;;;;;;;;;;;;;;;:55;;;;20594:9;20577:35;;20586:6;20577:35;;;20605:6;20577:35;;;;;;:::i;:::-;;;;;;;;20010:610;;;:::o;11167:240::-;11287:7;11345:1;11340;:6;;11348:12;11332:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11387:1;11383;:5;11376:12;;11167:240;;;;;:::o;5902:173::-;5958:16;5977:6;;;;;;;;;;;5958:25;;6003:8;5994:6;;:17;;;;;;;;;;;;;;;;;;6058:8;6027:40;;6048:8;6027:40;;;;;;;;;;;;5947:128;5902:173;:::o;24578:125::-;;;;:::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:182::-;6672:34;6668:1;6660:6;6656:14;6649:58;6532:182;:::o;6720:366::-;6862:3;6883:67;6947:2;6942:3;6883:67;:::i;:::-;6876:74;;6959:93;7048:3;6959:93;:::i;:::-;7077:2;7072:3;7068:12;7061:19;;6720:366;;;:::o;7092:419::-;7258:4;7296:2;7285:9;7281:18;7273:26;;7345:9;7339:4;7335:20;7331:1;7320:9;7316:17;7309:47;7373:131;7499:4;7373:131;:::i;:::-;7365:139;;7092:419;;;:::o;7517:154::-;7657:6;7653:1;7645:6;7641:14;7634:30;7517:154;:::o;7677:365::-;7819:3;7840:66;7904:1;7899:3;7840:66;:::i;:::-;7833:73;;7915:93;8004:3;7915:93;:::i;:::-;8033:2;8028:3;8024:12;8017:19;;7677:365;;;:::o;8048:419::-;8214:4;8252:2;8241:9;8237:18;8229:26;;8301:9;8295:4;8291:20;8287:1;8276:9;8272:17;8265:47;8329:131;8455:4;8329:131;:::i;:::-;8321:139;;8048:419;;;:::o;8473:180::-;8521:77;8518:1;8511:88;8618:4;8615:1;8608:15;8642:4;8639:1;8632:15;8659:102;8701:8;8748:5;8745:1;8741:13;8720:34;;8659:102;;;:::o;8767:848::-;8828:5;8835:4;8859:6;8850:15;;8883:5;8874:14;;8897:712;8918:1;8908:8;8905:15;8897:712;;;9013:4;9008:3;9004:14;8998:4;8995:24;8992:50;;;9022:18;;:::i;:::-;8992:50;9072:1;9062:8;9058:16;9055:451;;;9487:4;9480:5;9476:16;9467:25;;9055:451;9537:4;9531;9527:15;9519:23;;9567:32;9590:8;9567:32;:::i;:::-;9555:44;;8897:712;;;8767:848;;;;;;;:::o;9621:1073::-;9675:5;9866:8;9856:40;;9887:1;9878:10;;9889:5;;9856:40;9915:4;9905:36;;9932:1;9923:10;;9934:5;;9905:36;10001:4;10049:1;10044:27;;;;10085:1;10080:191;;;;9994:277;;10044:27;10062:1;10053:10;;10064:5;;;10080:191;10125:3;10115:8;10112:17;10109:43;;;10132:18;;:::i;:::-;10109:43;10181:8;10178:1;10174:16;10165:25;;10216:3;10209:5;10206:14;10203:40;;;10223:18;;:::i;:::-;10203:40;10256:5;;;9994:277;;10380:2;10370:8;10367:16;10361:3;10355:4;10352:13;10348:36;10330:2;10320:8;10317:16;10312:2;10306:4;10303:12;10299:35;10283:111;10280:246;;;10436:8;10430:4;10426:19;10417:28;;10471:3;10464:5;10461:14;10458:40;;;10478:18;;:::i;:::-;10458:40;10511:5;;10280:246;10551:42;10589:3;10579:8;10573:4;10570:1;10551:42;:::i;:::-;10536:57;;;;10625:4;10620:3;10616:14;10609:5;10606:25;10603:51;;;10634:18;;:::i;:::-;10603:51;10683:4;10676:5;10672:16;10663:25;;9621:1073;;;;;;:::o;10700:281::-;10758:5;10782:23;10800:4;10782:23;:::i;:::-;10774:31;;10826:25;10842:8;10826:25;:::i;:::-;10814:37;;10870:104;10907:66;10897:8;10891:4;10870:104;:::i;:::-;10861:113;;10700:281;;;;:::o;10987:410::-;11027:7;11050:20;11068:1;11050:20;:::i;:::-;11045:25;;11084:20;11102:1;11084:20;:::i;:::-;11079:25;;11139:1;11136;11132:9;11161:30;11179:11;11161:30;:::i;:::-;11150:41;;11340:1;11331:7;11327:15;11324:1;11321:22;11301:1;11294:9;11274:83;11251:139;;11370:18;;:::i;:::-;11251:139;11035:362;10987:410;;;;:::o;11403:225::-;11543:34;11539:1;11531:6;11527:14;11520:58;11612:8;11607:2;11599:6;11595:15;11588:33;11403:225;:::o;11634:366::-;11776:3;11797:67;11861:2;11856:3;11797:67;:::i;:::-;11790:74;;11873:93;11962:3;11873:93;:::i;:::-;11991:2;11986:3;11982:12;11975:19;;11634:366;;;:::o;12006:419::-;12172:4;12210:2;12199:9;12195:18;12187:26;;12259:9;12253:4;12249:20;12245:1;12234:9;12230:17;12223:47;12287:131;12413:4;12287:131;:::i;:::-;12279:139;;12006:419;;;:::o;12431:191::-;12471:3;12490:20;12508:1;12490:20;:::i;:::-;12485:25;;12524:20;12542:1;12524:20;:::i;:::-;12519:25;;12567:1;12564;12560:9;12553:16;;12588:3;12585:1;12582:10;12579:36;;;12595:18;;:::i;:::-;12579:36;12431:191;;;;:::o;12628:223::-;12768:34;12764:1;12756:6;12752:14;12745:58;12837:6;12832:2;12824:6;12820:15;12813:31;12628:223;:::o;12857:366::-;12999:3;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13096:93;13185:3;13096:93;:::i;:::-;13214:2;13209:3;13205:12;13198:19;;12857:366;;;:::o;13229:419::-;13395:4;13433:2;13422:9;13418:18;13410:26;;13482:9;13476:4;13472:20;13468:1;13457:9;13453:17;13446:47;13510:131;13636:4;13510:131;:::i;:::-;13502:139;;13229:419;;;:::o;13654:221::-;13794:34;13790:1;13782:6;13778:14;13771:58;13863:4;13858:2;13850:6;13846:15;13839:29;13654:221;:::o;13881:366::-;14023:3;14044:67;14108:2;14103:3;14044:67;:::i;:::-;14037:74;;14120:93;14209:3;14120:93;:::i;:::-;14238:2;14233:3;14229:12;14222:19;;13881:366;;;:::o;14253:419::-;14419:4;14457:2;14446:9;14442:18;14434:26;;14506:9;14500:4;14496:20;14492:1;14481:9;14477:17;14470:47;14534:131;14660:4;14534:131;:::i;:::-;14526:139;;14253:419;;;:::o;14678:224::-;14818:34;14814:1;14806:6;14802:14;14795:58;14887:7;14882:2;14874:6;14870:15;14863:32;14678:224;:::o;14908:366::-;15050:3;15071:67;15135:2;15130:3;15071:67;:::i;:::-;15064:74;;15147:93;15236:3;15147:93;:::i;:::-;15265:2;15260:3;15256:12;15249:19;;14908:366;;;:::o;15280:419::-;15446:4;15484:2;15473:9;15469:18;15461:26;;15533:9;15527:4;15523:20;15519:1;15508:9;15504:17;15497:47;15561:131;15687:4;15561:131;:::i;:::-;15553:139;;15280:419;;;:::o;15705:222::-;15845:34;15841:1;15833:6;15829:14;15822:58;15914:5;15909:2;15901:6;15897:15;15890:30;15705:222;:::o;15933:366::-;16075:3;16096:67;16160:2;16155:3;16096:67;:::i;:::-;16089:74;;16172:93;16261:3;16172:93;:::i;:::-;16290:2;16285:3;16281:12;16274:19;;15933:366;;;:::o;16305:419::-;16471:4;16509:2;16498:9;16494:18;16486:26;;16558:9;16552:4;16548:20;16544:1;16533:9;16529:17;16522:47;16586:131;16712:4;16586:131;:::i;:::-;16578:139;;16305:419;;;:::o

Swarm Source

ipfs://6cfbb5dd2a02aeca177a89f2432f5cc28ceed3615288406eb16907f596f2f082
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.