ETH Price: $3,502.77 (+0.25%)
Gas: 2 Gwei

Token

BPAD (BPAD)
 

Overview

Max Total Supply

7,500,000,000 BPAD

Holders

597

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
144,236.448291296860653282 BPAD

Value
$0.00
0x979248e1ab6a4dc4e4bedcfc059d2aedbf3b3d82
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BPAD

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Blok.sol
// SPDX-License-Identifier: None
pragma solidity 0.8.11;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

import "./AddrArrayLib.sol";

contract BPAD is ERC20Burnable, Ownable {
    using AddrArrayLib for AddrArrayLib.Addresses;

    /**
     * @dev Emitted when owner change fee account and fee amount.
     */
    event UpdateTaxInfo(address indexed owner, uint256 indexed feePercent);

    uint256 public constant PRECISION = 100;
    uint256 public constant INITIAL_SUPPLY = 7_500_000_000 * 10**18;

    address public _feeAccount;
    uint256 public _feePercent;

    // List of no fee addresses when transfer token
    AddrArrayLib.Addresses noFeeAddrs;

    constructor(
        address feeAccount,
        uint256 feePercent,
        address owner,
        address mintToAddr
    ) ERC20("BPAD", "BPAD") {
        require(feeAccount != address(0), "BPAD: fee account from the zero address");
        require(feePercent <= PRECISION, "BPAD: incorrect fee percent");
        require(owner != address(0), "BPAD: incorrect owner address");
        require(mintToAddr != address(0), "BPAD: incorrect mintToAddr address");
        if (_msgSender() != owner) {
            transferOwnership(owner);
        }
        _feeAccount = feeAccount;
        _feePercent = feePercent;
        _mint(mintToAddr, INITIAL_SUPPLY);
    }

    /**
     * @dev Update the fee collector and the percent of fee from transfer operation
     */
    function updateTaxInfo(address feeAccount, uint256 feePercent) external onlyOwner {
        require(feeAccount != address(0), "BPAD: fee account from the zero address");
        require(feePercent <= PRECISION, "BPAD: incorrect fee percent");
        _feeAccount = feeAccount;
        _feePercent = feePercent;
        emit UpdateTaxInfo(feeAccount, feePercent);
    }

    /**
     * @dev Push non-fee address
     */
    function addNoFeeAddress(address addr) external onlyOwner {
        noFeeAddrs.pushAddress(addr);
    }

    /**
     * @dev Pop non-fee address
     */
    function removeNoFeeAddress(address addr) external onlyOwner {
        require(noFeeAddrs.removeAddress(addr), "Address: address does not exist");
    }

    /**
     * @dev Check if address is existed in non-fee address list
     */
    function isExisted(address addr) public view returns (bool) {
        return noFeeAddrs.exists(addr);
    }

    /**
     * @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 override {
        require(sender != address(0), "BPAD: transfer from the zero address");
        require(recipient != address(0), "BPAD: transfer to the zero address");

        if (isExisted(sender) || _feePercent == 0) {
            super._transfer(sender, recipient, amount);
        } else {
            uint256 _fee = (amount * _feePercent) / PRECISION;
            uint256 _recepientAmount = amount - _fee;

            super._transfer(sender, recipient, _recepientAmount);
            super._transfer(sender, _feeAccount, _fee);
        }
    }
}

File 2 of 8 : AddrArrayLib.sol
// SPDX-License-Identifier: None
pragma solidity 0.8.11;

library AddrArrayLib {
    using AddrArrayLib for Addresses;

    struct Addresses {
        address[] _items;
    }

    /**
     * @notice push an address to the array
     * @dev if the address already exists, it will not be added again
     * @param self Storage array containing address type variables
     * @param element the element to add in the array
     */
    function pushAddress(Addresses storage self, address element) internal {
        if (!exists(self, element)) {
            self._items.push(element);
        }
    }

    /**
     * @notice remove an address from the array
     * @dev finds the element, swaps it with the last element, and then deletes it;
     *      returns a boolean whether the element was found and deleted
     * @param self Storage array containing address type variables
     * @param element the element to remove from the array
     */
    function removeAddress(Addresses storage self, address element) internal returns (bool) {
        for (uint256 i = 0; i < self.size(); i++) {
            if (self._items[i] == element) {
                self._items[i] = self._items[self.size() - 1];
                self._items.pop();
                return true;
            }
        }
        return false;
    }

    /**
     * @notice get the address at a specific index from array
     * @dev revert if the index is out of bounds
     * @param self Storage array containing address type variables
     * @param index the index in the array
     */
    function getAddressAtIndex(Addresses storage self, uint256 index) internal view returns (address) {
        require(index < size(self), "the index is out of bounds");
        return self._items[index];
    }

    /**
     * @notice get the size of the array
     * @param self Storage array containing address type variables
     */
    function size(Addresses storage self) internal view returns (uint256) {
        return self._items.length;
    }

    /**
     * @notice check if an element exist in the array
     * @param self Storage array containing address type variables
     * @param element the element to check if it exists in the array
     */
    function exists(Addresses storage self, address element) internal view returns (bool) {
        for (uint256 i = 0; i < self.size(); i++) {
            if (self._items[i] == element) {
                return true;
            }
        }
        return false;
    }

    /**
     * @notice get the array
     * @param self Storage array containing address type variables
     */
    function getAllAddresses(Addresses storage self) internal view returns (address[] memory) {
        return self._items;
    }
}

