ETH Price: $3,357.97 (-1.70%)
Gas: 8 Gwei

Token

Prey (PREY)
 

Overview

Max Total Supply

1,008,919,245.453703703703703502 PREY

Holders

945 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
22,280 PREY

Value
$0.00
0x0b1B80Fa4f13D193E65779ca2Bb6431A55B1B4Cf
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The PREY token acts as a core utility token in the hunter game. The players stake their NFT token to earn prey token, it can also be paid as a reward to expand the community as well as developers after a locked period of 2 years. It has a maximum supply of 5 billion.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Prey

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.10;

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

/**
 * $PREY token contract
 */
contract Prey is ERC20, Ownable {

  // a mapping from an address to whether or not it can mint / burn
  mapping(address => bool) public controllers;
  
  // the total amount allocated for developers
  uint constant developerTokenAmount = 600000000 ether;

  // the total amount allocated for community rewards
  uint constant communityTokenAmount = 2000000000 ether;

  // the total amount of tokens staked in the forest to yeild
  uint constant forestTokenAmount = 2400000000 ether;
  
  // the amount of $PREY tokens community has yielded
  uint mintedByCommunity;
  // the amount of $PREY tokens staked and yielded in the forest
  uint mintedByForest;

  /**
   * Contract constructor function
   * @param developerAccount The address that receives locked $PREY rewards for developers, in total 600 million
   */
  constructor(address developerAccount) ERC20("Prey", "PREY") {

    // create contract to lock $PREY token for 2 years (732 days in total) for developers, after which there is a 10 months(300 days in total) vesting schedule to release 600 million tokens
    TokenTimelock timelock = new TokenTimelock(this, developerAccount, block.timestamp + 732 days, 300 days, developerTokenAmount);
    _mint(address(timelock), developerTokenAmount);
    controllers[_msgSender()] = true;
  }
  /**
   * the function mints $PREY tokens to community members, effectively controls maximum yields
   * @param account mint $PREY to account
   * @param amount $PREY amount to mint
   */
  function mintByCommunity(address account, uint256 amount) external {
    require(controllers[_msgSender()], "Only controllers can mint");
    require(mintedByCommunity + amount <= communityTokenAmount, "No mint out");
    mintedByCommunity = mintedByCommunity + amount;
    _mint(account, amount);
  }

  /**
   * the function mints $PREY tokens to community members, effectively controls maximum yields
   * @param accounts mint $PREY to accounts
   * @param amount $PREY amount to mint
   */
  function mintsByCommunity(address[] calldata accounts, uint256 amount) external {
    require(controllers[_msgSender()], "Only controllers can mint");
    require(mintedByCommunity + (amount * accounts.length) <= communityTokenAmount, "No mint out");
    mintedByCommunity = mintedByCommunity + (amount * accounts.length);
    for (uint256 i = 0; i < accounts.length; i++) {
      _mint(accounts[i], amount);
    }
  }

  /**
   * the function mints $PREY tokens by the forest, effectively controls maximum yields
   * @param account mint $PREY to account
   * @param amount $PREY amount to mint
   */
  function mintByForest(address account, uint256 amount) external {
    require(controllers[_msgSender()], "Only controllers can mint");
    require(mintedByForest + amount <= forestTokenAmount, "No mint out");
    mintedByForest = mintedByForest + amount;
    _mint(account, amount);
  }

  /**
   * burn $PREY token by controller
   * @param account account holds $PREY token
   * @param amount the amount of $PREY token to burn
   */
  function burn(address account, uint256 amount) external {
    require(controllers[_msgSender()], "Only controllers can mint");
    _burn(account, amount);
  }

  /**
   * enables an address to mint / burn
   * @param controller the address to enable
   */
  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  /**
   * disables an address from minting / burning
   * @param controller the address to disbale
   */
  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }

}

File 2 of 7 : TokenTimelock.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

import './Prey.sol';

/**
 * Useful for simple vesting schedules like "developers get their tokens
 * after 2 years".
 */
