ETH Price: $3,245.23 (-0.42%)
Gas: 1 Gwei

Token

INKzToken (INKz)
 

Overview

Max Total Supply

336,864.227222222222222158 INKz

Holders

114

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
hungle.eth
Balance
619.630925925925925925 INKz

Value
$0.00
0x95b2Ea62D8716C84c5aAC6a3f16BAbb56AaBd29f
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:
INKzToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : INKz.sol
pragma solidity ^0.8.0;

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

interface iOctoHedz {
    function balanceOf(address owner) external view returns(uint256);
}

contract INKzToken is ERC20, ERC20Burnable, Ownable {

    iOctoHedz public OctoHedz;
    uint256 constant public INKZ_RATE = 8 ether;
    uint256 public START;
    uint256 constant public END = 1892199600;
    bool inkzPaused = false;
    
    mapping(address => uint256) public rewards;
    mapping(address => uint256) public lastUpdate;

    mapping(address => bool) public allowedAddresses;

    constructor(address octohedzAddress) ERC20("INKzToken", "INKz") {
        OctoHedz = iOctoHedz(octohedzAddress);
        START = block.timestamp - (38 days);
    }

    function toggleReward() public onlyOwner {
        inkzPaused = !inkzPaused;
    }

    function updateReward(address from, address to) external {
        require(msg.sender == address(OctoHedz));
        if(from != address(0)){
            rewards[from] += getPendingReward(from);
            lastUpdate[from] = block.timestamp;
        }
        if(to != address(0)){
            rewards[to] += getPendingReward(to);
            lastUpdate[to] = block.timestamp;
        }
    }

    function claimReward() external {
        require(!inkzPaused, "Claiming INKz must be active");
        require(block.timestamp <= END, "Date exceeds the max limit");
        _mint(msg.sender, rewards[msg.sender] + getPendingReward(msg.sender));
        rewards[msg.sender] = 0;
        lastUpdate[msg.sender] = block.timestamp;
    }

   
    function claimINKzRewards(address _address, uint256 _amount) external {
        require(!inkzPaused, "Claiming reward has been paused");
        require(allowedAddresses[msg.sender], "Address does not have permission to distrubute tokens");
        _mint(_address, _amount);
    }

    function burn(address user, uint256 amount) external {
        require(allowedAddresses[msg.sender] || msg.sender == address(OctoHedz), "Address does not have permission to burn");
        _burn(user, amount);
    }

    function getTotalClaimable(address user) external view returns(uint256) {
        return rewards[user] + getPendingReward(user);
    }



    function getPendingReward(address user) internal view returns(uint256) {
        return OctoHedz.balanceOf(user) * INKZ_RATE * (block.timestamp - (lastUpdate[user] >= START ? lastUpdate[user] : START)) / 86400;
    }
  

    function setAllowedAddresses(address _address, bool _access) public onlyOwner {
        allowedAddresses[_address] = _access;
    }
}

