ETH Price: $3,364.94 (-1.52%)
Gas: 7 Gwei

Token

isotoken (ISO)
 

Overview

Max Total Supply

95,447,649.102324074074070704 ISO

Holders

1,813

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
awry.eth
Balance
236,899.430465277777777777 ISO

Value
$0.00
0x8a7c6ec12736e752bdbb3980d96ded2e3e475f02
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:
IsoToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : IsoToken.sol
// SPDX-License-Identifier: MIT LICENSE

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

contract IsoToken is ERC20, ERC20Burnable, Ownable {
    uint256 constant CAP = 3000000000 * 10 ** 18;
    uint256 public treasuryClaimed = 0;
    uint8 public reserveRate = 10;
    mapping(address => bool) public controllers;

    address public isoTreasury;
    bool public freezeControllers = false;
    bool public freezeReserveRate = false;

    constructor() ERC20("isotoken", "ISO") {
        isoTreasury = msg.sender;
    }

    function onFreezeController() external onlyOwner {
        freezeControllers = true;
    }

    function onFreezeReserveRate() external onlyOwner {
        freezeReserveRate = true;
    }

    function addController(address controller) external onlyOwner {
        require(!freezeControllers, "Controller freezed");
        controllers[controller] = true;
    }

    function removeController(address controller) external onlyOwner {
        controllers[controller] = false;
    }

    function setReserveRate(uint8 _reserveRate) external onlyOwner {
        require(!freezeReserveRate, "Reserve rate freezed");
        reserveRate = _reserveRate;
    }

    function setTreasuryAddress(address _address) external onlyOwner {
        isoTreasury = _address;
    }

    function mint(address to, uint256 amount) external {
        require(totalSupply() + amount <= CAP, "Limit exceeded");
        require(controllers[msg.sender], "Only controllers can mint");
        _mint(to, amount);
    }

    function treasuryClaim() external {
        uint256 currentTs = totalSupply();
        require(currentTs > treasuryClaimed, "All claimed");
        uint256 allowToClaim = (currentTs - treasuryClaimed) * reserveRate / 100;
        _mint(isoTreasury, allowToClaim);
        treasuryClaimed = totalSupply();
    }
}

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