contract TokenTimelock {

    // ERC20 basic token contract being held
    Prey private immutable _token;

    // beneficiary of tokens after they are released
    address private immutable _beneficiary;

    // timestamp when token release is enabled
    uint256 private immutable _releaseTime;
    
    //a vesting duration to release tokens 
    uint256 private immutable _releaseDuration;
    
    //record last withdraw time, through which calculate the total withdraw amount
    uint256 private lastWithdrawTime;
    //total amount of tokens to release
    uint256 private immutable _totalToken;

    constructor(
        Prey token_,
        address beneficiary_,
        uint256 releaseTime_,
        uint256 releaseDuration_,
        uint256 totalToken_
    ) {
        require(releaseTime_ > block.timestamp, "TokenTimelock: release time is before current time");
        _token = token_;
        _beneficiary = beneficiary_;
        _releaseTime = releaseTime_;
        lastWithdrawTime = _releaseTime;
        _releaseDuration = releaseDuration_;
        _totalToken = totalToken_;
    }

    /**
     * @return the token being held.
     */
    function token() public view virtual returns (Prey) {
        return _token;
    }

    /**
     * @return the beneficiary of the tokens.
     */
    function beneficiary() public view virtual returns (address) {
        return _beneficiary;
    }

    /**
     * @return the time when the tokens are released.
     */
    function releaseTime() public view virtual returns (uint256) {
        return _releaseTime;
    }

    /**
     * @notice Transfers tokens held by timelock to beneficiary.
     */
    function release() public virtual {
        require(block.timestamp >= releaseTime(), "TokenTimelock: current time is before release time");

        uint256 amount = token().balanceOf(address(this));
        uint256 releaseAmount = (block.timestamp - lastWithdrawTime) * _totalToken / _releaseDuration;
        
        require(amount >= releaseAmount, "TokenTimelock: no tokens to release");

        lastWithdrawTime = block.timestamp;
        token().transfer(beneficiary(), releaseAmount);
    }
}