File 2 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 guidelines: functions revert instead
 * of 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 3 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);
    }
}

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

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 : 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 : 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 7 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"octohedzAddress","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":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INKZ_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OctoHedz","outputs":[{"internalType":"contract iOctoHedz","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"address"}],"name":"allowedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"user","type":"address"},{"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":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"claimINKzRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_access","type":"bool"}],"name":"setAllowedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620032a7380380620032a7833981810160405281019062000052919062000306565b6040518060400160405280600981526020017f494e4b7a546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f494e4b7a000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d69291906200023f565b508060049080519060200190620000ef9291906200023f565b50505062000112620001066200017160201b60201c565b6200017960201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550623219004262000164919062000332565b6007819055505062000459565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024d90620003ab565b90600052602060002090601f016020900481019282620002715760008555620002bd565b82601f106200028c57805160ff1916838001178555620002bd565b82800160010185558215620002bd579182015b82811115620002bc5782518255916020019190600101906200029f565b5b509050620002cc9190620002d0565b5090565b5b80821115620002eb576000816000905550600101620002d1565b5090565b60008151905062000300816200043f565b92915050565b6000602082840312156200031957600080fd5b60006200032984828501620002ef565b91505092915050565b60006200033f82620003a1565b91506200034c83620003a1565b925082821015620003625762000361620003e1565b5b828203905092915050565b60006200037a8262000381565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620003c457607f821691505b60208210811415620003db57620003da62000410565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200044a816200036d565b81146200045657600080fd5b50565b612e3e80620004696000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063ba9a061a116100a2578063e808e3ff11610071578063e808e3ff14610569578063ef537f1f14610587578063efe7a504146105a5578063f2fde38b146105c3576101da565b8063ba9a061a146104cf578063cb03fb1e146104ed578063d230af3a1461051d578063dd62ed3e14610539576101da565b8063a457c2d7116100de578063a457c2d71461045b578063a9059cbb1461048b578063ac8724cf146104bb578063b88a802f146104c5576101da565b80638da5cb5b1461040357806395d89b41146104215780639dc29fac1461043f576101da565b8063395093511161017c57806370a082311161014b57806370a0823114610391578063715018a6146103c157806379cc6790146103cb57806389781912146103e7576101da565b806339509351146102f95780634120657a146103295780634218ffa41461035957806342966c6814610375576101da565b806318160ddd116101b857806318160ddd1461025d57806323b872dd1461027b578063267e8ab6146102ab578063313ce567146102db576101da565b806306fdde03146101df5780630700037d146101fd578063095ea7b31461022d575b600080fd5b6101e76105df565b6040516101f491906123ae565b60405180910390f35b61021760048036038101906102129190611ee5565b610671565b6040516102249190612610565b60405180910390f35b61024760048036038101906102429190611fd5565b610689565b6040516102549190612378565b60405180910390f35b6102656106a7565b6040516102729190612610565b60405180910390f35b61029560048036038101906102909190611f4a565b6106b1565b6040516102a29190612378565b60405180910390f35b6102c560048036038101906102c09190611ee5565b6107a9565b6040516102d29190612610565b60405180910390f35b6102e3610805565b6040516102f0919061262b565b60405180910390f35b610313600480360381019061030e9190611fd5565b61080e565b6040516103209190612378565b60405180910390f35b610343600480360381019061033e9190611ee5565b6108ba565b6040516103509190612378565b60405180910390f35b610373600480360381019061036e9190611fd5565b6108da565b005b61038f600480360381019061038a9190612011565b6109c4565b005b6103ab60048036038101906103a69190611ee5565b6109d8565b6040516103b89190612610565b60405180910390f35b6103c9610a20565b005b6103e560048036038101906103e09190611fd5565b610aa8565b005b61040160048036038101906103fc9190611f99565b610b23565b005b61040b610bfa565b604051610418919061235d565b60405180910390f35b610429610c24565b60405161043691906123ae565b60405180910390f35b61045960048036038101906104549190611fd5565b610cb6565b005b61047560048036038101906104709190611fd5565b610da8565b6040516104829190612378565b60405180910390f35b6104a560048036038101906104a09190611fd5565b610e93565b6040516104b29190612378565b60405180910390f35b6104c3610eb1565b005b6104cd610f59565b005b6104d76110d7565b6040516104e49190612610565b60405180910390f35b61050760048036038101906105029190611ee5565b6110dd565b6040516105149190612610565b60405180910390f35b61053760048036038101906105329190611f0e565b6110f5565b005b610553600480360381019061054e9190611f0e565b611301565b6040516105609190612610565b60405180910390f35b610571611388565b60405161057e9190612610565b60405180910390f35b61058f611394565b60405161059c9190612393565b60405180910390f35b6105ad6113ba565b6040516105ba9190612610565b60405180910390f35b6105dd60048036038101906105d89190611ee5565b6113c2565b005b6060600380546105ee90612823565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90612823565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b60096020528060005260406000206000915090505481565b600061069d6106966114ba565b84846114c2565b6001905092915050565b6000600254905090565b60006106be84848461168d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107096114ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090612510565b60405180910390fd5b61079d856107956114ba565b8584036114c2565b60019150509392505050565b60006107b48261190e565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107fe9190612662565b9050919050565b60006012905090565b60006108b061081b6114ba565b8484600160006108296114ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108ab9190612662565b6114c2565b6001905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900460ff161561092a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610921906124b0565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90612490565b60405180910390fd5b6109c08282611a8a565b5050565b6109d56109cf6114ba565b82611bea565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a286114ba565b73ffffffffffffffffffffffffffffffffffffffff16610a46610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390612530565b60405180910390fd5b610aa66000611dc1565b565b6000610abb83610ab66114ba565b611301565b905081811015610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612550565b60405180910390fd5b610b1483610b0c6114ba565b8484036114c2565b610b1e8383611bea565b505050565b610b2b6114ba565b73ffffffffffffffffffffffffffffffffffffffff16610b49610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612530565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c3390612823565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f90612823565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b5050505050905090565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d5b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190612450565b60405180910390fd5b610da48282611bea565b5050565b60008060016000610db76114ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906125d0565b60405180910390fd5b610e88610e7f6114ba565b858584036114c2565b600191505092915050565b6000610ea7610ea06114ba565b848461168d565b6001905092915050565b610eb96114ba565b73ffffffffffffffffffffffffffffffffffffffff16610ed7610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490612530565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600860009054906101000a900460ff1615610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906124d0565b60405180910390fd5b6370c8acb0421115610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906124f0565b60405180910390fd5b61104c33610ffd3361190e565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110479190612662565b611a8a565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b60075481565b600a6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112265761118c8261190e565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111da9190612662565b9250508190555042600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112fd576112638161190e565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b19190612662565b9250508190555042600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b676f05b59d3b20000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6370c8acb081565b6113ca6114ba565b73ffffffffffffffffffffffffffffffffffffffff166113e8610bfa565b73ffffffffffffffffffffffffffffffffffffffff161461143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590612530565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590612410565b60405180910390fd5b6114b781611dc1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611532576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611529906125b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990612430565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116809190612610565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611764906123d0565b60405180910390fd5b611778838383611e87565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590612470565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118919190612662565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118f59190612610565b60405180910390a3611908848484611e8c565b50505050565b600062015180600754600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611965576007546119a6565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b426119b19190612743565b676f05b59d3b200000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401611a15919061235d565b60206040518083038186803b158015611a2d57600080fd5b505afa158015611a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a65919061203a565b611a6f91906126e9565b611a7991906126e9565b611a8391906126b8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af1906125f0565b60405180910390fd5b611b0660008383611e87565b8060026000828254611b189190612662565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6d9190612662565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bd29190612610565b60405180910390a3611be660008383611e8c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190612570565b60405180910390fd5b611c6682600083611e87565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906123f0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611d439190612743565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611da89190612610565b60405180910390a3611dbc83600084611e8c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611ea081612dc3565b92915050565b600081359050611eb581612dda565b92915050565b600081359050611eca81612df1565b92915050565b600081519050611edf81612df1565b92915050565b600060208284031215611ef757600080fd5b6000611f0584828501611e91565b91505092915050565b60008060408385031215611f2157600080fd5b6000611f2f85828601611e91565b9250506020611f4085828601611e91565b9150509250929050565b600080600060608486031215611f5f57600080fd5b6000611f6d86828701611e91565b9350506020611f7e86828701611e91565b9250506040611f8f86828701611ebb565b9150509250925092565b60008060408385031215611fac57600080fd5b6000611fba85828601611e91565b9250506020611fcb85828601611ea6565b9150509250929050565b60008060408385031215611fe857600080fd5b6000611ff685828601611e91565b925050602061200785828601611ebb565b9150509250929050565b60006020828403121561202357600080fd5b600061203184828501611ebb565b91505092915050565b60006020828403121561204c57600080fd5b600061205a84828501611ed0565b91505092915050565b61206c81612777565b82525050565b61207b81612789565b82525050565b61208a816127cc565b82525050565b600061209b82612646565b6120a58185612651565b93506120b58185602086016127f0565b6120be816128e2565b840191505092915050565b60006120d6602383612651565b91506120e1826128f3565b604082019050919050565b60006120f9602283612651565b915061210482612942565b604082019050919050565b600061211c602683612651565b915061212782612991565b604082019050919050565b600061213f602283612651565b915061214a826129e0565b604082019050919050565b6000612162602883612651565b915061216d82612a2f565b604082019050919050565b6000612185602683612651565b915061219082612a7e565b604082019050919050565b60006121a8603583612651565b91506121b382612acd565b604082019050919050565b60006121cb601f83612651565b91506121d682612b1c565b602082019050919050565b60006121ee601c83612651565b91506121f982612b45565b602082019050919050565b6000612211601a83612651565b915061221c82612b6e565b602082019050919050565b6000612234602883612651565b915061223f82612b97565b604082019050919050565b6000612257602083612651565b915061226282612be6565b602082019050919050565b600061227a602483612651565b915061228582612c0f565b604082019050919050565b600061229d602183612651565b91506122a882612c5e565b604082019050919050565b60006122c0602583612651565b91506122cb82612cad565b604082019050919050565b60006122e3602483612651565b91506122ee82612cfc565b604082019050919050565b6000612306602583612651565b915061231182612d4b565b604082019050919050565b6000612329601f83612651565b915061233482612d9a565b602082019050919050565b612348816127b5565b82525050565b612357816127bf565b82525050565b60006020820190506123726000830184612063565b92915050565b600060208201905061238d6000830184612072565b92915050565b60006020820190506123a86000830184612081565b92915050565b600060208201905081810360008301526123c88184612090565b905092915050565b600060208201905081810360008301526123e9816120c9565b9050919050565b60006020820190508181036000830152612409816120ec565b9050919050565b600060208201905081810360008301526124298161210f565b9050919050565b6000602082019050818103600083015261244981612132565b9050919050565b6000602082019050818103600083015261246981612155565b9050919050565b6000602082019050818103600083015261248981612178565b9050919050565b600060208201905081810360008301526124a98161219b565b9050919050565b600060208201905081810360008301526124c9816121be565b9050919050565b600060208201905081810360008301526124e9816121e1565b9050919050565b6000602082019050818103600083015261250981612204565b9050919050565b6000602082019050818103600083015261252981612227565b9050919050565b600060208201905081810360008301526125498161224a565b9050919050565b600060208201905081810360008301526125698161226d565b9050919050565b6000602082019050818103600083015261258981612290565b9050919050565b600060208201905081810360008301526125a9816122b3565b9050919050565b600060208201905081810360008301526125c9816122d6565b9050919050565b600060208201905081810360008301526125e9816122f9565b9050919050565b600060208201905081810360008301526126098161231c565b9050919050565b6000602082019050612625600083018461233f565b92915050565b6000602082019050612640600083018461234e565b92915050565b600081519050919050565b600082825260208201905092915050565b600061266d826127b5565b9150612678836127b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126ad576126ac612855565b5b828201905092915050565b60006126c3826127b5565b91506126ce836127b5565b9250826126de576126dd612884565b5b828204905092915050565b60006126f4826127b5565b91506126ff836127b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561273857612737612855565b5b828202905092915050565b600061274e826127b5565b9150612759836127b5565b92508282101561276c5761276b612855565b5b828203905092915050565b600061278282612795565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006127d7826127de565b9050919050565b60006127e982612795565b9050919050565b60005b8381101561280e5780820151818401526020810190506127f3565b8381111561281d576000848401525b50505050565b6000600282049050600182168061283b57607f821691505b6020821081141561284f5761284e6128b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206275726e000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206469737472756275746520746f6b656e730000000000000000000000602082015250565b7f436c61696d696e672072657761726420686173206265656e2070617573656400600082015250565b7f436c61696d696e6720494e4b7a206d7573742062652061637469766500000000600082015250565b7f44617465206578636565647320746865206d6178206c696d6974000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612dcc81612777565b8114612dd757600080fd5b50565b612de381612789565b8114612dee57600080fd5b50565b612dfa816127b5565b8114612e0557600080fd5b5056fea264697066735822122040fc1421f45faf0566961ff360afc7bdcbb4f58e94f579a57ae0e08b6cb4df4b64736f6c634300080400330000000000000000000000006e5a65b5f9dd7b1b08ff212e210dcd642de0db8b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063ba9a061a116100a2578063e808e3ff11610071578063e808e3ff14610569578063ef537f1f14610587578063efe7a504146105a5578063f2fde38b146105c3576101da565b8063ba9a061a146104cf578063cb03fb1e146104ed578063d230af3a1461051d578063dd62ed3e14610539576101da565b8063a457c2d7116100de578063a457c2d71461045b578063a9059cbb1461048b578063ac8724cf146104bb578063b88a802f146104c5576101da565b80638da5cb5b1461040357806395d89b41146104215780639dc29fac1461043f576101da565b8063395093511161017c57806370a082311161014b57806370a0823114610391578063715018a6146103c157806379cc6790146103cb57806389781912146103e7576101da565b806339509351146102f95780634120657a146103295780634218ffa41461035957806342966c6814610375576101da565b806318160ddd116101b857806318160ddd1461025d57806323b872dd1461027b578063267e8ab6146102ab578063313ce567146102db576101da565b806306fdde03146101df5780630700037d146101fd578063095ea7b31461022d575b600080fd5b6101e76105df565b6040516101f491906123ae565b60405180910390f35b61021760048036038101906102129190611ee5565b610671565b6040516102249190612610565b60405180910390f35b61024760048036038101906102429190611fd5565b610689565b6040516102549190612378565b60405180910390f35b6102656106a7565b6040516102729190612610565b60405180910390f35b61029560048036038101906102909190611f4a565b6106b1565b6040516102a29190612378565b60405180910390f35b6102c560048036038101906102c09190611ee5565b6107a9565b6040516102d29190612610565b60405180910390f35b6102e3610805565b6040516102f0919061262b565b60405180910390f35b610313600480360381019061030e9190611fd5565b61080e565b6040516103209190612378565b60405180910390f35b610343600480360381019061033e9190611ee5565b6108ba565b6040516103509190612378565b60405180910390f35b610373600480360381019061036e9190611fd5565b6108da565b005b61038f600480360381019061038a9190612011565b6109c4565b005b6103ab60048036038101906103a69190611ee5565b6109d8565b6040516103b89190612610565b60405180910390f35b6103c9610a20565b005b6103e560048036038101906103e09190611fd5565b610aa8565b005b61040160048036038101906103fc9190611f99565b610b23565b005b61040b610bfa565b604051610418919061235d565b60405180910390f35b610429610c24565b60405161043691906123ae565b60405180910390f35b61045960048036038101906104549190611fd5565b610cb6565b005b61047560048036038101906104709190611fd5565b610da8565b6040516104829190612378565b60405180910390f35b6104a560048036038101906104a09190611fd5565b610e93565b6040516104b29190612378565b60405180910390f35b6104c3610eb1565b005b6104cd610f59565b005b6104d76110d7565b6040516104e49190612610565b60405180910390f35b61050760048036038101906105029190611ee5565b6110dd565b6040516105149190612610565b60405180910390f35b61053760048036038101906105329190611f0e565b6110f5565b005b610553600480360381019061054e9190611f0e565b611301565b6040516105609190612610565b60405180910390f35b610571611388565b60405161057e9190612610565b60405180910390f35b61058f611394565b60405161059c9190612393565b60405180910390f35b6105ad6113ba565b6040516105ba9190612610565b60405180910390f35b6105dd60048036038101906105d89190611ee5565b6113c2565b005b6060600380546105ee90612823565b80601f016020809104026020016040519081016040528092919081815260200182805461061a90612823565b80156106675780601f1061063c57610100808354040283529160200191610667565b820191906000526020600020905b81548152906001019060200180831161064a57829003601f168201915b5050505050905090565b60096020528060005260406000206000915090505481565b600061069d6106966114ba565b84846114c2565b6001905092915050565b6000600254905090565b60006106be84848461168d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107096114ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090612510565b60405180910390fd5b61079d856107956114ba565b8584036114c2565b60019150509392505050565b60006107b48261190e565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107fe9190612662565b9050919050565b60006012905090565b60006108b061081b6114ba565b8484600160006108296114ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108ab9190612662565b6114c2565b6001905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600860009054906101000a900460ff161561092a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610921906124b0565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90612490565b60405180910390fd5b6109c08282611a8a565b5050565b6109d56109cf6114ba565b82611bea565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a286114ba565b73ffffffffffffffffffffffffffffffffffffffff16610a46610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390612530565b60405180910390fd5b610aa66000611dc1565b565b6000610abb83610ab66114ba565b611301565b905081811015610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612550565b60405180910390fd5b610b1483610b0c6114ba565b8484036114c2565b610b1e8383611bea565b505050565b610b2b6114ba565b73ffffffffffffffffffffffffffffffffffffffff16610b49610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612530565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c3390612823565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f90612823565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b5050505050905090565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610d5b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190612450565b60405180910390fd5b610da48282611bea565b5050565b60008060016000610db76114ba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906125d0565b60405180910390fd5b610e88610e7f6114ba565b858584036114c2565b600191505092915050565b6000610ea7610ea06114ba565b848461168d565b6001905092915050565b610eb96114ba565b73ffffffffffffffffffffffffffffffffffffffff16610ed7610bfa565b73ffffffffffffffffffffffffffffffffffffffff1614610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490612530565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600860009054906101000a900460ff1615610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa0906124d0565b60405180910390fd5b6370c8acb0421115610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906124f0565b60405180910390fd5b61104c33610ffd3361190e565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110479190612662565b611a8a565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b60075481565b600a6020528060005260406000206000915090505481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461114f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112265761118c8261190e565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111da9190612662565b9250508190555042600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112fd576112638161190e565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b19190612662565b9250508190555042600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b676f05b59d3b20000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6370c8acb081565b6113ca6114ba565b73ffffffffffffffffffffffffffffffffffffffff166113e8610bfa565b73ffffffffffffffffffffffffffffffffffffffff161461143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590612530565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590612410565b60405180910390fd5b6114b781611dc1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611532576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611529906125b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990612430565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116809190612610565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611764906123d0565b60405180910390fd5b611778838383611e87565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f590612470565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118919190612662565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118f59190612610565b60405180910390a3611908848484611e8c565b50505050565b600062015180600754600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611965576007546119a6565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b426119b19190612743565b676f05b59d3b200000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401611a15919061235d565b60206040518083038186803b158015611a2d57600080fd5b505afa158015611a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a65919061203a565b611a6f91906126e9565b611a7991906126e9565b611a8391906126b8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af1906125f0565b60405180910390fd5b611b0660008383611e87565b8060026000828254611b189190612662565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6d9190612662565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bd29190612610565b60405180910390a3611be660008383611e8c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190612570565b60405180910390fd5b611c6682600083611e87565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906123f0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611d439190612743565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611da89190612610565b60405180910390a3611dbc83600084611e8c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611ea081612dc3565b92915050565b600081359050611eb581612dda565b92915050565b600081359050611eca81612df1565b92915050565b600081519050611edf81612df1565b92915050565b600060208284031215611ef757600080fd5b6000611f0584828501611e91565b91505092915050565b60008060408385031215611f2157600080fd5b6000611f2f85828601611e91565b9250506020611f4085828601611e91565b9150509250929050565b600080600060608486031215611f5f57600080fd5b6000611f6d86828701611e91565b9350506020611f7e86828701611e91565b9250506040611f8f86828701611ebb565b9150509250925092565b60008060408385031215611fac57600080fd5b6000611fba85828601611e91565b9250506020611fcb85828601611ea6565b9150509250929050565b60008060408385031215611fe857600080fd5b6000611ff685828601611e91565b925050602061200785828601611ebb565b9150509250929050565b60006020828403121561202357600080fd5b600061203184828501611ebb565b91505092915050565b60006020828403121561204c57600080fd5b600061205a84828501611ed0565b91505092915050565b61206c81612777565b82525050565b61207b81612789565b82525050565b61208a816127cc565b82525050565b600061209b82612646565b6120a58185612651565b93506120b58185602086016127f0565b6120be816128e2565b840191505092915050565b60006120d6602383612651565b91506120e1826128f3565b604082019050919050565b60006120f9602283612651565b915061210482612942565b604082019050919050565b600061211c602683612651565b915061212782612991565b604082019050919050565b600061213f602283612651565b915061214a826129e0565b604082019050919050565b6000612162602883612651565b915061216d82612a2f565b604082019050919050565b6000612185602683612651565b915061219082612a7e565b604082019050919050565b60006121a8603583612651565b91506121b382612acd565b604082019050919050565b60006121cb601f83612651565b91506121d682612b1c565b602082019050919050565b60006121ee601c83612651565b91506121f982612b45565b602082019050919050565b6000612211601a83612651565b915061221c82612b6e565b602082019050919050565b6000612234602883612651565b915061223f82612b97565b604082019050919050565b6000612257602083612651565b915061226282612be6565b602082019050919050565b600061227a602483612651565b915061228582612c0f565b604082019050919050565b600061229d602183612651565b91506122a882612c5e565b604082019050919050565b60006122c0602583612651565b91506122cb82612cad565b604082019050919050565b60006122e3602483612651565b91506122ee82612cfc565b604082019050919050565b6000612306602583612651565b915061231182612d4b565b604082019050919050565b6000612329601f83612651565b915061233482612d9a565b602082019050919050565b612348816127b5565b82525050565b612357816127bf565b82525050565b60006020820190506123726000830184612063565b92915050565b600060208201905061238d6000830184612072565b92915050565b60006020820190506123a86000830184612081565b92915050565b600060208201905081810360008301526123c88184612090565b905092915050565b600060208201905081810360008301526123e9816120c9565b9050919050565b60006020820190508181036000830152612409816120ec565b9050919050565b600060208201905081810360008301526124298161210f565b9050919050565b6000602082019050818103600083015261244981612132565b9050919050565b6000602082019050818103600083015261246981612155565b9050919050565b6000602082019050818103600083015261248981612178565b9050919050565b600060208201905081810360008301526124a98161219b565b9050919050565b600060208201905081810360008301526124c9816121be565b9050919050565b600060208201905081810360008301526124e9816121e1565b9050919050565b6000602082019050818103600083015261250981612204565b9050919050565b6000602082019050818103600083015261252981612227565b9050919050565b600060208201905081810360008301526125498161224a565b9050919050565b600060208201905081810360008301526125698161226d565b9050919050565b6000602082019050818103600083015261258981612290565b9050919050565b600060208201905081810360008301526125a9816122b3565b9050919050565b600060208201905081810360008301526125c9816122d6565b9050919050565b600060208201905081810360008301526125e9816122f9565b9050919050565b600060208201905081810360008301526126098161231c565b9050919050565b6000602082019050612625600083018461233f565b92915050565b6000602082019050612640600083018461234e565b92915050565b600081519050919050565b600082825260208201905092915050565b600061266d826127b5565b9150612678836127b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126ad576126ac612855565b5b828201905092915050565b60006126c3826127b5565b91506126ce836127b5565b9250826126de576126dd612884565b5b828204905092915050565b60006126f4826127b5565b91506126ff836127b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561273857612737612855565b5b828202905092915050565b600061274e826127b5565b9150612759836127b5565b92508282101561276c5761276b612855565b5b828203905092915050565b600061278282612795565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006127d7826127de565b9050919050565b60006127e982612795565b9050919050565b60005b8381101561280e5780820151818401526020810190506127f3565b8381111561281d576000848401525b50505050565b6000600282049050600182168061283b57607f821691505b6020821081141561284f5761284e6128b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206275726e000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f742068617665207065726d697373696f6e60008201527f20746f206469737472756275746520746f6b656e730000000000000000000000602082015250565b7f436c61696d696e672072657761726420686173206265656e2070617573656400600082015250565b7f436c61696d696e6720494e4b7a206d7573742062652061637469766500000000600082015250565b7f44617465206578636565647320746865206d6178206c696d6974000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612dcc81612777565b8114612dd757600080fd5b50565b612de381612789565b8114612dee57600080fd5b50565b612dfa816127b5565b8114612e0557600080fd5b5056fea264697066735822122040fc1421f45faf0566961ff360afc7bdcbb4f58e94f579a57ae0e08b6cb4df4b64736f6c63430008040033

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

0000000000000000000000006e5a65b5f9dd7b1b08ff212e210dcd642de0db8b

-----Decoded View---------------
Arg [0] : octohedzAddress (address): 0x6E5a65B5f9Dd7b1b08Ff212E210DCd642DE0db8B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006e5a65b5f9dd7b1b08ff212e210dcd642de0db8b


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.