File 3 of 7 : 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 4 of 7 : 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 5 of 7 : 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 7 : 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 7 : 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

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","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":[{"internalType":"address","name":"","type":"address"}],"name":"controllers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeControllers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeReserveRate","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":"isoTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"onFreezeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"onFreezeReserveRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveRate","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_reserveRate","type":"uint8"}],"name":"setReserveRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTreasuryAddress","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":[],"name":"treasuryClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526000600655600a600760006101000a81548160ff021916908360ff1602179055506000600960146101000a81548160ff0219169083151502179055506000600960156101000a81548160ff0219169083151502179055503480156200006857600080fd5b506040518060400160405280600881526020017f69736f746f6b656e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f49534f00000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000ed9291906200023e565b508060049080519060200190620001069291906200023e565b505050620001296200011d6200017060201b60201c565b6200017860201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000353565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024c906200031d565b90600052602060002090601f016020900481019282620002705760008555620002bc565b82601f106200028b57805160ff1916838001178555620002bc565b82800160010185558215620002bc579182015b82811115620002bb5782518255916020019190600101906200029e565b5b509050620002cb9190620002cf565b5090565b5b80821115620002ea576000816000905550600101620002d0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033657607f821691505b602082108114156200034d576200034c620002ee565b5b50919050565b612afa80620003636000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a7fc7a07116100a2578063dd62ed3e11610071578063dd62ed3e1461050d578063e77e2b121461053d578063f2fde38b1461055b578063f6a74ed714610577576101da565b8063a7fc7a0714610487578063a9059cbb146104a3578063c85bebce146104d3578063da8c229e146104dd576101da565b80638da5cb5b116100de5780638da5cb5b14610411578063955ef6181461042f57806395d89b4114610439578063a457c2d714610457576101da565b806370a08231146103bb578063715018a6146103eb57806379cc6790146103f5576101da565b806340c10f191161017c5780635475a7be1161014b5780635475a7be1461035b57806358d7bf80146103655780636605bfda1461038357806369f269581461039f576101da565b806340c10f19146102e7578063416aab491461030357806342966c681461032157806343ded9251461033d576101da565b806318160ddd116101b857806318160ddd1461024b57806323b872dd14610269578063313ce5671461029957806339509351146102b7576101da565b806306fdde03146101df578063095ea7b3146101fd5780630f1a1d511461022d575b600080fd5b6101e7610593565b6040516101f49190611cb4565b60405180910390f35b61021760048036038101906102129190611d6f565b610625565b6040516102249190611dca565b60405180910390f35b610235610643565b6040516102429190611df4565b60405180910390f35b610253610669565b6040516102609190611e1e565b60405180910390f35b610283600480360381019061027e9190611e39565b610673565b6040516102909190611dca565b60405180910390f35b6102a161076b565b6040516102ae9190611ea8565b60405180910390f35b6102d160048036038101906102cc9190611d6f565b610774565b6040516102de9190611dca565b60405180910390f35b61030160048036038101906102fc9190611d6f565b610820565b005b61030b61091b565b6040516103189190611e1e565b60405180910390f35b61033b60048036038101906103369190611ec3565b610921565b005b610345610935565b6040516103529190611dca565b60405180910390f35b610363610948565b005b61036d610a11565b60405161037a9190611ea8565b60405180910390f35b61039d60048036038101906103989190611ef0565b610a24565b005b6103b960048036038101906103b49190611f49565b610ae4565b005b6103d560048036038101906103d09190611ef0565b610bce565b6040516103e29190611e1e565b60405180910390f35b6103f3610c16565b005b61040f600480360381019061040a9190611d6f565b610c9e565b005b610419610d19565b6040516104269190611df4565b60405180910390f35b610437610d43565b005b610441610ddc565b60405161044e9190611cb4565b60405180910390f35b610471600480360381019061046c9190611d6f565b610e6e565b60405161047e9190611dca565b60405180910390f35b6104a1600480360381019061049c9190611ef0565b610f59565b005b6104bd60048036038101906104b89190611d6f565b611080565b6040516104ca9190611dca565b60405180910390f35b6104db61109e565b005b6104f760048036038101906104f29190611ef0565b611137565b6040516105049190611dca565b60405180910390f35b61052760048036038101906105229190611f76565b611157565b6040516105349190611e1e565b60405180910390f35b6105456111de565b6040516105529190611dca565b60405180910390f35b61057560048036038101906105709190611ef0565b6111f1565b005b610591600480360381019061058c9190611ef0565b6112e9565b005b6060600380546105a290611fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90611fe5565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b60006106396106326113c0565b84846113c8565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610680848484611593565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cb6113c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561074b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074290612089565b60405180910390fd5b61075f856107576113c0565b8584036113c8565b60019150509392505050565b60006012905090565b60006108166107816113c0565b84846001600061078f6113c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461081191906120d8565b6113c8565b6001905092915050565b6b09b18ab5df7180b6b800000081610836610669565b61084091906120d8565b1115610881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108789061217a565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906121e6565b60405180910390fd5b6109178282611814565b5050565b60065481565b61093261092c6113c0565b82611974565b50565b600960159054906101000a900460ff1681565b6000610952610669565b90506006548111610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90612252565b60405180910390fd5b60006064600760009054906101000a900460ff1660ff16600654846109bd9190612272565b6109c791906122a6565b6109d1919061232f565b90506109ff600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611814565b610a07610669565b6006819055505050565b600760009054906101000a900460ff1681565b610a2c6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610a4a610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a97906123ac565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610aec6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610b0a610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b57906123ac565b60405180910390fd5b600960159054906101000a900460ff1615610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790612418565b60405180910390fd5b80600760006101000a81548160ff021916908360ff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c1e6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610c3c610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c89906123ac565b60405180910390fd5b610c9c6000611b4b565b565b6000610cb183610cac6113c0565b611157565b905081811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced906124aa565b60405180910390fd5b610d0a83610d026113c0565b8484036113c8565b610d148383611974565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d4b6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610d69610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db6906123ac565b60405180910390fd5b6001600960156101000a81548160ff021916908315150217905550565b606060048054610deb90611fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790611fe5565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050905090565b60008060016000610e7d6113c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f319061253c565b60405180910390fd5b610f4e610f456113c0565b858584036113c8565b600191505092915050565b610f616113c0565b73ffffffffffffffffffffffffffffffffffffffff16610f7f610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc906123ac565b60405180910390fd5b600960149054906101000a900460ff1615611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c906125a8565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061109461108d6113c0565b8484611593565b6001905092915050565b6110a66113c0565b73ffffffffffffffffffffffffffffffffffffffff166110c4610d19565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906123ac565b60405180910390fd5b6001600960146101000a81548160ff021916908315150217905550565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960149054906101000a900460ff1681565b6111f96113c0565b73ffffffffffffffffffffffffffffffffffffffff16611217610d19565b73ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906123ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061263a565b60405180910390fd5b6112e681611b4b565b50565b6112f16113c0565b73ffffffffffffffffffffffffffffffffffffffff1661130f610d19565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c906123ac565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f906126cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061275e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115869190611e1e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906127f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90612882565b60405180910390fd5b61167e838383611c11565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612914565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461179791906120d8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fb9190611e1e565b60405180910390a361180e848484611c16565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90612980565b60405180910390fd5b61189060008383611c11565b80600260008282546118a291906120d8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f791906120d8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161195c9190611e1e565b60405180910390a361197060008383611c16565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90612a12565b60405180910390fd5b6119f082600083611c11565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90612aa4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611acd9190612272565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b329190611e1e565b60405180910390a3611b4683600084611c16565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c55578082015181840152602081019050611c3a565b83811115611c64576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c8682611c1b565b611c908185611c26565b9350611ca0818560208601611c37565b611ca981611c6a565b840191505092915050565b60006020820190508181036000830152611cce8184611c7b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d0682611cdb565b9050919050565b611d1681611cfb565b8114611d2157600080fd5b50565b600081359050611d3381611d0d565b92915050565b6000819050919050565b611d4c81611d39565b8114611d5757600080fd5b50565b600081359050611d6981611d43565b92915050565b60008060408385031215611d8657611d85611cd6565b5b6000611d9485828601611d24565b9250506020611da585828601611d5a565b9150509250929050565b60008115159050919050565b611dc481611daf565b82525050565b6000602082019050611ddf6000830184611dbb565b92915050565b611dee81611cfb565b82525050565b6000602082019050611e096000830184611de5565b92915050565b611e1881611d39565b82525050565b6000602082019050611e336000830184611e0f565b92915050565b600080600060608486031215611e5257611e51611cd6565b5b6000611e6086828701611d24565b9350506020611e7186828701611d24565b9250506040611e8286828701611d5a565b9150509250925092565b600060ff82169050919050565b611ea281611e8c565b82525050565b6000602082019050611ebd6000830184611e99565b92915050565b600060208284031215611ed957611ed8611cd6565b5b6000611ee784828501611d5a565b91505092915050565b600060208284031215611f0657611f05611cd6565b5b6000611f1484828501611d24565b91505092915050565b611f2681611e8c565b8114611f3157600080fd5b50565b600081359050611f4381611f1d565b92915050565b600060208284031215611f5f57611f5e611cd6565b5b6000611f6d84828501611f34565b91505092915050565b60008060408385031215611f8d57611f8c611cd6565b5b6000611f9b85828601611d24565b9250506020611fac85828601611d24565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ffd57607f821691505b6020821081141561201157612010611fb6565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612073602883611c26565b915061207e82612017565b604082019050919050565b600060208201905081810360008301526120a281612066565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120e382611d39565b91506120ee83611d39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612123576121226120a9565b5b828201905092915050565b7f4c696d6974206578636565646564000000000000000000000000000000000000600082015250565b6000612164600e83611c26565b915061216f8261212e565b602082019050919050565b6000602082019050818103600083015261219381612157565b9050919050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b60006121d0601983611c26565b91506121db8261219a565b602082019050919050565b600060208201905081810360008301526121ff816121c3565b9050919050565b7f416c6c20636c61696d6564000000000000000000000000000000000000000000600082015250565b600061223c600b83611c26565b915061224782612206565b602082019050919050565b6000602082019050818103600083015261226b8161222f565b9050919050565b600061227d82611d39565b915061228883611d39565b92508282101561229b5761229a6120a9565b5b828203905092915050565b60006122b182611d39565b91506122bc83611d39565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156122f5576122f46120a9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061233a82611d39565b915061234583611d39565b92508261235557612354612300565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612396602083611c26565b91506123a182612360565b602082019050919050565b600060208201905081810360008301526123c581612389565b9050919050565b7f52657365727665207261746520667265657a6564000000000000000000000000600082015250565b6000612402601483611c26565b915061240d826123cc565b602082019050919050565b60006020820190508181036000830152612431816123f5565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612494602483611c26565b915061249f82612438565b604082019050919050565b600060208201905081810360008301526124c381612487565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612526602583611c26565b9150612531826124ca565b604082019050919050565b6000602082019050818103600083015261255581612519565b9050919050565b7f436f6e74726f6c6c657220667265657a65640000000000000000000000000000600082015250565b6000612592601283611c26565b915061259d8261255c565b602082019050919050565b600060208201905081810360008301526125c181612585565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612624602683611c26565b915061262f826125c8565b604082019050919050565b6000602082019050818103600083015261265381612617565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b6602483611c26565b91506126c18261265a565b604082019050919050565b600060208201905081810360008301526126e5816126a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612748602283611c26565b9150612753826126ec565b604082019050919050565b600060208201905081810360008301526127778161273b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127da602583611c26565b91506127e58261277e565b604082019050919050565b60006020820190508181036000830152612809816127cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061286c602383611c26565b915061287782612810565b604082019050919050565b6000602082019050818103600083015261289b8161285f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006128fe602683611c26565b9150612909826128a2565b604082019050919050565b6000602082019050818103600083015261292d816128f1565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061296a601f83611c26565b915061297582612934565b602082019050919050565b600060208201905081810360008301526129998161295d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129fc602183611c26565b9150612a07826129a0565b604082019050919050565b60006020820190508181036000830152612a2b816129ef565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a8e602283611c26565b9150612a9982612a32565b604082019050919050565b60006020820190508181036000830152612abd81612a81565b905091905056fea264697066735822122077d35b03ddef7e1b976da4efd2a398901fd3a5e1b8aaa17b38c4253ca4875c9364736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a7fc7a07116100a2578063dd62ed3e11610071578063dd62ed3e1461050d578063e77e2b121461053d578063f2fde38b1461055b578063f6a74ed714610577576101da565b8063a7fc7a0714610487578063a9059cbb146104a3578063c85bebce146104d3578063da8c229e146104dd576101da565b80638da5cb5b116100de5780638da5cb5b14610411578063955ef6181461042f57806395d89b4114610439578063a457c2d714610457576101da565b806370a08231146103bb578063715018a6146103eb57806379cc6790146103f5576101da565b806340c10f191161017c5780635475a7be1161014b5780635475a7be1461035b57806358d7bf80146103655780636605bfda1461038357806369f269581461039f576101da565b806340c10f19146102e7578063416aab491461030357806342966c681461032157806343ded9251461033d576101da565b806318160ddd116101b857806318160ddd1461024b57806323b872dd14610269578063313ce5671461029957806339509351146102b7576101da565b806306fdde03146101df578063095ea7b3146101fd5780630f1a1d511461022d575b600080fd5b6101e7610593565b6040516101f49190611cb4565b60405180910390f35b61021760048036038101906102129190611d6f565b610625565b6040516102249190611dca565b60405180910390f35b610235610643565b6040516102429190611df4565b60405180910390f35b610253610669565b6040516102609190611e1e565b60405180910390f35b610283600480360381019061027e9190611e39565b610673565b6040516102909190611dca565b60405180910390f35b6102a161076b565b6040516102ae9190611ea8565b60405180910390f35b6102d160048036038101906102cc9190611d6f565b610774565b6040516102de9190611dca565b60405180910390f35b61030160048036038101906102fc9190611d6f565b610820565b005b61030b61091b565b6040516103189190611e1e565b60405180910390f35b61033b60048036038101906103369190611ec3565b610921565b005b610345610935565b6040516103529190611dca565b60405180910390f35b610363610948565b005b61036d610a11565b60405161037a9190611ea8565b60405180910390f35b61039d60048036038101906103989190611ef0565b610a24565b005b6103b960048036038101906103b49190611f49565b610ae4565b005b6103d560048036038101906103d09190611ef0565b610bce565b6040516103e29190611e1e565b60405180910390f35b6103f3610c16565b005b61040f600480360381019061040a9190611d6f565b610c9e565b005b610419610d19565b6040516104269190611df4565b60405180910390f35b610437610d43565b005b610441610ddc565b60405161044e9190611cb4565b60405180910390f35b610471600480360381019061046c9190611d6f565b610e6e565b60405161047e9190611dca565b60405180910390f35b6104a1600480360381019061049c9190611ef0565b610f59565b005b6104bd60048036038101906104b89190611d6f565b611080565b6040516104ca9190611dca565b60405180910390f35b6104db61109e565b005b6104f760048036038101906104f29190611ef0565b611137565b6040516105049190611dca565b60405180910390f35b61052760048036038101906105229190611f76565b611157565b6040516105349190611e1e565b60405180910390f35b6105456111de565b6040516105529190611dca565b60405180910390f35b61057560048036038101906105709190611ef0565b6111f1565b005b610591600480360381019061058c9190611ef0565b6112e9565b005b6060600380546105a290611fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90611fe5565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b60006106396106326113c0565b84846113c8565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610680848484611593565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cb6113c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561074b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074290612089565b60405180910390fd5b61075f856107576113c0565b8584036113c8565b60019150509392505050565b60006012905090565b60006108166107816113c0565b84846001600061078f6113c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461081191906120d8565b6113c8565b6001905092915050565b6b09b18ab5df7180b6b800000081610836610669565b61084091906120d8565b1115610881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108789061217a565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661090d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610904906121e6565b60405180910390fd5b6109178282611814565b5050565b60065481565b61093261092c6113c0565b82611974565b50565b600960159054906101000a900460ff1681565b6000610952610669565b90506006548111610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90612252565b60405180910390fd5b60006064600760009054906101000a900460ff1660ff16600654846109bd9190612272565b6109c791906122a6565b6109d1919061232f565b90506109ff600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611814565b610a07610669565b6006819055505050565b600760009054906101000a900460ff1681565b610a2c6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610a4a610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a97906123ac565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610aec6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610b0a610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b57906123ac565b60405180910390fd5b600960159054906101000a900460ff1615610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790612418565b60405180910390fd5b80600760006101000a81548160ff021916908360ff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c1e6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610c3c610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c89906123ac565b60405180910390fd5b610c9c6000611b4b565b565b6000610cb183610cac6113c0565b611157565b905081811015610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced906124aa565b60405180910390fd5b610d0a83610d026113c0565b8484036113c8565b610d148383611974565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d4b6113c0565b73ffffffffffffffffffffffffffffffffffffffff16610d69610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db6906123ac565b60405180910390fd5b6001600960156101000a81548160ff021916908315150217905550565b606060048054610deb90611fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1790611fe5565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050905090565b60008060016000610e7d6113c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f319061253c565b60405180910390fd5b610f4e610f456113c0565b858584036113c8565b600191505092915050565b610f616113c0565b73ffffffffffffffffffffffffffffffffffffffff16610f7f610d19565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc906123ac565b60405180910390fd5b600960149054906101000a900460ff1615611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c906125a8565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061109461108d6113c0565b8484611593565b6001905092915050565b6110a66113c0565b73ffffffffffffffffffffffffffffffffffffffff166110c4610d19565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906123ac565b60405180910390fd5b6001600960146101000a81548160ff021916908315150217905550565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960149054906101000a900460ff1681565b6111f96113c0565b73ffffffffffffffffffffffffffffffffffffffff16611217610d19565b73ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906123ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d49061263a565b60405180910390fd5b6112e681611b4b565b50565b6112f16113c0565b73ffffffffffffffffffffffffffffffffffffffff1661130f610d19565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c906123ac565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f906126cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f9061275e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115869190611e1e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906127f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90612882565b60405180910390fd5b61167e838383611c11565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90612914565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461179791906120d8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117fb9190611e1e565b60405180910390a361180e848484611c16565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90612980565b60405180910390fd5b61189060008383611c11565b80600260008282546118a291906120d8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118f791906120d8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161195c9190611e1e565b60405180910390a361197060008383611c16565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90612a12565b60405180910390fd5b6119f082600083611c11565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90612aa4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611acd9190612272565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b329190611e1e565b60405180910390a3611b4683600084611c16565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c55578082015181840152602081019050611c3a565b83811115611c64576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c8682611c1b565b611c908185611c26565b9350611ca0818560208601611c37565b611ca981611c6a565b840191505092915050565b60006020820190508181036000830152611cce8184611c7b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d0682611cdb565b9050919050565b611d1681611cfb565b8114611d2157600080fd5b50565b600081359050611d3381611d0d565b92915050565b6000819050919050565b611d4c81611d39565b8114611d5757600080fd5b50565b600081359050611d6981611d43565b92915050565b60008060408385031215611d8657611d85611cd6565b5b6000611d9485828601611d24565b9250506020611da585828601611d5a565b9150509250929050565b60008115159050919050565b611dc481611daf565b82525050565b6000602082019050611ddf6000830184611dbb565b92915050565b611dee81611cfb565b82525050565b6000602082019050611e096000830184611de5565b92915050565b611e1881611d39565b82525050565b6000602082019050611e336000830184611e0f565b92915050565b600080600060608486031215611e5257611e51611cd6565b5b6000611e6086828701611d24565b9350506020611e7186828701611d24565b9250506040611e8286828701611d5a565b9150509250925092565b600060ff82169050919050565b611ea281611e8c565b82525050565b6000602082019050611ebd6000830184611e99565b92915050565b600060208284031215611ed957611ed8611cd6565b5b6000611ee784828501611d5a565b91505092915050565b600060208284031215611f0657611f05611cd6565b5b6000611f1484828501611d24565b91505092915050565b611f2681611e8c565b8114611f3157600080fd5b50565b600081359050611f4381611f1d565b92915050565b600060208284031215611f5f57611f5e611cd6565b5b6000611f6d84828501611f34565b91505092915050565b60008060408385031215611f8d57611f8c611cd6565b5b6000611f9b85828601611d24565b9250506020611fac85828601611d24565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ffd57607f821691505b6020821081141561201157612010611fb6565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000612073602883611c26565b915061207e82612017565b604082019050919050565b600060208201905081810360008301526120a281612066565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120e382611d39565b91506120ee83611d39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612123576121226120a9565b5b828201905092915050565b7f4c696d6974206578636565646564000000000000000000000000000000000000600082015250565b6000612164600e83611c26565b915061216f8261212e565b602082019050919050565b6000602082019050818103600083015261219381612157565b9050919050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b60006121d0601983611c26565b91506121db8261219a565b602082019050919050565b600060208201905081810360008301526121ff816121c3565b9050919050565b7f416c6c20636c61696d6564000000000000000000000000000000000000000000600082015250565b600061223c600b83611c26565b915061224782612206565b602082019050919050565b6000602082019050818103600083015261226b8161222f565b9050919050565b600061227d82611d39565b915061228883611d39565b92508282101561229b5761229a6120a9565b5b828203905092915050565b60006122b182611d39565b91506122bc83611d39565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156122f5576122f46120a9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061233a82611d39565b915061234583611d39565b92508261235557612354612300565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612396602083611c26565b91506123a182612360565b602082019050919050565b600060208201905081810360008301526123c581612389565b9050919050565b7f52657365727665207261746520667265657a6564000000000000000000000000600082015250565b6000612402601483611c26565b915061240d826123cc565b602082019050919050565b60006020820190508181036000830152612431816123f5565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000612494602483611c26565b915061249f82612438565b604082019050919050565b600060208201905081810360008301526124c381612487565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612526602583611c26565b9150612531826124ca565b604082019050919050565b6000602082019050818103600083015261255581612519565b9050919050565b7f436f6e74726f6c6c657220667265657a65640000000000000000000000000000600082015250565b6000612592601283611c26565b915061259d8261255c565b602082019050919050565b600060208201905081810360008301526125c181612585565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612624602683611c26565b915061262f826125c8565b604082019050919050565b6000602082019050818103600083015261265381612617565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b6602483611c26565b91506126c18261265a565b604082019050919050565b600060208201905081810360008301526126e5816126a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612748602283611c26565b9150612753826126ec565b604082019050919050565b600060208201905081810360008301526127778161273b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127da602583611c26565b91506127e58261277e565b604082019050919050565b60006020820190508181036000830152612809816127cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061286c602383611c26565b915061287782612810565b604082019050919050565b6000602082019050818103600083015261289b8161285f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006128fe602683611c26565b9150612909826128a2565b604082019050919050565b6000602082019050818103600083015261292d816128f1565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061296a601f83611c26565b915061297582612934565b602082019050919050565b600060208201905081810360008301526129998161295d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006129fc602183611c26565b9150612a07826129a0565b604082019050919050565b60006020820190508181036000830152612a2b816129ef565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a8e602283611c26565b9150612a9982612a32565b604082019050919050565b60006020820190508181036000830152612abd81612a81565b905091905056fea264697066735822122077d35b03ddef7e1b976da4efd2a398901fd3a5e1b8aaa17b38c4253ca4875c9364736f6c63430008090033

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.