File 3 of 7 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

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 6 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

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 7 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"developerAccount","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintByCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintByForest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintsByCommunity","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":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620039fe380380620039fe833981810160405281019062000037919062000563565b6040518060400160405280600481526020017f50726579000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50524559000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb9291906200043b565b508060049080519060200190620000d49291906200043b565b505050620000f7620000eb620001ea60201b60201c565b620001f260201b60201c565b600030826303c50a00426200010d9190620005ce565b63018b82006b01f04ef12cb04cf1580000006040516200012d90620004cc565b6200013d959493929190620006fb565b604051809103906000f0801580156200015a573d6000803e3d6000fd5b5090506200017b816b01f04ef12cb04cf158000000620002b860201b60201c565b60016006600062000191620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050506200085d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200032b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032290620007b9565b60405180910390fd5b6200033f600083836200043160201b60201c565b8060026000828254620003539190620005ce565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003aa9190620005ce565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004119190620007db565b60405180910390a36200042d600083836200043660201b60201c565b5050565b505050565b505050565b828054620004499062000827565b90600052602060002090601f0160209004810192826200046d5760008555620004b9565b82601f106200048857805160ff1916838001178555620004b9565b82800160010185558215620004b9579182015b82811115620004b85782518255916020019190600101906200049b565b5b509050620004c89190620004da565b5090565b610b2e8062002ed083390190565b5b80821115620004f5576000816000905550600101620004db565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200052b82620004fe565b9050919050565b6200053d816200051e565b81146200054957600080fd5b50565b6000815190506200055d8162000532565b92915050565b6000602082840312156200057c576200057b620004f9565b5b60006200058c848285016200054c565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005db8262000595565b9150620005e88362000595565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000620576200061f6200059f565b5b828201905092915050565b6000819050919050565b600062000656620006506200064a84620004fe565b6200062b565b620004fe565b9050919050565b60006200066a8262000635565b9050919050565b60006200067e826200065d565b9050919050565b620006908162000671565b82525050565b620006a1816200051e565b82525050565b620006b28162000595565b82525050565b6000819050919050565b6000620006e3620006dd620006d784620006b8565b6200062b565b62000595565b9050919050565b620006f581620006c2565b82525050565b600060a08201905062000712600083018862000685565b62000721602083018762000696565b620007306040830186620006a7565b6200073f6060830185620006ea565b6200074e6080830184620006a7565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007a1601f8362000758565b9150620007ae8262000769565b602082019050919050565b60006020820190508181036000830152620007d48162000792565b9050919050565b6000602082019050620007f26000830184620006a7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200084057607f821691505b60208210811415620008575762000856620007f8565b5b50919050565b612663806200086d6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806395d89b41116100b8578063da8c229e1161007c578063da8c229e14610350578063dd62ed3e14610380578063e3128e6f146103b0578063e916d2d4146103cc578063f2fde38b146103e8578063f6a74ed71461040457610137565b806395d89b411461029a5780639dc29fac146102b8578063a457c2d7146102d4578063a7fc7a0714610304578063a9059cbb1461032057610137565b8063313ce567116100ff578063313ce567146101f4578063395093511461021257806370a0823114610242578063715018a6146102725780638da5cb5b1461027c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a5780631aedf3d4146101a857806323b872dd146101c4575b600080fd5b610144610420565b6040516101519190611997565b60405180910390f35b610174600480360381019061016f9190611a57565b6104b2565b6040516101819190611ab2565b60405180910390f35b6101926104d0565b60405161019f9190611adc565b60405180910390f35b6101c260048036038101906101bd9190611a57565b6104da565b005b6101de60048036038101906101d99190611af7565b6105eb565b6040516101eb9190611ab2565b60405180910390f35b6101fc6106e3565b6040516102099190611b66565b60405180910390f35b61022c60048036038101906102279190611a57565b6106ec565b6040516102399190611ab2565b60405180910390f35b61025c60048036038101906102579190611b81565b610798565b6040516102699190611adc565b60405180910390f35b61027a6107e0565b005b610284610868565b6040516102919190611bbd565b60405180910390f35b6102a2610892565b6040516102af9190611997565b60405180910390f35b6102d260048036038101906102cd9190611a57565b610924565b005b6102ee60048036038101906102e99190611a57565b6109c5565b6040516102fb9190611ab2565b60405180910390f35b61031e60048036038101906103199190611b81565b610ab0565b005b61033a60048036038101906103359190611a57565b610b87565b6040516103479190611ab2565b60405180910390f35b61036a60048036038101906103659190611b81565b610ba5565b6040516103779190611ab2565b60405180910390f35b61039a60048036038101906103959190611bd8565b610bc5565b6040516103a79190611adc565b60405180910390f35b6103ca60048036038101906103c59190611a57565b610c4c565b005b6103e660048036038101906103e19190611c7d565b610d5d565b005b61040260048036038101906103fd9190611b81565b610ed4565b005b61041e60048036038101906104199190611b81565b610fcc565b005b60606003805461042f90611d0c565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90611d0c565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104c66104bf6110a3565b84846110ab565b6001905092915050565b6000600254905090565b600660006104e66110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661056d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056490611d8a565b60405180910390fd5b6b06765c793fa10079d0000000816007546105889190611dd9565b11156105c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c090611e7b565b60405180910390fd5b806007546105d79190611dd9565b6007819055506105e78282611276565b5050565b60006105f88484846113d6565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106436110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba90611f0d565b60405180910390fd5b6106d7856106cf6110a3565b8584036110ab565b60019150509392505050565b60006012905090565b600061078e6106f96110a3565b8484600160006107076110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107899190611dd9565b6110ab565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e86110a3565b73ffffffffffffffffffffffffffffffffffffffff16610806610868565b73ffffffffffffffffffffffffffffffffffffffff161461085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390611f79565b60405180910390fd5b6108666000611657565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108a190611d0c565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd90611d0c565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b5050505050905090565b600660006109306110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90611d8a565b60405180910390fd5b6109c1828261171d565b5050565b600080600160006109d46110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a889061200b565b60405180910390fd5b610aa5610a9c6110a3565b858584036110ab565b600191505092915050565b610ab86110a3565b73ffffffffffffffffffffffffffffffffffffffff16610ad6610868565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611f79565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610b9b610b946110a3565b84846113d6565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60066000610c586110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611d8a565b60405180910390fd5b6b07c13bc4b2c133c56000000081600854610cfa9190611dd9565b1115610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290611e7b565b60405180910390fd5b80600854610d499190611dd9565b600881905550610d598282611276565b5050565b60066000610d696110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790611d8a565b60405180910390fd5b6b06765c793fa10079d00000008383905082610e0c919061202b565b600754610e199190611dd9565b1115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190611e7b565b60405180910390fd5b8282905081610e69919061202b565b600754610e769190611dd9565b60078190555060005b83839050811015610ece57610ebb848483818110610ea057610e9f612085565b5b9050602002016020810190610eb59190611b81565b83611276565b8080610ec6906120b4565b915050610e7f565b50505050565b610edc6110a3565b73ffffffffffffffffffffffffffffffffffffffff16610efa610868565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790611f79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb79061216f565b60405180910390fd5b610fc981611657565b50565b610fd46110a3565b73ffffffffffffffffffffffffffffffffffffffff16610ff2610868565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90611f79565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290612201565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612293565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112699190611adc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906122ff565b60405180910390fd5b6112f2600083836118f4565b80600260008282546113049190611dd9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113599190611dd9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113be9190611adc565b60405180910390a36113d2600083836118f9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90612391565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90612423565b60405180910390fd5b6114c18383836118f4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e906124b5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115da9190611dd9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161163e9190611adc565b60405180910390a36116518484846118f9565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490612547565b60405180910390fd5b611799826000836118f4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561181f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611816906125d9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461187691906125f9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118db9190611adc565b60405180910390a36118ef836000846118f9565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561193857808201518184015260208101905061191d565b83811115611947576000848401525b50505050565b6000601f19601f8301169050919050565b6000611969826118fe565b6119738185611909565b935061198381856020860161191a565b61198c8161194d565b840191505092915050565b600060208201905081810360008301526119b1818461195e565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119ee826119c3565b9050919050565b6119fe816119e3565b8114611a0957600080fd5b50565b600081359050611a1b816119f5565b92915050565b6000819050919050565b611a3481611a21565b8114611a3f57600080fd5b50565b600081359050611a5181611a2b565b92915050565b60008060408385031215611a6e57611a6d6119b9565b5b6000611a7c85828601611a0c565b9250506020611a8d85828601611a42565b9150509250929050565b60008115159050919050565b611aac81611a97565b82525050565b6000602082019050611ac76000830184611aa3565b92915050565b611ad681611a21565b82525050565b6000602082019050611af16000830184611acd565b92915050565b600080600060608486031215611b1057611b0f6119b9565b5b6000611b1e86828701611a0c565b9350506020611b2f86828701611a0c565b9250506040611b4086828701611a42565b9150509250925092565b600060ff82169050919050565b611b6081611b4a565b82525050565b6000602082019050611b7b6000830184611b57565b92915050565b600060208284031215611b9757611b966119b9565b5b6000611ba584828501611a0c565b91505092915050565b611bb7816119e3565b82525050565b6000602082019050611bd26000830184611bae565b92915050565b60008060408385031215611bef57611bee6119b9565b5b6000611bfd85828601611a0c565b9250506020611c0e85828601611a0c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611c3d57611c3c611c18565b5b8235905067ffffffffffffffff811115611c5a57611c59611c1d565b5b602083019150836020820283011115611c7657611c75611c22565b5b9250929050565b600080600060408486031215611c9657611c956119b9565b5b600084013567ffffffffffffffff811115611cb457611cb36119be565b5b611cc086828701611c27565b93509350506020611cd386828701611a42565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d2457607f821691505b60208210811415611d3857611d37611cdd565b5b50919050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b6000611d74601983611909565b9150611d7f82611d3e565b602082019050919050565b60006020820190508181036000830152611da381611d67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611de482611a21565b9150611def83611a21565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e2457611e23611daa565b5b828201905092915050565b7f4e6f206d696e74206f7574000000000000000000000000000000000000000000600082015250565b6000611e65600b83611909565b9150611e7082611e2f565b602082019050919050565b60006020820190508181036000830152611e9481611e58565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611ef7602883611909565b9150611f0282611e9b565b604082019050919050565b60006020820190508181036000830152611f2681611eea565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f63602083611909565b9150611f6e82611f2d565b602082019050919050565b60006020820190508181036000830152611f9281611f56565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ff5602583611909565b915061200082611f99565b604082019050919050565b6000602082019050818103600083015261202481611fe8565b9050919050565b600061203682611a21565b915061204183611a21565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561207a57612079611daa565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006120bf82611a21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120f2576120f1611daa565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612159602683611909565b9150612164826120fd565b604082019050919050565b600060208201905081810360008301526121888161214c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121eb602483611909565b91506121f68261218f565b604082019050919050565b6000602082019050818103600083015261221a816121de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061227d602283611909565b915061228882612221565b604082019050919050565b600060208201905081810360008301526122ac81612270565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006122e9601f83611909565b91506122f4826122b3565b602082019050919050565b60006020820190508181036000830152612318816122dc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061237b602583611909565b91506123868261231f565b604082019050919050565b600060208201905081810360008301526123aa8161236e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061240d602383611909565b9150612418826123b1565b604082019050919050565b6000602082019050818103600083015261243c81612400565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061249f602683611909565b91506124aa82612443565b604082019050919050565b600060208201905081810360008301526124ce81612492565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612531602183611909565b915061253c826124d5565b604082019050919050565b6000602082019050818103600083015261256081612524565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006125c3602283611909565b91506125ce82612567565b604082019050919050565b600060208201905081810360008301526125f2816125b6565b9050919050565b600061260482611a21565b915061260f83611a21565b92508282101561262257612621611daa565b5b82820390509291505056fea2646970667358221220e19a13d9c086a2dff563e1e70f6753039269908bcddbc23ac5629dc2902d9efa64736f6c634300080a00336101206040523480156200001257600080fd5b5060405162000b2e38038062000b2e8339818101604052810190620000389190620001fc565b4283116200007d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000074906200030b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508260c0818152505060c0516000819055508160e0818152505080610100818152505050505050506200032d565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001448262000117565b9050919050565b6000620001588262000137565b9050919050565b6200016a816200014b565b81146200017657600080fd5b50565b6000815190506200018a816200015f565b92915050565b6200019b8162000137565b8114620001a757600080fd5b50565b600081519050620001bb8162000190565b92915050565b6000819050919050565b620001d681620001c1565b8114620001e257600080fd5b50565b600081519050620001f681620001cb565b92915050565b600080600080600060a086880312156200021b576200021a62000112565b5b60006200022b8882890162000179565b95505060206200023e88828901620001aa565b94505060406200025188828901620001e5565b93505060606200026488828901620001e5565b92505060806200027788828901620001e5565b9150509295509295909350565b600082825260208201905092915050565b7f546f6b656e54696d656c6f636b3a2072656c656173652074696d65206973206260008201527f65666f72652063757272656e742074696d650000000000000000000000000000602082015250565b6000620002f360328362000284565b9150620003008262000295565b604082019050919050565b600060208201905081810360008301526200032681620002e4565b9050919050565b60805160a05160c05160e051610100516107bd6200037160003960006101d1015260006101b0015260006102f30152600060b90152600061031b01526107bd6000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806338af3eed1461005157806386d1a69f1461006f578063b91d400114610079578063fc0c546a14610097575b600080fd5b6100596100b5565b6040516100669190610380565b60405180910390f35b6100776100dd565b005b6100816102ef565b60405161008e91906103b4565b60405180910390f35b61009f610317565b6040516100ac919061042e565b60405180910390f35b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6100e56102ef565b421015610127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161011e906104cc565b60405180910390fd5b6000610131610317565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016101699190610380565b602060405180830381865afa158015610186573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101aa919061051d565b905060007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000600054426101fe9190610579565b61020891906105ad565b6102129190610636565b905080821015610257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161024e906106d9565b60405180910390fd5b42600081905550610266610317565b73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6102896100b5565b836040518363ffffffff1660e01b81526004016102a79291906106f9565b6020604051808303816000875af11580156102c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ea919061075a565b505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061036a8261033f565b9050919050565b61037a8161035f565b82525050565b60006020820190506103956000830184610371565b92915050565b6000819050919050565b6103ae8161039b565b82525050565b60006020820190506103c960008301846103a5565b92915050565b6000819050919050565b60006103f46103ef6103ea8461033f565b6103cf565b61033f565b9050919050565b6000610406826103d9565b9050919050565b6000610418826103fb565b9050919050565b6104288161040d565b82525050565b6000602082019050610443600083018461041f565b92915050565b600082825260208201905092915050565b7f546f6b656e54696d656c6f636b3a2063757272656e742074696d65206973206260008201527f65666f72652072656c656173652074696d650000000000000000000000000000602082015250565b60006104b6603283610449565b91506104c18261045a565b604082019050919050565b600060208201905081810360008301526104e5816104a9565b9050919050565b600080fd5b6104fa8161039b565b811461050557600080fd5b50565b600081519050610517816104f1565b92915050565b600060208284031215610533576105326104ec565b5b600061054184828501610508565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006105848261039b565b915061058f8361039b565b9250828210156105a2576105a161054a565b5b828203905092915050565b60006105b88261039b565b91506105c38361039b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156105fc576105fb61054a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006106418261039b565b915061064c8361039b565b92508261065c5761065b610607565b5b828204905092915050565b7f546f6b656e54696d656c6f636b3a206e6f20746f6b656e7320746f2072656c6560008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b60006106c3602383610449565b91506106ce82610667565b604082019050919050565b600060208201905081810360008301526106f2816106b6565b9050919050565b600060408201905061070e6000830185610371565b61071b60208301846103a5565b9392505050565b60008115159050919050565b61073781610722565b811461074257600080fd5b50565b6000815190506107548161072e565b92915050565b6000602082840312156107705761076f6104ec565b5b600061077e84828501610745565b9150509291505056fea26469706673582212208eb76b74bdde3d356a0359d073d92eb6c690f8ab83a9c92ae0ad469843de1c5264736f6c634300080a00330000000000000000000000003845a62aaf5f89b5128718704cb077298baeca3a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806395d89b41116100b8578063da8c229e1161007c578063da8c229e14610350578063dd62ed3e14610380578063e3128e6f146103b0578063e916d2d4146103cc578063f2fde38b146103e8578063f6a74ed71461040457610137565b806395d89b411461029a5780639dc29fac146102b8578063a457c2d7146102d4578063a7fc7a0714610304578063a9059cbb1461032057610137565b8063313ce567116100ff578063313ce567146101f4578063395093511461021257806370a0823114610242578063715018a6146102725780638da5cb5b1461027c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a5780631aedf3d4146101a857806323b872dd146101c4575b600080fd5b610144610420565b6040516101519190611997565b60405180910390f35b610174600480360381019061016f9190611a57565b6104b2565b6040516101819190611ab2565b60405180910390f35b6101926104d0565b60405161019f9190611adc565b60405180910390f35b6101c260048036038101906101bd9190611a57565b6104da565b005b6101de60048036038101906101d99190611af7565b6105eb565b6040516101eb9190611ab2565b60405180910390f35b6101fc6106e3565b6040516102099190611b66565b60405180910390f35b61022c60048036038101906102279190611a57565b6106ec565b6040516102399190611ab2565b60405180910390f35b61025c60048036038101906102579190611b81565b610798565b6040516102699190611adc565b60405180910390f35b61027a6107e0565b005b610284610868565b6040516102919190611bbd565b60405180910390f35b6102a2610892565b6040516102af9190611997565b60405180910390f35b6102d260048036038101906102cd9190611a57565b610924565b005b6102ee60048036038101906102e99190611a57565b6109c5565b6040516102fb9190611ab2565b60405180910390f35b61031e60048036038101906103199190611b81565b610ab0565b005b61033a60048036038101906103359190611a57565b610b87565b6040516103479190611ab2565b60405180910390f35b61036a60048036038101906103659190611b81565b610ba5565b6040516103779190611ab2565b60405180910390f35b61039a60048036038101906103959190611bd8565b610bc5565b6040516103a79190611adc565b60405180910390f35b6103ca60048036038101906103c59190611a57565b610c4c565b005b6103e660048036038101906103e19190611c7d565b610d5d565b005b61040260048036038101906103fd9190611b81565b610ed4565b005b61041e60048036038101906104199190611b81565b610fcc565b005b60606003805461042f90611d0c565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90611d0c565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104c66104bf6110a3565b84846110ab565b6001905092915050565b6000600254905090565b600660006104e66110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661056d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056490611d8a565b60405180910390fd5b6b06765c793fa10079d0000000816007546105889190611dd9565b11156105c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c090611e7b565b60405180910390fd5b806007546105d79190611dd9565b6007819055506105e78282611276565b5050565b60006105f88484846113d6565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106436110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ba90611f0d565b60405180910390fd5b6106d7856106cf6110a3565b8584036110ab565b60019150509392505050565b60006012905090565b600061078e6106f96110a3565b8484600160006107076110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107899190611dd9565b6110ab565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e86110a3565b73ffffffffffffffffffffffffffffffffffffffff16610806610868565b73ffffffffffffffffffffffffffffffffffffffff161461085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390611f79565b60405180910390fd5b6108666000611657565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108a190611d0c565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd90611d0c565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b5050505050905090565b600660006109306110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae90611d8a565b60405180910390fd5b6109c1828261171d565b5050565b600080600160006109d46110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a889061200b565b60405180910390fd5b610aa5610a9c6110a3565b858584036110ab565b600191505092915050565b610ab86110a3565b73ffffffffffffffffffffffffffffffffffffffff16610ad6610868565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611f79565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610b9b610b946110a3565b84846113d6565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60066000610c586110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611d8a565b60405180910390fd5b6b07c13bc4b2c133c56000000081600854610cfa9190611dd9565b1115610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290611e7b565b60405180910390fd5b80600854610d499190611dd9565b600881905550610d598282611276565b5050565b60066000610d696110a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790611d8a565b60405180910390fd5b6b06765c793fa10079d00000008383905082610e0c919061202b565b600754610e199190611dd9565b1115610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190611e7b565b60405180910390fd5b8282905081610e69919061202b565b600754610e769190611dd9565b60078190555060005b83839050811015610ece57610ebb848483818110610ea057610e9f612085565b5b9050602002016020810190610eb59190611b81565b83611276565b8080610ec6906120b4565b915050610e7f565b50505050565b610edc6110a3565b73ffffffffffffffffffffffffffffffffffffffff16610efa610868565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790611f79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb79061216f565b60405180910390fd5b610fc981611657565b50565b610fd46110a3565b73ffffffffffffffffffffffffffffffffffffffff16610ff2610868565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90611f79565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290612201565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612293565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112699190611adc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906122ff565b60405180910390fd5b6112f2600083836118f4565b80600260008282546113049190611dd9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113599190611dd9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113be9190611adc565b60405180910390a36113d2600083836118f9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90612391565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90612423565b60405180910390fd5b6114c18383836118f4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e906124b5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115da9190611dd9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161163e9190611adc565b60405180910390a36116518484846118f9565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490612547565b60405180910390fd5b611799826000836118f4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561181f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611816906125d9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461187691906125f9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118db9190611adc565b60405180910390a36118ef836000846118f9565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561193857808201518184015260208101905061191d565b83811115611947576000848401525b50505050565b6000601f19601f8301169050919050565b6000611969826118fe565b6119738185611909565b935061198381856020860161191a565b61198c8161194d565b840191505092915050565b600060208201905081810360008301526119b1818461195e565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119ee826119c3565b9050919050565b6119fe816119e3565b8114611a0957600080fd5b50565b600081359050611a1b816119f5565b92915050565b6000819050919050565b611a3481611a21565b8114611a3f57600080fd5b50565b600081359050611a5181611a2b565b92915050565b60008060408385031215611a6e57611a6d6119b9565b5b6000611a7c85828601611a0c565b9250506020611a8d85828601611a42565b9150509250929050565b60008115159050919050565b611aac81611a97565b82525050565b6000602082019050611ac76000830184611aa3565b92915050565b611ad681611a21565b82525050565b6000602082019050611af16000830184611acd565b92915050565b600080600060608486031215611b1057611b0f6119b9565b5b6000611b1e86828701611a0c565b9350506020611b2f86828701611a0c565b9250506040611b4086828701611a42565b9150509250925092565b600060ff82169050919050565b611b6081611b4a565b82525050565b6000602082019050611b7b6000830184611b57565b92915050565b600060208284031215611b9757611b966119b9565b5b6000611ba584828501611a0c565b91505092915050565b611bb7816119e3565b82525050565b6000602082019050611bd26000830184611bae565b92915050565b60008060408385031215611bef57611bee6119b9565b5b6000611bfd85828601611a0c565b9250506020611c0e85828601611a0c565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112611c3d57611c3c611c18565b5b8235905067ffffffffffffffff811115611c5a57611c59611c1d565b5b602083019150836020820283011115611c7657611c75611c22565b5b9250929050565b600080600060408486031215611c9657611c956119b9565b5b600084013567ffffffffffffffff811115611cb457611cb36119be565b5b611cc086828701611c27565b93509350506020611cd386828701611a42565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d2457607f821691505b60208210811415611d3857611d37611cdd565b5b50919050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b6000611d74601983611909565b9150611d7f82611d3e565b602082019050919050565b60006020820190508181036000830152611da381611d67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611de482611a21565b9150611def83611a21565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e2457611e23611daa565b5b828201905092915050565b7f4e6f206d696e74206f7574000000000000000000000000000000000000000000600082015250565b6000611e65600b83611909565b9150611e7082611e2f565b602082019050919050565b60006020820190508181036000830152611e9481611e58565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611ef7602883611909565b9150611f0282611e9b565b604082019050919050565b60006020820190508181036000830152611f2681611eea565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f63602083611909565b9150611f6e82611f2d565b602082019050919050565b60006020820190508181036000830152611f9281611f56565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ff5602583611909565b915061200082611f99565b604082019050919050565b6000602082019050818103600083015261202481611fe8565b9050919050565b600061203682611a21565b915061204183611a21565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561207a57612079611daa565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006120bf82611a21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120f2576120f1611daa565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612159602683611909565b9150612164826120fd565b604082019050919050565b600060208201905081810360008301526121888161214c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121eb602483611909565b91506121f68261218f565b604082019050919050565b6000602082019050818103600083015261221a816121de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061227d602283611909565b915061228882612221565b604082019050919050565b600060208201905081810360008301526122ac81612270565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006122e9601f83611909565b91506122f4826122b3565b602082019050919050565b60006020820190508181036000830152612318816122dc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061237b602583611909565b91506123868261231f565b604082019050919050565b600060208201905081810360008301526123aa8161236e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061240d602383611909565b9150612418826123b1565b604082019050919050565b6000602082019050818103600083015261243c81612400565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061249f602683611909565b91506124aa82612443565b604082019050919050565b600060208201905081810360008301526124ce81612492565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612531602183611909565b915061253c826124d5565b604082019050919050565b6000602082019050818103600083015261256081612524565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006125c3602283611909565b91506125ce82612567565b604082019050919050565b600060208201905081810360008301526125f2816125b6565b9050919050565b600061260482611a21565b915061260f83611a21565b92508282101561262257612621611daa565b5b82820390509291505056fea2646970667358221220e19a13d9c086a2dff563e1e70f6753039269908bcddbc23ac5629dc2902d9efa64736f6c634300080a0033

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

0000000000000000000000003845a62aaf5f89b5128718704cb077298baeca3a

-----Decoded View---------------
Arg [0] : developerAccount (address): 0x3845A62AAF5F89b5128718704cb077298BAEca3a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003845a62aaf5f89b5128718704cb077298baeca3a


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.