File 3 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 4 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 6 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

File 8 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"feeAccount","type":"address"},{"internalType":"uint256","name":"feePercent","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"mintToAddr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"feePercent","type":"uint256"}],"name":"UpdateTaxInfo","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addNoFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeNoFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"feeAccount","type":"address"},{"internalType":"uint256","name":"feePercent","type":"uint256"}],"name":"updateTaxInfo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200374438038062003744833981810160405281019062000037919062000842565b6040518060400160405280600481526020017f42504144000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42504144000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620006ed565b508060049080519060200190620000d4929190620006ed565b505050620000f7620000eb6200035c60201b60201c565b6200036460201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200016a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000161906200093b565b60405180910390fd5b6064831115620001b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a890620009ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000224576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021b9062000a1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e9062000ab7565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16620002be6200035c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ec57620002eb826200042a60201b60201c565b5b83600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260078190555062000352816b183bdac6ae9bc1c8cc0000006200054060201b60201c565b5050505062000d74565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200043a6200035c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000460620006b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b09062000b29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200052c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005239062000bc1565b60405180910390fd5b6200053d816200036460201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005aa9062000c33565b60405180910390fd5b620005c760008383620006e360201b60201c565b8060026000828254620005db919062000c84565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000632919062000c84565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000699919062000cf2565b60405180910390a3620006b560008383620006e860201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b828054620006fb9062000d3e565b90600052602060002090601f0160209004810192826200071f57600085556200076b565b82601f106200073a57805160ff19168380011785556200076b565b828001600101855582156200076b579182015b828111156200076a5782518255916020019190600101906200074d565b5b5090506200077a91906200077e565b5090565b5b80821115620007995760008160009055506001016200077f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007cf82620007a2565b9050919050565b620007e181620007c2565b8114620007ed57600080fd5b50565b6000815190506200080181620007d6565b92915050565b6000819050919050565b6200081c8162000807565b81146200082857600080fd5b50565b6000815190506200083c8162000811565b92915050565b600080600080608085870312156200085f576200085e6200079d565b5b60006200086f87828801620007f0565b945050602062000882878288016200082b565b93505060406200089587828801620007f0565b9250506060620008a887828801620007f0565b91505092959194509250565b600082825260208201905092915050565b7f425041443a20666565206163636f756e742066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600062000923602783620008b4565b91506200093082620008c5565b604082019050919050565b60006020820190508181036000830152620009568162000914565b9050919050565b7f425041443a20696e636f7272656374206665652070657263656e740000000000600082015250565b600062000995601b83620008b4565b9150620009a2826200095d565b602082019050919050565b60006020820190508181036000830152620009c88162000986565b9050919050565b7f425041443a20696e636f7272656374206f776e65722061646472657373000000600082015250565b600062000a07601d83620008b4565b915062000a1482620009cf565b602082019050919050565b6000602082019050818103600083015262000a3a81620009f8565b9050919050565b7f425041443a20696e636f7272656374206d696e74546f4164647220616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000a9f602283620008b4565b915062000aac8262000a41565b604082019050919050565b6000602082019050818103600083015262000ad28162000a90565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b11602083620008b4565b915062000b1e8262000ad9565b602082019050919050565b6000602082019050818103600083015262000b448162000b02565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000ba9602683620008b4565b915062000bb68262000b4b565b604082019050919050565b6000602082019050818103600083015262000bdc8162000b9a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c1b601f83620008b4565b915062000c288262000be3565b602082019050919050565b6000602082019050818103600083015262000c4e8162000c0c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c918262000807565b915062000c9e8362000807565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cd65762000cd562000c55565b5b828201905092915050565b62000cec8162000807565b82525050565b600060208201905062000d09600083018462000ce1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d5757607f821691505b6020821081141562000d6e5762000d6d62000d0f565b5b50919050565b6129c08062000d846000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063aaf5eb681161007c578063aaf5eb68146103dd578063ca62a099146103fb578063dd62ed3e14610419578063f2fde38b14610449578063f5b025b114610465578063f7d5820f1461048157610158565b806379cc6790146102f55780638da5cb5b1461031157806395d89b411461032f578063a457c2d71461034d578063a9059cbb1461037d578063aaad0c84146103ad57610158565b80633950935111610115578063395093511461023557806342966c68146102655780635a708bd814610281578063692229481461029d57806370a08231146102bb578063715018a6146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c95780632ff2e9dc146101f9578063313ce56714610217575b600080fd5b61016561049d565b6040516101729190611b26565b60405180910390f35b61019560048036038101906101909190611be1565b61052f565b6040516101a29190611c3c565b60405180910390f35b6101b361054d565b6040516101c09190611c66565b60405180910390f35b6101e360048036038101906101de9190611c81565b610557565b6040516101f09190611c3c565b60405180910390f35b61020161064f565b60405161020e9190611c66565b60405180910390f35b61021f61065f565b60405161022c9190611cf0565b60405180910390f35b61024f600480360381019061024a9190611be1565b610668565b60405161025c9190611c3c565b60405180910390f35b61027f600480360381019061027a9190611d0b565b610714565b005b61029b60048036038101906102969190611be1565b610728565b005b6102a56108e8565b6040516102b29190611c66565b60405180910390f35b6102d560048036038101906102d09190611d38565b6108ee565b6040516102e29190611c66565b60405180910390f35b6102f3610936565b005b61030f600480360381019061030a9190611be1565b6109be565b005b610319610a39565b6040516103269190611d74565b60405180910390f35b610337610a63565b6040516103449190611b26565b60405180910390f35b61036760048036038101906103629190611be1565b610af5565b6040516103749190611c3c565b60405180910390f35b61039760048036038101906103929190611be1565b610be0565b6040516103a49190611c3c565b60405180910390f35b6103c760048036038101906103c29190611d38565b610bfe565b6040516103d49190611c3c565b60405180910390f35b6103e5610c1b565b6040516103f29190611c66565b60405180910390f35b610403610c20565b6040516104109190611d74565b60405180910390f35b610433600480360381019061042e9190611d8f565b610c46565b6040516104409190611c66565b60405180910390f35b610463600480360381019061045e9190611d38565b610ccd565b005b61047f600480360381019061047a9190611d38565b610dc5565b005b61049b60048036038101906104969190611d38565b610e58565b005b6060600380546104ac90611dfe565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890611dfe565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b600061054361053c610f2a565b8484610f32565b6001905092915050565b6000600254905090565b60006105648484846110fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105af610f2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561062f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062690611ea2565b60405180910390fd5b6106438561063b610f2a565b858403610f32565b60019150509392505050565b6b183bdac6ae9bc1c8cc00000081565b60006012905090565b600061070a610675610f2a565b848460016000610683610f2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107059190611ef1565b610f32565b6001905092915050565b61072561071f610f2a565b82611276565b50565b610730610f2a565b73ffffffffffffffffffffffffffffffffffffffff1661074e610a39565b73ffffffffffffffffffffffffffffffffffffffff16146107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90611f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b90612025565b60405180910390fd5b6064811115610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90612091565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550808273ffffffffffffffffffffffffffffffffffffffff167fe0820caa739958426b6b8f2346bd3297e331a653f6b89a222ba4bce340f55c0360405160405180910390a35050565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093e610f2a565b73ffffffffffffffffffffffffffffffffffffffff1661095c610a39565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611f93565b60405180910390fd5b6109bc600061144d565b565b60006109d1836109cc610f2a565b610c46565b905081811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90612123565b60405180910390fd5b610a2a83610a22610f2a565b848403610f32565b610a348383611276565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a7290611dfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90611dfe565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b60008060016000610b04610f2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906121b5565b60405180910390fd5b610bd5610bcc610f2a565b85858403610f32565b600191505092915050565b6000610bf4610bed610f2a565b84846110fd565b6001905092915050565b6000610c1482600861151390919063ffffffff16565b9050919050565b606481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd5610f2a565b73ffffffffffffffffffffffffffffffffffffffff16610cf3610a39565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090612247565b60405180910390fd5b610dc28161144d565b50565b610dcd610f2a565b73ffffffffffffffffffffffffffffffffffffffff16610deb610a39565b73ffffffffffffffffffffffffffffffffffffffff1614610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890611f93565b60405180910390fd5b610e558160086115c890919063ffffffff16565b50565b610e60610f2a565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610a39565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90611f93565b60405180910390fd5b610ee881600861164090919063ffffffff16565b610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906122b3565b60405180910390fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990612345565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611009906123d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f09190611c66565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490612469565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906124fb565b60405180910390fd5b6111e683610bfe565b806111f357506000600754145b15611208576112038383836117f1565b611271565b600060646007548361121a919061251b565b61122491906125a4565b90506000818361123491906125d5565b90506112418585836117f1565b61126e85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846117f1565b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061267b565b60405180910390fd5b6112f282600083611a72565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061270d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113cf91906125d5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114349190611c66565b60405180910390a361144883600084611a77565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b61152484611a7c565b8110156115bc578273ffffffffffffffffffffffffffffffffffffffff168460000182815481106115585761155761272d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115a95760019150506115c2565b80806115b49061275c565b91505061151b565b50600090505b92915050565b6115d28282611513565b61163c5781600001819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b600080600090505b61165184611a7c565b8110156117e5578273ffffffffffffffffffffffffffffffffffffffff168460000182815481106116855761168461272d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117d2578360000160016116db86611a7c565b6116e591906125d5565b815481106116f6576116f561272d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168460000182815481106117375761173661272d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600001805480611793576117926127a5565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905560019150506117eb565b80806117dd9061275c565b915050611648565b50600090505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890612846565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c8906128d8565b60405180910390fd5b6118dc838383611a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119599061296a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f59190611ef1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a599190611c66565b60405180910390a3611a6c848484611a77565b50505050565b505050565b505050565b600081600001805490509050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ac7578082015181840152602081019050611aac565b83811115611ad6576000848401525b50505050565b6000601f19601f8301169050919050565b6000611af882611a8d565b611b028185611a98565b9350611b12818560208601611aa9565b611b1b81611adc565b840191505092915050565b60006020820190508181036000830152611b408184611aed565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b7882611b4d565b9050919050565b611b8881611b6d565b8114611b9357600080fd5b50565b600081359050611ba581611b7f565b92915050565b6000819050919050565b611bbe81611bab565b8114611bc957600080fd5b50565b600081359050611bdb81611bb5565b92915050565b60008060408385031215611bf857611bf7611b48565b5b6000611c0685828601611b96565b9250506020611c1785828601611bcc565b9150509250929050565b60008115159050919050565b611c3681611c21565b82525050565b6000602082019050611c516000830184611c2d565b92915050565b611c6081611bab565b82525050565b6000602082019050611c7b6000830184611c57565b92915050565b600080600060608486031215611c9a57611c99611b48565b5b6000611ca886828701611b96565b9350506020611cb986828701611b96565b9250506040611cca86828701611bcc565b9150509250925092565b600060ff82169050919050565b611cea81611cd4565b82525050565b6000602082019050611d056000830184611ce1565b92915050565b600060208284031215611d2157611d20611b48565b5b6000611d2f84828501611bcc565b91505092915050565b600060208284031215611d4e57611d4d611b48565b5b6000611d5c84828501611b96565b91505092915050565b611d6e81611b6d565b82525050565b6000602082019050611d896000830184611d65565b92915050565b60008060408385031215611da657611da5611b48565b5b6000611db485828601611b96565b9250506020611dc585828601611b96565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e1657607f821691505b60208210811415611e2a57611e29611dcf565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611e8c602883611a98565b9150611e9782611e30565b604082019050919050565b60006020820190508181036000830152611ebb81611e7f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611efc82611bab565b9150611f0783611bab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f3c57611f3b611ec2565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f7d602083611a98565b9150611f8882611f47565b602082019050919050565b60006020820190508181036000830152611fac81611f70565b9050919050565b7f425041443a20666565206163636f756e742066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600061200f602783611a98565b915061201a82611fb3565b604082019050919050565b6000602082019050818103600083015261203e81612002565b9050919050565b7f425041443a20696e636f7272656374206665652070657263656e740000000000600082015250565b600061207b601b83611a98565b915061208682612045565b602082019050919050565b600060208201905081810360008301526120aa8161206e565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061210d602483611a98565b9150612118826120b1565b604082019050919050565b6000602082019050818103600083015261213c81612100565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061219f602583611a98565b91506121aa82612143565b604082019050919050565b600060208201905081810360008301526121ce81612192565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612231602683611a98565b915061223c826121d5565b604082019050919050565b6000602082019050818103600083015261226081612224565b9050919050565b7f416464726573733a206164647265737320646f6573206e6f7420657869737400600082015250565b600061229d601f83611a98565b91506122a882612267565b602082019050919050565b600060208201905081810360008301526122cc81612290565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061232f602483611a98565b915061233a826122d3565b604082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123c1602283611a98565b91506123cc82612365565b604082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f425041443a207472616e736665722066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612453602483611a98565b915061245e826123f7565b604082019050919050565b6000602082019050818103600083015261248281612446565b9050919050565b7f425041443a207472616e7366657220746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124e5602283611a98565b91506124f082612489565b604082019050919050565b60006020820190508181036000830152612514816124d8565b9050919050565b600061252682611bab565b915061253183611bab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561256a57612569611ec2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006125af82611bab565b91506125ba83611bab565b9250826125ca576125c9612575565b5b828204905092915050565b60006125e082611bab565b91506125eb83611bab565b9250828210156125fe576125fd611ec2565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612665602183611a98565b915061267082612609565b604082019050919050565b6000602082019050818103600083015261269481612658565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f7602283611a98565b91506127028261269b565b604082019050919050565b60006020820190508181036000830152612726816126ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061276782611bab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561279a57612799611ec2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612830602583611a98565b915061283b826127d4565b604082019050919050565b6000602082019050818103600083015261285f81612823565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128c2602383611a98565b91506128cd82612866565b604082019050919050565b600060208201905081810360008301526128f1816128b5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612954602683611a98565b915061295f826128f8565b604082019050919050565b6000602082019050818103600083015261298381612947565b905091905056fea2646970667358221220b578064b03e2550f6d38815cb3dd686aeb9b46ec353ac1a8a8c2e1ea7ea1095064736f6c634300080b00330000000000000000000000005b7b7be1ff79389aa3a994cd443acba2481ef4d300000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f4d92a5d8ad29c4582618fcc6204c86f7de40170000000000000000000000007f4d92a5d8ad29c4582618fcc6204c86f7de4017

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063aaf5eb681161007c578063aaf5eb68146103dd578063ca62a099146103fb578063dd62ed3e14610419578063f2fde38b14610449578063f5b025b114610465578063f7d5820f1461048157610158565b806379cc6790146102f55780638da5cb5b1461031157806395d89b411461032f578063a457c2d71461034d578063a9059cbb1461037d578063aaad0c84146103ad57610158565b80633950935111610115578063395093511461023557806342966c68146102655780635a708bd814610281578063692229481461029d57806370a08231146102bb578063715018a6146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c95780632ff2e9dc146101f9578063313ce56714610217575b600080fd5b61016561049d565b6040516101729190611b26565b60405180910390f35b61019560048036038101906101909190611be1565b61052f565b6040516101a29190611c3c565b60405180910390f35b6101b361054d565b6040516101c09190611c66565b60405180910390f35b6101e360048036038101906101de9190611c81565b610557565b6040516101f09190611c3c565b60405180910390f35b61020161064f565b60405161020e9190611c66565b60405180910390f35b61021f61065f565b60405161022c9190611cf0565b60405180910390f35b61024f600480360381019061024a9190611be1565b610668565b60405161025c9190611c3c565b60405180910390f35b61027f600480360381019061027a9190611d0b565b610714565b005b61029b60048036038101906102969190611be1565b610728565b005b6102a56108e8565b6040516102b29190611c66565b60405180910390f35b6102d560048036038101906102d09190611d38565b6108ee565b6040516102e29190611c66565b60405180910390f35b6102f3610936565b005b61030f600480360381019061030a9190611be1565b6109be565b005b610319610a39565b6040516103269190611d74565b60405180910390f35b610337610a63565b6040516103449190611b26565b60405180910390f35b61036760048036038101906103629190611be1565b610af5565b6040516103749190611c3c565b60405180910390f35b61039760048036038101906103929190611be1565b610be0565b6040516103a49190611c3c565b60405180910390f35b6103c760048036038101906103c29190611d38565b610bfe565b6040516103d49190611c3c565b60405180910390f35b6103e5610c1b565b6040516103f29190611c66565b60405180910390f35b610403610c20565b6040516104109190611d74565b60405180910390f35b610433600480360381019061042e9190611d8f565b610c46565b6040516104409190611c66565b60405180910390f35b610463600480360381019061045e9190611d38565b610ccd565b005b61047f600480360381019061047a9190611d38565b610dc5565b005b61049b60048036038101906104969190611d38565b610e58565b005b6060600380546104ac90611dfe565b80601f01602080910402602001604051908101604052809291908181526020018280546104d890611dfe565b80156105255780601f106104fa57610100808354040283529160200191610525565b820191906000526020600020905b81548152906001019060200180831161050857829003601f168201915b5050505050905090565b600061054361053c610f2a565b8484610f32565b6001905092915050565b6000600254905090565b60006105648484846110fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105af610f2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561062f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062690611ea2565b60405180910390fd5b6106438561063b610f2a565b858403610f32565b60019150509392505050565b6b183bdac6ae9bc1c8cc00000081565b60006012905090565b600061070a610675610f2a565b848460016000610683610f2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107059190611ef1565b610f32565b6001905092915050565b61072561071f610f2a565b82611276565b50565b610730610f2a565b73ffffffffffffffffffffffffffffffffffffffff1661074e610a39565b73ffffffffffffffffffffffffffffffffffffffff16146107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90611f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b90612025565b60405180910390fd5b6064811115610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90612091565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550808273ffffffffffffffffffffffffffffffffffffffff167fe0820caa739958426b6b8f2346bd3297e331a653f6b89a222ba4bce340f55c0360405160405180910390a35050565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093e610f2a565b73ffffffffffffffffffffffffffffffffffffffff1661095c610a39565b73ffffffffffffffffffffffffffffffffffffffff16146109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990611f93565b60405180910390fd5b6109bc600061144d565b565b60006109d1836109cc610f2a565b610c46565b905081811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90612123565b60405180910390fd5b610a2a83610a22610f2a565b848403610f32565b610a348383611276565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a7290611dfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90611dfe565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b60008060016000610b04610f2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906121b5565b60405180910390fd5b610bd5610bcc610f2a565b85858403610f32565b600191505092915050565b6000610bf4610bed610f2a565b84846110fd565b6001905092915050565b6000610c1482600861151390919063ffffffff16565b9050919050565b606481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cd5610f2a565b73ffffffffffffffffffffffffffffffffffffffff16610cf3610a39565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611f93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090612247565b60405180910390fd5b610dc28161144d565b50565b610dcd610f2a565b73ffffffffffffffffffffffffffffffffffffffff16610deb610a39565b73ffffffffffffffffffffffffffffffffffffffff1614610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890611f93565b60405180910390fd5b610e558160086115c890919063ffffffff16565b50565b610e60610f2a565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610a39565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90611f93565b60405180910390fd5b610ee881600861164090919063ffffffff16565b610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906122b3565b60405180910390fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9990612345565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611009906123d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f09190611c66565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490612469565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906124fb565b60405180910390fd5b6111e683610bfe565b806111f357506000600754145b15611208576112038383836117f1565b611271565b600060646007548361121a919061251b565b61122491906125a4565b90506000818361123491906125d5565b90506112418585836117f1565b61126e85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846117f1565b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061267b565b60405180910390fd5b6112f282600083611a72565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061270d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113cf91906125d5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114349190611c66565b60405180910390a361144883600084611a77565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600090505b61152484611a7c565b8110156115bc578273ffffffffffffffffffffffffffffffffffffffff168460000182815481106115585761155761272d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115a95760019150506115c2565b80806115b49061275c565b91505061151b565b50600090505b92915050565b6115d28282611513565b61163c5781600001819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b600080600090505b61165184611a7c565b8110156117e5578273ffffffffffffffffffffffffffffffffffffffff168460000182815481106116855761168461272d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117d2578360000160016116db86611a7c565b6116e591906125d5565b815481106116f6576116f561272d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168460000182815481106117375761173661272d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600001805480611793576117926127a5565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905560019150506117eb565b80806117dd9061275c565b915050611648565b50600090505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890612846565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c8906128d8565b60405180910390fd5b6118dc838383611a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119599061296a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f59190611ef1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a599190611c66565b60405180910390a3611a6c848484611a77565b50505050565b505050565b505050565b600081600001805490509050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ac7578082015181840152602081019050611aac565b83811115611ad6576000848401525b50505050565b6000601f19601f8301169050919050565b6000611af882611a8d565b611b028185611a98565b9350611b12818560208601611aa9565b611b1b81611adc565b840191505092915050565b60006020820190508181036000830152611b408184611aed565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b7882611b4d565b9050919050565b611b8881611b6d565b8114611b9357600080fd5b50565b600081359050611ba581611b7f565b92915050565b6000819050919050565b611bbe81611bab565b8114611bc957600080fd5b50565b600081359050611bdb81611bb5565b92915050565b60008060408385031215611bf857611bf7611b48565b5b6000611c0685828601611b96565b9250506020611c1785828601611bcc565b9150509250929050565b60008115159050919050565b611c3681611c21565b82525050565b6000602082019050611c516000830184611c2d565b92915050565b611c6081611bab565b82525050565b6000602082019050611c7b6000830184611c57565b92915050565b600080600060608486031215611c9a57611c99611b48565b5b6000611ca886828701611b96565b9350506020611cb986828701611b96565b9250506040611cca86828701611bcc565b9150509250925092565b600060ff82169050919050565b611cea81611cd4565b82525050565b6000602082019050611d056000830184611ce1565b92915050565b600060208284031215611d2157611d20611b48565b5b6000611d2f84828501611bcc565b91505092915050565b600060208284031215611d4e57611d4d611b48565b5b6000611d5c84828501611b96565b91505092915050565b611d6e81611b6d565b82525050565b6000602082019050611d896000830184611d65565b92915050565b60008060408385031215611da657611da5611b48565b5b6000611db485828601611b96565b9250506020611dc585828601611b96565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e1657607f821691505b60208210811415611e2a57611e29611dcf565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611e8c602883611a98565b9150611e9782611e30565b604082019050919050565b60006020820190508181036000830152611ebb81611e7f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611efc82611bab565b9150611f0783611bab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f3c57611f3b611ec2565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f7d602083611a98565b9150611f8882611f47565b602082019050919050565b60006020820190508181036000830152611fac81611f70565b9050919050565b7f425041443a20666565206163636f756e742066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600061200f602783611a98565b915061201a82611fb3565b604082019050919050565b6000602082019050818103600083015261203e81612002565b9050919050565b7f425041443a20696e636f7272656374206665652070657263656e740000000000600082015250565b600061207b601b83611a98565b915061208682612045565b602082019050919050565b600060208201905081810360008301526120aa8161206e565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061210d602483611a98565b9150612118826120b1565b604082019050919050565b6000602082019050818103600083015261213c81612100565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061219f602583611a98565b91506121aa82612143565b604082019050919050565b600060208201905081810360008301526121ce81612192565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612231602683611a98565b915061223c826121d5565b604082019050919050565b6000602082019050818103600083015261226081612224565b9050919050565b7f416464726573733a206164647265737320646f6573206e6f7420657869737400600082015250565b600061229d601f83611a98565b91506122a882612267565b602082019050919050565b600060208201905081810360008301526122cc81612290565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061232f602483611a98565b915061233a826122d3565b604082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123c1602283611a98565b91506123cc82612365565b604082019050919050565b600060208201905081810360008301526123f0816123b4565b9050919050565b7f425041443a207472616e736665722066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612453602483611a98565b915061245e826123f7565b604082019050919050565b6000602082019050818103600083015261248281612446565b9050919050565b7f425041443a207472616e7366657220746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124e5602283611a98565b91506124f082612489565b604082019050919050565b60006020820190508181036000830152612514816124d8565b9050919050565b600061252682611bab565b915061253183611bab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561256a57612569611ec2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006125af82611bab565b91506125ba83611bab565b9250826125ca576125c9612575565b5b828204905092915050565b60006125e082611bab565b91506125eb83611bab565b9250828210156125fe576125fd611ec2565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612665602183611a98565b915061267082612609565b604082019050919050565b6000602082019050818103600083015261269481612658565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f7602283611a98565b91506127028261269b565b604082019050919050565b60006020820190508181036000830152612726816126ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061276782611bab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561279a57612799611ec2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612830602583611a98565b915061283b826127d4565b604082019050919050565b6000602082019050818103600083015261285f81612823565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128c2602383611a98565b91506128cd82612866565b604082019050919050565b600060208201905081810360008301526128f1816128b5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612954602683611a98565b915061295f826128f8565b604082019050919050565b6000602082019050818103600083015261298381612947565b905091905056fea2646970667358221220b578064b03e2550f6d38815cb3dd686aeb9b46ec353ac1a8a8c2e1ea7ea1095064736f6c634300080b0033

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

0000000000000000000000005b7b7be1ff79389aa3a994cd443acba2481ef4d300000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f4d92a5d8ad29c4582618fcc6204c86f7de40170000000000000000000000007f4d92a5d8ad29c4582618fcc6204c86f7de4017

-----Decoded View---------------
Arg [0] : feeAccount (address): 0x5b7b7Be1fF79389Aa3a994cd443ACBA2481eF4D3
Arg [1] : feePercent (uint256): 0
Arg [2] : owner (address): 0x7f4D92A5d8Ad29c4582618FCc6204c86F7De4017
Arg [3] : mintToAddr (address): 0x7f4D92A5d8Ad29c4582618FCc6204c86F7De4017

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000005b7b7be1ff79389aa3a994cd443acba2481ef4d3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000007f4d92a5d8ad29c4582618fcc6204c86f7de4017
Arg [3] : 0000000000000000000000007f4d92a5d8ad29c4582618fcc6204c86f7de4017


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.