POL Price: $0.183187 (+1.63%)
Gas: 30 GWei
 

Overview

Max Total Supply

10,000,000,000 CATHEON

Holders

6,256 ( -0.032%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CGC is a blockchain gaming distribution platform for gamers to play both Catheon and partner games in one place.

Contract Source Code Verified (Exact Match)

Contract Name:
CatheonToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : CatheonToken.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

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

/// Catheon token
/// @dev The ownable, upgradeable ERC20 contract
/// @notice Do not override Ownable functions to checking ownership (Ownership can not be renounced)
contract CatheonToken is ERC20, Ownable {
    // addresses applying fee (address => isApplyingFee)
    mapping(address => bool) public feeApplies;
    // max total supply limit 10_000_000_000 * DECIMAL
    uint256 public maxSupply;
    // treasury address
    address private _treasury;
    // token-transfer fee percentage
    uint256 private _feePercent;
    // fee percentage division
    uint256 private constant PERCENTAGE_DIVISION = 1000;
    // 0%
    uint256 private constant PERCENTAGE_ZERO = 0;
    // max fee percentage (10%)
    uint256 private constant MAX_FEE_PERCENTAGE = 100;

    /// @dev Emitted when owner change treasury address
    event SetTreasury(address indexed treasury);
    /// @dev Emitted when owner set whether the address is applying fee or not
    event SetFeeApplyingAddress(address indexed target, bool isApplying);
    /// @dev Emitted when owner change fee percentage
    event SetFeePercent(uint256 indexed percentage);
    /// @dev Emitted when owner set max-supply
    event SetMaxSupply(uint256 indexed supply);

    /// @dev Constructor
    /// @param name_ Token name
    /// @param symbol_ Token symbol
    /// @param initialBalance_ Initial token balance of deployer
    /// @param treasury_ Treasury address receiving fee
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 initialBalance_,
        address treasury_
    ) ERC20(name_, symbol_) {
        require(bytes(name_).length > 0, "Empty Name");
        require(bytes(symbol_).length > 2, "Invalid symbol: min 3 letters");
        require(
            initialBalance_ <= 1e19 && initialBalance_ > 0,
            "Invalid initial balance"
        );
        require(treasury_ != address(0), "Zero Treasury Address");

        _treasury = treasury_;

        /// default max supply 10_000_000_000 * (10 ** decimals)
        maxSupply = 1e19;
        /// default fee percentage (5%)
        _feePercent = 50;

        _mint(msg.sender, initialBalance_);
    }

    /// @dev Mint token by owner at any time
    /// @param account Target address
    /// @param amount Mint amount
    function mint(address account, uint256 amount) external onlyOwner {
        _mint(account, amount);
    }

    /// @dev Return the number of decimals
    /// @return Token decimals
    function decimals() public pure override returns (uint8) {
        return 9;
    }

    /// @dev Internal transfer token
    /// @param sender From address
    /// @param recipient To address
    /// @param amount Token amount
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        uint256 receiveAmount = amount;
        address treasuryAddress = _treasury;

        if (
            sender != treasuryAddress &&
            recipient != treasuryAddress &&
            (feeApplies[sender] == true || feeApplies[recipient] == true)
        ) {
            // fee avoidance
            require(amount >= PERCENTAGE_DIVISION, "Too small transfer");

            uint256 feeAmount = (amount * _feePercent) / PERCENTAGE_DIVISION;
            receiveAmount = amount - feeAmount;

            // feeAmount can not be zero in here
            ERC20._transfer(sender, treasuryAddress, feeAmount);
        }

        ERC20._transfer(sender, recipient, receiveAmount);
    }

    /// @dev Set new treasury address by owner
    /// @param to Target address
    function setTreasury(address to) external onlyOwner {
        require(
            to != address(0) && to != _treasury,
            "Invalid Treasury Address"
        );

        _treasury = to;

        emit SetTreasury(to);
    }

    /// @dev Set whether the address is applying fee or not
    /// @param applyingAddr Target address
    /// @param isApplying Flag (true: apply fee, false: don't apply fee)
    function setFeeApplyingAddr(address applyingAddr, bool isApplying)
        external
        onlyOwner
    {
        require(feeApplies[applyingAddr] != isApplying, "Already Set");

        feeApplies[applyingAddr] = isApplying;

        emit SetFeeApplyingAddress(applyingAddr, isApplying);
    }

    /// @dev Set fee percentage by owner
    /// @param percentage Fee percentage
    function setFee(uint256 percentage) external onlyOwner {
        require(
            percentage != PERCENTAGE_ZERO && percentage <= MAX_FEE_PERCENTAGE,
            "Invalid Fee Percentage"
        );
        require(_feePercent != percentage, "Same Fee Percentage");

        _feePercent = percentage;

        emit SetFeePercent(percentage);
    }

    /// @dev Get current fee percentage
    /// @return Fee percentage
    function fee() external view returns (uint256) {
        return _feePercent;
    }

    /// @dev Get current treasury address
    /// @return Treasury address
    function treasury() external view returns (address) {
        return _treasury;
    }

    /// @dev Override ERC20`s _mint function for adding max_total_supply limit validation
    /// @param account The target address minting tokens
    /// @param amount The minting token amount
    function _mint(address account, uint256 amount) internal override {
        uint256 _totalSupply = totalSupply();
        require(_totalSupply + amount <= maxSupply, "Limited By Max Supply");

        // call ERC20 _mint function
        ERC20._mint(account, amount);
    }

    /// @dev Set new max supply by owner
    /// @param supply The new max supply amount
    function setMaxSupply(uint256 supply) external onlyOwner {
        require(totalSupply() <= supply, "Invalid Max Supply");

        maxSupply = supply;

        emit SetMaxSupply(supply);
    }

    /// @dev Burn token by owner at any time
    /// @param amount Burning token amount
    function burn(uint256 amount) external onlyOwner {
        _burn(_msgSender(), amount);
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 5 of 6 : 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 6 of 6 : 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);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"treasury_","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":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"isApplying","type":"bool"}],"name":"SetFeeApplyingAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"SetFeePercent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"SetMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasury","type":"address"}],"name":"SetTreasury","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeApplies","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"applyingAddr","type":"address"},{"internalType":"bool","name":"isApplying","type":"bool"}],"name":"setFeeApplyingAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620034473803806200344783398181016040528101906200003791906200068d565b83838160039080519060200190620000519291906200053d565b5080600490805190602001906200006a9291906200053d565b5050506200008d620000816200025d60201b60201c565b6200026560201b60201c565b6000845111620000d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000cb9062000848565b60405180910390fd5b60028351116200011b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011290620008ae565b60405180910390fd5b678ac7230489e800008211158015620001345750600082115b62000176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016d906200088c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620001e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e09062000826565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550678ac7230489e8000060078190555060326009819055506200025333836200032b60201b60201c565b5050505062000c84565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200033d620003b060201b60201c565b905060075482826200035091906200097f565b111562000394576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038b906200086a565b60405180910390fd5b620003ab8383620003ba60201b62000d0d1760201c565b505050565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200042d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042490620008d0565b60405180910390fd5b62000441600083836200053360201b60201c565b80600260008282546200045591906200097f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004ac91906200097f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005139190620008f2565b60405180910390a36200052f600083836200053860201b60201c565b5050565b505050565b505050565b8280546200054b9062000a50565b90600052602060002090601f0160209004810192826200056f5760008555620005bb565b82601f106200058a57805160ff1916838001178555620005bb565b82800160010185558215620005bb579182015b82811115620005ba5782518255916020019190600101906200059d565b5b509050620005ca9190620005ce565b5090565b5b80821115620005e9576000816000905550600101620005cf565b5090565b600062000604620005fe8462000938565b6200090f565b9050828152602081018484840111156200061d57600080fd5b6200062a84828562000a1a565b509392505050565b600081519050620006438162000c50565b92915050565b600082601f8301126200065b57600080fd5b81516200066d848260208601620005ed565b91505092915050565b600081519050620006878162000c6a565b92915050565b60008060008060808587031215620006a457600080fd5b600085015167ffffffffffffffff811115620006bf57600080fd5b620006cd8782880162000649565b945050602085015167ffffffffffffffff811115620006eb57600080fd5b620006f98782880162000649565b93505060406200070c8782880162000676565b92505060606200071f8782880162000632565b91505092959194509250565b60006200073a6015836200096e565b9150620007478262000b5a565b602082019050919050565b600062000761600a836200096e565b91506200076e8262000b83565b602082019050919050565b6000620007886015836200096e565b9150620007958262000bac565b602082019050919050565b6000620007af6017836200096e565b9150620007bc8262000bd5565b602082019050919050565b6000620007d6601d836200096e565b9150620007e38262000bfe565b602082019050919050565b6000620007fd601f836200096e565b91506200080a8262000c27565b602082019050919050565b620008208162000a10565b82525050565b6000602082019050818103600083015262000841816200072b565b9050919050565b60006020820190508181036000830152620008638162000752565b9050919050565b60006020820190508181036000830152620008858162000779565b9050919050565b60006020820190508181036000830152620008a781620007a0565b9050919050565b60006020820190508181036000830152620008c981620007c7565b9050919050565b60006020820190508181036000830152620008eb81620007ee565b9050919050565b600060208201905062000909600083018462000815565b92915050565b60006200091b6200092e565b905062000929828262000a86565b919050565b6000604051905090565b600067ffffffffffffffff82111562000956576200095562000b1a565b5b620009618262000b49565b9050602081019050919050565b600082825260208201905092915050565b60006200098c8262000a10565b9150620009998362000a10565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009d157620009d062000abc565b5b828201905092915050565b6000620009e982620009f0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a3a57808201518184015260208101905062000a1d565b8381111562000a4a576000848401525b50505050565b6000600282049050600182168062000a6957607f821691505b6020821081141562000a805762000a7f62000aeb565b5b50919050565b62000a918262000b49565b810181811067ffffffffffffffff8211171562000ab35762000ab262000b1a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5a65726f20547265617375727920416464726573730000000000000000000000600082015250565b7f456d707479204e616d6500000000000000000000000000000000000000000000600082015250565b7f4c696d69746564204279204d617820537570706c790000000000000000000000600082015250565b7f496e76616c696420696e697469616c2062616c616e6365000000000000000000600082015250565b7f496e76616c69642073796d626f6c3a206d696e2033206c657474657273000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000c5b81620009dc565b811462000c6757600080fd5b50565b62000c758162000a10565b811462000c8157600080fd5b50565b6127b38062000c946000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103c7578063d5abeb01146103f7578063dd62ed3e14610415578063ddca3f4314610445578063f0f4426014610463578063f2fde38b1461047f57610158565b806370a0823114610305578063715018a61461033557806385cfd8971461033f5780638da5cb5b1461035b57806395d89b4114610379578063a457c2d71461039757610158565b80633950935111610115578063395093511461024757806340c10f191461027757806342966c681461029357806361d027b3146102af57806369fe0e2d146102cd5780636f8b44b0146102e957610158565b806306fdde031461015d578063095ea7b31461017b5780630a48f758146101ab57806318160ddd146101db57806323b872dd146101f9578063313ce56714610229575b600080fd5b61016561049b565b6040516101729190611d96565b60405180910390f35b610195600480360381019061019091906119ed565b61052d565b6040516101a29190611d7b565b60405180910390f35b6101c560048036038101906101c091906118fd565b610550565b6040516101d29190611d7b565b60405180910390f35b6101e3610570565b6040516101f09190612018565b60405180910390f35b610213600480360381019061020e9190611962565b61057a565b6040516102209190611d7b565b60405180910390f35b6102316105a9565b60405161023e9190612033565b60405180910390f35b610261600480360381019061025c91906119ed565b6105b2565b60405161026e9190611d7b565b60405180910390f35b610291600480360381019061028c91906119ed565b6105e9565b005b6102ad60048036038101906102a89190611a29565b6105ff565b005b6102b761061b565b6040516102c49190611d60565b60405180910390f35b6102e760048036038101906102e29190611a29565b610645565b005b61030360048036038101906102fe9190611a29565b61071a565b005b61031f600480360381019061031a91906118fd565b6107a3565b60405161032c9190612018565b60405180910390f35b61033d6107eb565b005b610359600480360381019061035491906119b1565b6107ff565b005b610363610943565b6040516103709190611d60565b60405180910390f35b61038161096d565b60405161038e9190611d96565b60405180910390f35b6103b160048036038101906103ac91906119ed565b6109ff565b6040516103be9190611d7b565b60405180910390f35b6103e160048036038101906103dc91906119ed565b610a76565b6040516103ee9190611d7b565b60405180910390f35b6103ff610a99565b60405161040c9190612018565b60405180910390f35b61042f600480360381019061042a9190611926565b610a9f565b60405161043c9190612018565b60405180910390f35b61044d610b26565b60405161045a9190612018565b60405180910390f35b61047d600480360381019061047891906118fd565b610b30565b005b610499600480360381019061049491906118fd565b610c89565b005b6060600380546104aa90612207565b80601f01602080910402602001604051908101604052809291908181526020018280546104d690612207565b80156105235780601f106104f857610100808354040283529160200191610523565b820191906000526020600020905b81548152906001019060200180831161050657829003601f168201915b5050505050905090565b600080610538610e6d565b9050610545818585610e75565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610585610e6d565b9050610592858285611040565b61059d8585856110cc565b60019150509392505050565b60006009905090565b6000806105bd610e6d565b90506105de8185856105cf8589610a9f565b6105d9919061206a565b610e75565b600191505092915050565b6105f16112ad565b6105fb828261132b565b5050565b6106076112ad565b610618610612610e6d565b82611396565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61064d6112ad565b6000811415801561065f575060648111155b61069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069590611ff8565b60405180910390fd5b8060095414156106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da90611ed8565b60405180910390fd5b80600981905550807f54b9dbb1167ce9a1e141b9c71f73394e64bf53da85077b4bcdcff626ba943f5860405160405180910390a250565b6107226112ad565b8061072b610570565b111561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390611f58565b60405180910390fd5b80600781905550807f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d60405160405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107f36112ad565b6107fd600061156d565b565b6108076112ad565b801515600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611e98565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff5ee5a40b11459090f87a575b72be3c6bbebb512c1c47228672e366dcb078386826040516109379190611d7b565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461097c90612207565b80601f01602080910402602001604051908101604052809291908181526020018280546109a890612207565b80156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b5050505050905090565b600080610a0a610e6d565b90506000610a188286610a9f565b905083811015610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490611fb8565b60405180910390fd5b610a6a8286868403610e75565b60019250505092915050565b600080610a81610e6d565b9050610a8e8185856110cc565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600954905090565b610b386112ad565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610bc35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990611f98565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef360405160405180910390a250565b610c916112ad565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890611df8565b60405180910390fd5b610d0a8161156d565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7490611fd8565b60405180910390fd5b610d8960008383611633565b8060026000828254610d9b919061206a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df0919061206a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e559190612018565b60405180910390a3610e6960008383611638565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611f78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90611e18565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110339190612018565b60405180910390a3505050565b600061104c8484610a9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c657818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611e38565b60405180910390fd5b6110c58484848403610e75565b5b50505050565b60008190506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561116057508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611217575060011515600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480611216575060011515600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b5b1561129b576103e8831015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890611e58565b60405180910390fd5b60006103e86009548561127491906120f1565b61127e91906120c0565b9050808461128c919061214b565b925061129986838361163d565b505b6112a685858461163d565b5050505050565b6112b5610e6d565b73ffffffffffffffffffffffffffffffffffffffff166112d3610943565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090611eb8565b60405180910390fd5b565b6000611335610570565b90506007548282611346919061206a565b1115611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611ef8565b60405180910390fd5b6113918383610d0d565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90611f18565b60405180910390fd5b61141282600083611633565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90611dd8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114ef919061214b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115549190612018565b60405180910390a361156883600084611638565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490611f38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490611db8565b60405180910390fd5b611728838383611633565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590611e78565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611841919061206a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a59190612018565b60405180910390a36118b8848484611638565b50505050565b6000813590506118cd81612738565b92915050565b6000813590506118e28161274f565b92915050565b6000813590506118f781612766565b92915050565b60006020828403121561190f57600080fd5b600061191d848285016118be565b91505092915050565b6000806040838503121561193957600080fd5b6000611947858286016118be565b9250506020611958858286016118be565b9150509250929050565b60008060006060848603121561197757600080fd5b6000611985868287016118be565b9350506020611996868287016118be565b92505060406119a7868287016118e8565b9150509250925092565b600080604083850312156119c457600080fd5b60006119d2858286016118be565b92505060206119e3858286016118d3565b9150509250929050565b60008060408385031215611a0057600080fd5b6000611a0e858286016118be565b9250506020611a1f858286016118e8565b9150509250929050565b600060208284031215611a3b57600080fd5b6000611a49848285016118e8565b91505092915050565b611a5b8161217f565b82525050565b611a6a81612191565b82525050565b6000611a7b8261204e565b611a858185612059565b9350611a958185602086016121d4565b611a9e816122c6565b840191505092915050565b6000611ab6602383612059565b9150611ac1826122d7565b604082019050919050565b6000611ad9602283612059565b9150611ae482612326565b604082019050919050565b6000611afc602683612059565b9150611b0782612375565b604082019050919050565b6000611b1f602283612059565b9150611b2a826123c4565b604082019050919050565b6000611b42601d83612059565b9150611b4d82612413565b602082019050919050565b6000611b65601283612059565b9150611b708261243c565b602082019050919050565b6000611b88602683612059565b9150611b9382612465565b604082019050919050565b6000611bab600b83612059565b9150611bb6826124b4565b602082019050919050565b6000611bce602083612059565b9150611bd9826124dd565b602082019050919050565b6000611bf1601383612059565b9150611bfc82612506565b602082019050919050565b6000611c14601583612059565b9150611c1f8261252f565b602082019050919050565b6000611c37602183612059565b9150611c4282612558565b604082019050919050565b6000611c5a602583612059565b9150611c65826125a7565b604082019050919050565b6000611c7d601283612059565b9150611c88826125f6565b602082019050919050565b6000611ca0602483612059565b9150611cab8261261f565b604082019050919050565b6000611cc3601883612059565b9150611cce8261266e565b602082019050919050565b6000611ce6602583612059565b9150611cf182612697565b604082019050919050565b6000611d09601f83612059565b9150611d14826126e6565b602082019050919050565b6000611d2c601683612059565b9150611d378261270f565b602082019050919050565b611d4b816121bd565b82525050565b611d5a816121c7565b82525050565b6000602082019050611d756000830184611a52565b92915050565b6000602082019050611d906000830184611a61565b92915050565b60006020820190508181036000830152611db08184611a70565b905092915050565b60006020820190508181036000830152611dd181611aa9565b9050919050565b60006020820190508181036000830152611df181611acc565b9050919050565b60006020820190508181036000830152611e1181611aef565b9050919050565b60006020820190508181036000830152611e3181611b12565b9050919050565b60006020820190508181036000830152611e5181611b35565b9050919050565b60006020820190508181036000830152611e7181611b58565b9050919050565b60006020820190508181036000830152611e9181611b7b565b9050919050565b60006020820190508181036000830152611eb181611b9e565b9050919050565b60006020820190508181036000830152611ed181611bc1565b9050919050565b60006020820190508181036000830152611ef181611be4565b9050919050565b60006020820190508181036000830152611f1181611c07565b9050919050565b60006020820190508181036000830152611f3181611c2a565b9050919050565b60006020820190508181036000830152611f5181611c4d565b9050919050565b60006020820190508181036000830152611f7181611c70565b9050919050565b60006020820190508181036000830152611f9181611c93565b9050919050565b60006020820190508181036000830152611fb181611cb6565b9050919050565b60006020820190508181036000830152611fd181611cd9565b9050919050565b60006020820190508181036000830152611ff181611cfc565b9050919050565b6000602082019050818103600083015261201181611d1f565b9050919050565b600060208201905061202d6000830184611d42565b92915050565b60006020820190506120486000830184611d51565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612075826121bd565b9150612080836121bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120b5576120b4612239565b5b828201905092915050565b60006120cb826121bd565b91506120d6836121bd565b9250826120e6576120e5612268565b5b828204905092915050565b60006120fc826121bd565b9150612107836121bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121405761213f612239565b5b828202905092915050565b6000612156826121bd565b9150612161836121bd565b92508282101561217457612173612239565b5b828203905092915050565b600061218a8261219d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121f25780820151818401526020810190506121d7565b83811115612201576000848401525b50505050565b6000600282049050600182168061221f57607f821691505b6020821081141561223357612232612297565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f546f6f20736d616c6c207472616e736665720000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920536574000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616d65204665652050657263656e7461676500000000000000000000000000600082015250565b7f4c696d69746564204279204d617820537570706c790000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204d617820537570706c790000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420547265617375727920416464726573730000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f496e76616c6964204665652050657263656e7461676500000000000000000000600082015250565b6127418161217f565b811461274c57600080fd5b50565b61275881612191565b811461276357600080fd5b50565b61276f816121bd565b811461277a57600080fd5b5056fea26469706673582212200d84c6228e861fc8262d7dcea60197f307bdd72f923acf4b09481362def08a7d64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000008ac7230489e80000000000000000000000000000b8f23d70bf764d3d217e9a76632b79db5e6c080e000000000000000000000000000000000000000000000000000000000000000e43617468656f6e2047616d696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000743415448454f4e00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103c7578063d5abeb01146103f7578063dd62ed3e14610415578063ddca3f4314610445578063f0f4426014610463578063f2fde38b1461047f57610158565b806370a0823114610305578063715018a61461033557806385cfd8971461033f5780638da5cb5b1461035b57806395d89b4114610379578063a457c2d71461039757610158565b80633950935111610115578063395093511461024757806340c10f191461027757806342966c681461029357806361d027b3146102af57806369fe0e2d146102cd5780636f8b44b0146102e957610158565b806306fdde031461015d578063095ea7b31461017b5780630a48f758146101ab57806318160ddd146101db57806323b872dd146101f9578063313ce56714610229575b600080fd5b61016561049b565b6040516101729190611d96565b60405180910390f35b610195600480360381019061019091906119ed565b61052d565b6040516101a29190611d7b565b60405180910390f35b6101c560048036038101906101c091906118fd565b610550565b6040516101d29190611d7b565b60405180910390f35b6101e3610570565b6040516101f09190612018565b60405180910390f35b610213600480360381019061020e9190611962565b61057a565b6040516102209190611d7b565b60405180910390f35b6102316105a9565b60405161023e9190612033565b60405180910390f35b610261600480360381019061025c91906119ed565b6105b2565b60405161026e9190611d7b565b60405180910390f35b610291600480360381019061028c91906119ed565b6105e9565b005b6102ad60048036038101906102a89190611a29565b6105ff565b005b6102b761061b565b6040516102c49190611d60565b60405180910390f35b6102e760048036038101906102e29190611a29565b610645565b005b61030360048036038101906102fe9190611a29565b61071a565b005b61031f600480360381019061031a91906118fd565b6107a3565b60405161032c9190612018565b60405180910390f35b61033d6107eb565b005b610359600480360381019061035491906119b1565b6107ff565b005b610363610943565b6040516103709190611d60565b60405180910390f35b61038161096d565b60405161038e9190611d96565b60405180910390f35b6103b160048036038101906103ac91906119ed565b6109ff565b6040516103be9190611d7b565b60405180910390f35b6103e160048036038101906103dc91906119ed565b610a76565b6040516103ee9190611d7b565b60405180910390f35b6103ff610a99565b60405161040c9190612018565b60405180910390f35b61042f600480360381019061042a9190611926565b610a9f565b60405161043c9190612018565b60405180910390f35b61044d610b26565b60405161045a9190612018565b60405180910390f35b61047d600480360381019061047891906118fd565b610b30565b005b610499600480360381019061049491906118fd565b610c89565b005b6060600380546104aa90612207565b80601f01602080910402602001604051908101604052809291908181526020018280546104d690612207565b80156105235780601f106104f857610100808354040283529160200191610523565b820191906000526020600020905b81548152906001019060200180831161050657829003601f168201915b5050505050905090565b600080610538610e6d565b9050610545818585610e75565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600080610585610e6d565b9050610592858285611040565b61059d8585856110cc565b60019150509392505050565b60006009905090565b6000806105bd610e6d565b90506105de8185856105cf8589610a9f565b6105d9919061206a565b610e75565b600191505092915050565b6105f16112ad565b6105fb828261132b565b5050565b6106076112ad565b610618610612610e6d565b82611396565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61064d6112ad565b6000811415801561065f575060648111155b61069e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069590611ff8565b60405180910390fd5b8060095414156106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da90611ed8565b60405180910390fd5b80600981905550807f54b9dbb1167ce9a1e141b9c71f73394e64bf53da85077b4bcdcff626ba943f5860405160405180910390a250565b6107226112ad565b8061072b610570565b111561076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390611f58565b60405180910390fd5b80600781905550807f3f8118fc46e72ecde0c5e090803cad8c88e817b2f1e93e820aa9bfbf51f2468d60405160405180910390a250565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107f36112ad565b6107fd600061156d565b565b6108076112ad565b801515600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190611e98565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff5ee5a40b11459090f87a575b72be3c6bbebb512c1c47228672e366dcb078386826040516109379190611d7b565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461097c90612207565b80601f01602080910402602001604051908101604052809291908181526020018280546109a890612207565b80156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b5050505050905090565b600080610a0a610e6d565b90506000610a188286610a9f565b905083811015610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490611fb8565b60405180910390fd5b610a6a8286868403610e75565b60019250505092915050565b600080610a81610e6d565b9050610a8e8185856110cc565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600954905090565b610b386112ad565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610bc35750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990611f98565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef360405160405180910390a250565b610c916112ad565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890611df8565b60405180910390fd5b610d0a8161156d565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7490611fd8565b60405180910390fd5b610d8960008383611633565b8060026000828254610d9b919061206a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610df0919061206a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e559190612018565b60405180910390a3610e6960008383611638565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90611f78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90611e18565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110339190612018565b60405180910390a3505050565b600061104c8484610a9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c657818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611e38565b60405180910390fd5b6110c58484848403610e75565b5b50505050565b60008190506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561116057508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611217575060011515600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480611216575060011515600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b5b1561129b576103e8831015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890611e58565b60405180910390fd5b60006103e86009548561127491906120f1565b61127e91906120c0565b9050808461128c919061214b565b925061129986838361163d565b505b6112a685858461163d565b5050505050565b6112b5610e6d565b73ffffffffffffffffffffffffffffffffffffffff166112d3610943565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090611eb8565b60405180910390fd5b565b6000611335610570565b90506007548282611346919061206a565b1115611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90611ef8565b60405180910390fd5b6113918383610d0d565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90611f18565b60405180910390fd5b61141282600083611633565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90611dd8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114ef919061214b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115549190612018565b60405180910390a361156883600084611638565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490611f38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490611db8565b60405180910390fd5b611728838383611633565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590611e78565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611841919061206a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a59190612018565b60405180910390a36118b8848484611638565b50505050565b6000813590506118cd81612738565b92915050565b6000813590506118e28161274f565b92915050565b6000813590506118f781612766565b92915050565b60006020828403121561190f57600080fd5b600061191d848285016118be565b91505092915050565b6000806040838503121561193957600080fd5b6000611947858286016118be565b9250506020611958858286016118be565b9150509250929050565b60008060006060848603121561197757600080fd5b6000611985868287016118be565b9350506020611996868287016118be565b92505060406119a7868287016118e8565b9150509250925092565b600080604083850312156119c457600080fd5b60006119d2858286016118be565b92505060206119e3858286016118d3565b9150509250929050565b60008060408385031215611a0057600080fd5b6000611a0e858286016118be565b9250506020611a1f858286016118e8565b9150509250929050565b600060208284031215611a3b57600080fd5b6000611a49848285016118e8565b91505092915050565b611a5b8161217f565b82525050565b611a6a81612191565b82525050565b6000611a7b8261204e565b611a858185612059565b9350611a958185602086016121d4565b611a9e816122c6565b840191505092915050565b6000611ab6602383612059565b9150611ac1826122d7565b604082019050919050565b6000611ad9602283612059565b9150611ae482612326565b604082019050919050565b6000611afc602683612059565b9150611b0782612375565b604082019050919050565b6000611b1f602283612059565b9150611b2a826123c4565b604082019050919050565b6000611b42601d83612059565b9150611b4d82612413565b602082019050919050565b6000611b65601283612059565b9150611b708261243c565b602082019050919050565b6000611b88602683612059565b9150611b9382612465565b604082019050919050565b6000611bab600b83612059565b9150611bb6826124b4565b602082019050919050565b6000611bce602083612059565b9150611bd9826124dd565b602082019050919050565b6000611bf1601383612059565b9150611bfc82612506565b602082019050919050565b6000611c14601583612059565b9150611c1f8261252f565b602082019050919050565b6000611c37602183612059565b9150611c4282612558565b604082019050919050565b6000611c5a602583612059565b9150611c65826125a7565b604082019050919050565b6000611c7d601283612059565b9150611c88826125f6565b602082019050919050565b6000611ca0602483612059565b9150611cab8261261f565b604082019050919050565b6000611cc3601883612059565b9150611cce8261266e565b602082019050919050565b6000611ce6602583612059565b9150611cf182612697565b604082019050919050565b6000611d09601f83612059565b9150611d14826126e6565b602082019050919050565b6000611d2c601683612059565b9150611d378261270f565b602082019050919050565b611d4b816121bd565b82525050565b611d5a816121c7565b82525050565b6000602082019050611d756000830184611a52565b92915050565b6000602082019050611d906000830184611a61565b92915050565b60006020820190508181036000830152611db08184611a70565b905092915050565b60006020820190508181036000830152611dd181611aa9565b9050919050565b60006020820190508181036000830152611df181611acc565b9050919050565b60006020820190508181036000830152611e1181611aef565b9050919050565b60006020820190508181036000830152611e3181611b12565b9050919050565b60006020820190508181036000830152611e5181611b35565b9050919050565b60006020820190508181036000830152611e7181611b58565b9050919050565b60006020820190508181036000830152611e9181611b7b565b9050919050565b60006020820190508181036000830152611eb181611b9e565b9050919050565b60006020820190508181036000830152611ed181611bc1565b9050919050565b60006020820190508181036000830152611ef181611be4565b9050919050565b60006020820190508181036000830152611f1181611c07565b9050919050565b60006020820190508181036000830152611f3181611c2a565b9050919050565b60006020820190508181036000830152611f5181611c4d565b9050919050565b60006020820190508181036000830152611f7181611c70565b9050919050565b60006020820190508181036000830152611f9181611c93565b9050919050565b60006020820190508181036000830152611fb181611cb6565b9050919050565b60006020820190508181036000830152611fd181611cd9565b9050919050565b60006020820190508181036000830152611ff181611cfc565b9050919050565b6000602082019050818103600083015261201181611d1f565b9050919050565b600060208201905061202d6000830184611d42565b92915050565b60006020820190506120486000830184611d51565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612075826121bd565b9150612080836121bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120b5576120b4612239565b5b828201905092915050565b60006120cb826121bd565b91506120d6836121bd565b9250826120e6576120e5612268565b5b828204905092915050565b60006120fc826121bd565b9150612107836121bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121405761213f612239565b5b828202905092915050565b6000612156826121bd565b9150612161836121bd565b92508282101561217457612173612239565b5b828203905092915050565b600061218a8261219d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121f25780820151818401526020810190506121d7565b83811115612201576000848401525b50505050565b6000600282049050600182168061221f57607f821691505b6020821081141561223357612232612297565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f546f6f20736d616c6c207472616e736665720000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920536574000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616d65204665652050657263656e7461676500000000000000000000000000600082015250565b7f4c696d69746564204279204d617820537570706c790000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204d617820537570706c790000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420547265617375727920416464726573730000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f496e76616c6964204665652050657263656e7461676500000000000000000000600082015250565b6127418161217f565b811461274c57600080fd5b50565b61275881612191565b811461276357600080fd5b50565b61276f816121bd565b811461277a57600080fd5b5056fea26469706673582212200d84c6228e861fc8262d7dcea60197f307bdd72f923acf4b09481362def08a7d64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000008ac7230489e80000000000000000000000000000b8f23d70bf764d3d217e9a76632b79db5e6c080e000000000000000000000000000000000000000000000000000000000000000e43617468656f6e2047616d696e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000743415448454f4e00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Catheon Gaming
Arg [1] : symbol_ (string): CATHEON
Arg [2] : initialBalance_ (uint256): 10000000000000000000
Arg [3] : treasury_ (address): 0xB8f23D70bF764D3D217E9A76632B79db5E6C080e

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000008ac7230489e80000
Arg [3] : 000000000000000000000000b8f23d70bf764d3d217e9a76632b79db5e6c080e
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 43617468656f6e2047616d696e67000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 43415448454f4e00000000000000000000000000000000000000000000000000


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.