ETH Price: $3,092.95 (+5.02%)
Gas: 2 Gwei

Token

Sipher Token (SIPHER)
 

Overview

Max Total Supply

114,340,911 SIPHER

Holders

7,594 (0.00%)

Market

Price

$0.37 @ 0.000120 ETH (+16.67%)

Onchain Market Cap

$42,333,578.89

Circulating Supply Market Cap

$35,492,158.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
884.48515267608524067 SIPHER

Value
$327.47 ( ~0.105876391895592 Eth) [0.0008%]
0x83cb76b4d355545247a1c1b8bd85eab069c77996
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Sipher blends live-action RPG with PvE & PvP: explore, battle, craft, and socialize in Sipheria. Unlock characters, join tournaments, and shape the world your way.

Market

Volume (24H):$196,349.00
Market Capitalization:$35,492,158.00
Circulating Supply:95,862,610.00 SIPHER
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4dDB0b8f...d1F779115
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SipherToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : SipherToken.sol
//SPDX-License-Identifier: MIT
/*
This Contract is coded and developed by Vihali Technology MTV Company Limited and is entirely transferred to Dopa JSC Limited under the Contract for Software Development Services. Accordingly, the ownership and all intellectual property rights including but not limited to rights which arise in the course of or in connection with the Contract shall belong to and are the sole property of Dopa JSC Limited
*/
pragma solidity ^0.8.7;

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


contract SipherToken is ERC20, Ownable {
    uint256 public constant DECIMALS = 10**18;
    uint256 public constant MAX_SUPPLY = 1_000_000_000*DECIMALS;
    uint256 public constant GAMEPLAY_INCENTIVES_AND_MARKETING_FUND = 304_000_000*DECIMALS;
    uint256 public immutable START_TIME; //= 1638378000
    
    uint256 private _released;
    uint256 private _noScheduledReleased;
    uint256 private _claimAmount;
    uint256 private _claimTimeStamp;

    event RequestRelease(uint amount, uint releaseTime);
    
    constructor(
        string memory name,
        string memory symbol,
        uint256 startTime
    ) ERC20(name, symbol) {
        START_TIME= startTime;
    }
    
    function burn(uint amount) external {
        _burn(msg.sender, amount);
    }
    
     function _releasableAmount(uint256 timeStamp) private view returns(uint256){
        uint256 vestingPoint = (timeStamp - START_TIME)/2635200;
        if (vestingPoint < 3) {
            uint256 vestingOffset =  55000000*DECIMALS;
            return vestingOffset + vestingPoint * (7727273 * DECIMALS) - _released;
        } else if (vestingPoint < 12) {
            uint256 vestingOffset =  70454546 * DECIMALS;
            return vestingOffset + (vestingPoint - 2) *( 7977273 * DECIMALS ) - _released;
        } else if (vestingPoint < 15) {
            uint256 vestingOffset =  142250003 * DECIMALS;
            return vestingOffset + (vestingPoint - 11) * (250000 * DECIMALS) - _released;
        } else if (vestingPoint == 15) {
            uint256 vestingOffset =  143000003 * DECIMALS;
            return vestingOffset - _released;
        } else if (vestingPoint < 30) {
            uint256 vestingOffset =  143000003 *DECIMALS;
            return vestingOffset + (vestingPoint-15)*(19472222*DECIMALS)-_released;
        } else if (vestingPoint <34) {
            uint256 vestingOffset =  415611111*DECIMALS;
            return vestingOffset + (vestingPoint-29)*(25305556*DECIMALS)-_released;
        } else if (vestingPoint <40) {
            uint256 vestingOffset =  516833335*DECIMALS;
            return vestingOffset + (vestingPoint-33)*(16250000*DECIMALS)-_released;    
        } else if (vestingPoint <53) {
            uint256 vestingOffset =  614333335*DECIMALS;
            return vestingOffset + (vestingPoint-39)*(5833333*DECIMALS)-_released;  
        } else {
            return MAX_SUPPLY - GAMEPLAY_INCENTIVES_AND_MARKETING_FUND-_released;
        }
    }
    
    function release() external onlyOwner{
        uint256 timeStamp = block.timestamp;
        require(timeStamp >= START_TIME, "SipherToken.release: vesting has not started yet");
        require(_releasableAmount(timeStamp) > 0, "SipherToken.release: no token to release this time");
        uint256 readyToReleased = _releasableAmount(timeStamp);
        _released = _released + readyToReleased;
        _mint(msg.sender, readyToReleased);
    }

    function requestToClaimNoScheduledFund(uint amount) external onlyOwner{
        uint256 timeStamp = block.timestamp;
        require(_claimAmount == 0, "SipherToken.requestToClaimNoScheduledFund: claim is still pending");
        require(timeStamp >= _claimTimeStamp, "SipherToken.requestToClaimNoScheduledFund: required request before claim");
        require(amount <= GAMEPLAY_INCENTIVES_AND_MARKETING_FUND - _noScheduledReleased, "SipherToken.requestToClaimNoScheduledFund: invalid request amount");

        _claimTimeStamp = timeStamp + 3 days;
        _claimAmount = amount; 

        emit RequestRelease( amount, _claimTimeStamp);
    }

    function claimNoScheduledFund() external onlyOwner{
        uint256 timeStamp = block.timestamp;
        require(timeStamp >= _claimTimeStamp, "SipherToken.claimNoScheduledFund: not the time to claim");
        require(_claimAmount > 0, "SipherToken.claimNoScheduledFund: nothing to claim");
        
        uint releaseAmount = _claimAmount;
        _claimAmount = 0;
        _noScheduledReleased += releaseAmount;
        _mint(msg.sender, releaseAmount);
    }

    function getVestingReleasedAmount() external view returns (uint) {
        return _released;
    }

    function getNoScheduledReleasedAmount() external view returns (uint) {
        return _noScheduledReleased;
    }

    function getCurrentClaimAmount() external view returns (uint) {
        return _claimAmount;
    }

    function getTimeToClaim() external view returns (uint) {
        return _claimTimeStamp;
    }
}

File 2 of 6 : 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 3 of 6 : 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 6 : 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 5 of 6 : 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 6 of 6 : 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":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"startTime","type":"uint256"}],"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":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releaseTime","type":"uint256"}],"name":"RequestRelease","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":"DECIMALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GAMEPLAY_INCENTIVES_AND_MARKETING_FUND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_TIME","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":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimNoScheduledFund","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":[],"name":"getCurrentClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNoScheduledReleasedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTimeToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVestingReleasedAmount","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":[],"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":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"requestToClaimNoScheduledFund","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"}]

60a06040523480156200001157600080fd5b5060405162003233380380620032338339818101604052810190620000379190620002b1565b82828160039080519060200190620000519291906200016c565b5080600490805190602001906200006a9291906200016c565b5050506200008d620000816200009e60201b60201c565b620000a660201b60201c565b8060808181525050505050620004f3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017a90620003ea565b90600052602060002090601f0160209004810192826200019e5760008555620001ea565b82601f10620001b957805160ff1916838001178555620001ea565b82800160010185558215620001ea579182015b82811115620001e9578251825591602001919060010190620001cc565b5b509050620001f99190620001fd565b5090565b5b8082111562000218576000816000905550600101620001fe565b5090565b6000620002336200022d8462000374565b6200034b565b905082815260208101848484011115620002525762000251620004b9565b5b6200025f848285620003b4565b509392505050565b600082601f8301126200027f576200027e620004b4565b5b8151620002918482602086016200021c565b91505092915050565b600081519050620002ab81620004d9565b92915050565b600080600060608486031215620002cd57620002cc620004c3565b5b600084015167ffffffffffffffff811115620002ee57620002ed620004be565b5b620002fc8682870162000267565b935050602084015167ffffffffffffffff81111562000320576200031f620004be565b5b6200032e8682870162000267565b925050604062000341868287016200029a565b9150509250925092565b6000620003576200036a565b905062000365828262000420565b919050565b6000604051905090565b600067ffffffffffffffff82111562000392576200039162000485565b5b6200039d82620004c8565b9050602081019050919050565b6000819050919050565b60005b83811015620003d4578082015181840152602081019050620003b7565b83811115620003e4576000848401525b50505050565b600060028204905060018216806200040357607f821691505b602082108114156200041a576200041962000456565b5b50919050565b6200042b82620004c8565b810181811067ffffffffffffffff821117156200044d576200044c62000485565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620004e481620003aa565b8114620004f057600080fd5b50565b608051612d166200051d600039600081816108f101528181610e0201526117570152612d166000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806371394149116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610467578063ddaa26ad14610497578063e2988c63146104b5578063f2fde38b146104bf5761018e565b8063a9059cbb146103fd578063ab9d7c961461042d578063c99e92451461044b5761018e565b8063713941491461035f578063715018a61461037d57806386d1a69f146103875780638da5cb5b1461039157806395d89b41146103af578063a457c2d7146103cd5761018e565b80632e0f26251161014b578063395093511161012557806339509351146102c557806342966c68146102f5578063602e06741461031157806370a082311461032f5761018e565b80632e0f26251461026b578063313ce5671461028957806332cb6b0c146102a75761018e565b8063061697761461019357806306fdde03146101b1578063095ea7b3146101cf57806318160ddd146101ff57806323b872dd1461021d578063270585a11461024d575b600080fd5b61019b6104db565b6040516101a891906123c2565b60405180910390f35b6101b96104e5565b6040516101c69190612140565b60405180910390f35b6101e960048036038101906101e49190611d8f565b610577565b6040516101f69190612125565b60405180910390f35b610207610595565b60405161021491906123c2565b60405180910390f35b61023760048036038101906102329190611d3c565b61059f565b6040516102449190612125565b60405180910390f35b610255610697565b60405161026291906123c2565b60405180910390f35b6102736106a1565b60405161028091906123c2565b60405180910390f35b6102916106ad565b60405161029e9190612406565b60405180910390f35b6102af6106b6565b6040516102bc91906123c2565b60405180910390f35b6102df60048036038101906102da9190611d8f565b6106d1565b6040516102ec9190612125565b60405180910390f35b61030f600480360381019061030a9190611dcf565b61077d565b005b61031961078a565b60405161032691906123c2565b60405180910390f35b61034960048036038101906103449190611ccf565b610794565b60405161035691906123c2565b60405180910390f35b6103676107dc565b60405161037491906123c2565b60405180910390f35b6103856107e6565b005b61038f61086e565b005b6103996109cc565b6040516103a6919061210a565b60405180910390f35b6103b76109f6565b6040516103c49190612140565b60405180910390f35b6103e760048036038101906103e29190611d8f565b610a88565b6040516103f49190612125565b60405180910390f35b61041760048036038101906104129190611d8f565b610b73565b6040516104249190612125565b60405180910390f35b610435610b91565b60405161044291906123c2565b60405180910390f35b61046560048036038101906104609190611dcf565b610bac565b005b610481600480360381019061047c9190611cfc565b610d79565b60405161048e91906123c2565b60405180910390f35b61049f610e00565b6040516104ac91906123c2565b60405180910390f35b6104bd610e24565b005b6104d960048036038101906104d49190611ccf565b610f65565b005b6000600654905090565b6060600380546104f4906125da565b80601f0160208091040260200160405190810160405280929190818152602001828054610520906125da565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b600061058b61058461105d565b8484611065565b6001905092915050565b6000600254905090565b60006105ac848484611230565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105f761105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066e906122c2565b60405180910390fd5b61068b8561068361105d565b858403611065565b60019150509392505050565b6000600754905090565b670de0b6b3a764000081565b60006012905090565b670de0b6b3a7640000633b9aca006106ce91906124c4565b81565b60006107736106de61105d565b8484600160006106ec61105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461076e919061243d565b611065565b6001905092915050565b61078733826114b1565b50565b6000600854905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600954905090565b6107ee61105d565b73ffffffffffffffffffffffffffffffffffffffff1661080c6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610859906122e2565b60405180910390fd5b61086c6000611688565b565b61087661105d565b73ffffffffffffffffffffffffffffffffffffffff166108946109cc565b73ffffffffffffffffffffffffffffffffffffffff16146108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e1906122e2565b60405180910390fd5b60004290507f0000000000000000000000000000000000000000000000000000000000000000811015610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990612282565b60405180910390fd5b600061095d8261174e565b1161099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490612242565b60405180910390fd5b60006109a88261174e565b9050806006546109b8919061243d565b6006819055506109c83382611b3b565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a05906125da565b80601f0160208091040260200160405190810160405280929190818152602001828054610a31906125da565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b60008060016000610a9761105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612382565b60405180910390fd5b610b68610b5f61105d565b85858403611065565b600191505092915050565b6000610b87610b8061105d565b8484611230565b6001905092915050565b670de0b6b3a764000063121eac00610ba991906124c4565b81565b610bb461105d565b73ffffffffffffffffffffffffffffffffffffffff16610bd26109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906122e2565b60405180910390fd5b6000429050600060085414610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906122a2565b60405180910390fd5b600954811015610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906121a2565b60405180910390fd5b600754670de0b6b3a764000063121eac00610cd291906124c4565b610cdc919061251e565b821115610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590612262565b60405180910390fd5b6203f48081610d2d919061243d565b600981905550816008819055507f7ccf58c08dda162ce88ac92220a9f17a63a8780a5222e01e66d2470a4948d13f82600954604051610d6d9291906123dd565b60405180910390a15050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e2c61105d565b73ffffffffffffffffffffffffffffffffffffffff16610e4a6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e97906122e2565b60405180910390fd5b6000429050600954811015610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190612342565b60405180910390fd5b600060085411610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690612222565b60405180910390fd5b6000600854905060006008819055508060076000828254610f50919061243d565b92505081905550610f613382611b3b565b5050565b610f6d61105d565b73ffffffffffffffffffffffffffffffffffffffff16610f8b6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd8906122e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906121c2565b60405180910390fd5b61105a81611688565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906121e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122391906123c2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612162565b60405180910390fd5b61131b838383611c9b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890612202565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611434919061243d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149891906123c2565b60405180910390a36114ab848484611ca0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890612302565b60405180910390fd5b61152d82600083611c9b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90612182565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461160a919061251e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161166f91906123c2565b60405180910390a361168383600084611ca0565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080622835c07f000000000000000000000000000000000000000000000000000000000000000084611781919061251e565b61178b9190612493565b905060038110156117f5576000670de0b6b3a76400006303473bc06117b091906124c4565b9050600654670de0b6b3a76400006275e8a96117cc91906124c4565b836117d791906124c4565b826117e2919061243d565b6117ec919061251e565b92505050611b36565b600c811015611869576000670de0b6b3a76400006304330d1261181891906124c4565b9050600654670de0b6b3a76400006279b93961183491906124c4565b600284611841919061251e565b61184b91906124c4565b82611856919061243d565b611860919061251e565b92505050611b36565b600f8110156118dd576000670de0b6b3a764000063087a901361188c91906124c4565b9050600654670de0b6b3a76400006203d0906118a891906124c4565b600b846118b5919061251e565b6118bf91906124c4565b826118ca919061243d565b6118d4919061251e565b92505050611b36565b600f811415611919576000670de0b6b3a764000063088601c361190091906124c4565b905060065481611910919061251e565b92505050611b36565b601e81101561198e576000670de0b6b3a764000063088601c361193c91906124c4565b9050600654670de0b6b3a76400006301291f5e61195991906124c4565b600f84611966919061251e565b61197091906124c4565b8261197b919061243d565b611985919061251e565b92505050611b36565b6022811015611a03576000670de0b6b3a76400006318c5b8e76119b191906124c4565b9050600654670de0b6b3a764000063018221d46119ce91906124c4565b601d846119db919061251e565b6119e591906124c4565b826119f0919061243d565b6119fa919061251e565b92505050611b36565b6028811015611a77576000670de0b6b3a7640000631ece4037611a2691906124c4565b9050600654670de0b6b3a764000062f7f490611a4291906124c4565b602184611a4f919061251e565b611a5991906124c4565b82611a64919061243d565b611a6e919061251e565b92505050611b36565b6035811015611aeb576000670de0b6b3a764000063249dfb97611a9a91906124c4565b9050600654670de0b6b3a764000062590275611ab691906124c4565b602784611ac3919061251e565b611acd91906124c4565b82611ad8919061243d565b611ae2919061251e565b92505050611b36565b600654670de0b6b3a764000063121eac00611b0691906124c4565b670de0b6b3a7640000633b9aca00611b1e91906124c4565b611b28919061251e565b611b32919061251e565b9150505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba2906123a2565b60405180910390fd5b611bb760008383611c9b565b8060026000828254611bc9919061243d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1e919061243d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c8391906123c2565b60405180910390a3611c9760008383611ca0565b5050565b505050565b505050565b600081359050611cb481612cb2565b92915050565b600081359050611cc981612cc9565b92915050565b600060208284031215611ce557611ce4612699565b5b6000611cf384828501611ca5565b91505092915050565b60008060408385031215611d1357611d12612699565b5b6000611d2185828601611ca5565b9250506020611d3285828601611ca5565b9150509250929050565b600080600060608486031215611d5557611d54612699565b5b6000611d6386828701611ca5565b9350506020611d7486828701611ca5565b9250506040611d8586828701611cba565b9150509250925092565b60008060408385031215611da657611da5612699565b5b6000611db485828601611ca5565b9250506020611dc585828601611cba565b9150509250929050565b600060208284031215611de557611de4612699565b5b6000611df384828501611cba565b91505092915050565b611e0581612552565b82525050565b611e1481612564565b82525050565b6000611e2582612421565b611e2f818561242c565b9350611e3f8185602086016125a7565b611e488161269e565b840191505092915050565b6000611e6060238361242c565b9150611e6b826126af565b604082019050919050565b6000611e8360228361242c565b9150611e8e826126fe565b604082019050919050565b6000611ea660488361242c565b9150611eb18261274d565b606082019050919050565b6000611ec960268361242c565b9150611ed4826127c2565b604082019050919050565b6000611eec60228361242c565b9150611ef782612811565b604082019050919050565b6000611f0f60268361242c565b9150611f1a82612860565b604082019050919050565b6000611f3260328361242c565b9150611f3d826128af565b604082019050919050565b6000611f5560328361242c565b9150611f60826128fe565b604082019050919050565b6000611f7860418361242c565b9150611f838261294d565b606082019050919050565b6000611f9b60308361242c565b9150611fa6826129c2565b604082019050919050565b6000611fbe60418361242c565b9150611fc982612a11565b606082019050919050565b6000611fe160288361242c565b9150611fec82612a86565b604082019050919050565b600061200460208361242c565b915061200f82612ad5565b602082019050919050565b600061202760218361242c565b915061203282612afe565b604082019050919050565b600061204a60258361242c565b915061205582612b4d565b604082019050919050565b600061206d60378361242c565b915061207882612b9c565b604082019050919050565b600061209060248361242c565b915061209b82612beb565b604082019050919050565b60006120b360258361242c565b91506120be82612c3a565b604082019050919050565b60006120d6601f8361242c565b91506120e182612c89565b602082019050919050565b6120f581612590565b82525050565b6121048161259a565b82525050565b600060208201905061211f6000830184611dfc565b92915050565b600060208201905061213a6000830184611e0b565b92915050565b6000602082019050818103600083015261215a8184611e1a565b905092915050565b6000602082019050818103600083015261217b81611e53565b9050919050565b6000602082019050818103600083015261219b81611e76565b9050919050565b600060208201905081810360008301526121bb81611e99565b9050919050565b600060208201905081810360008301526121db81611ebc565b9050919050565b600060208201905081810360008301526121fb81611edf565b9050919050565b6000602082019050818103600083015261221b81611f02565b9050919050565b6000602082019050818103600083015261223b81611f25565b9050919050565b6000602082019050818103600083015261225b81611f48565b9050919050565b6000602082019050818103600083015261227b81611f6b565b9050919050565b6000602082019050818103600083015261229b81611f8e565b9050919050565b600060208201905081810360008301526122bb81611fb1565b9050919050565b600060208201905081810360008301526122db81611fd4565b9050919050565b600060208201905081810360008301526122fb81611ff7565b9050919050565b6000602082019050818103600083015261231b8161201a565b9050919050565b6000602082019050818103600083015261233b8161203d565b9050919050565b6000602082019050818103600083015261235b81612060565b9050919050565b6000602082019050818103600083015261237b81612083565b9050919050565b6000602082019050818103600083015261239b816120a6565b9050919050565b600060208201905081810360008301526123bb816120c9565b9050919050565b60006020820190506123d760008301846120ec565b92915050565b60006040820190506123f260008301856120ec565b6123ff60208301846120ec565b9392505050565b600060208201905061241b60008301846120fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061244882612590565b915061245383612590565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124885761248761260c565b5b828201905092915050565b600061249e82612590565b91506124a983612590565b9250826124b9576124b861263b565b5b828204905092915050565b60006124cf82612590565b91506124da83612590565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125135761251261260c565b5b828202905092915050565b600061252982612590565b915061253483612590565b9250828210156125475761254661260c565b5b828203905092915050565b600061255d82612570565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156125c55780820151818401526020810190506125aa565b838111156125d4576000848401525b50505050565b600060028204905060018216806125f257607f821691505b602082108114156126065761260561266a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72657175657374546f436c61696d4e6f5363686560008201527f64756c656446756e643a2072657175697265642072657175657374206265666f60208201527f726520636c61696d000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e636c61696d4e6f5363686564756c656446756e6460008201527f3a206e6f7468696e6720746f20636c61696d0000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72656c656173653a206e6f20746f6b656e20746f60008201527f2072656c6561736520746869732074696d650000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72657175657374546f436c61696d4e6f5363686560008201527f64756c656446756e643a20696e76616c6964207265717565737420616d6f756e60208201527f7400000000000000000000000000000000000000000000000000000000000000604082015250565b7f536970686572546f6b656e2e72656c656173653a2076657374696e672068617360008201527f206e6f7420737461727465642079657400000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72657175657374546f436c61696d4e6f5363686560008201527f64756c656446756e643a20636c61696d206973207374696c6c2070656e64696e60208201527f6700000000000000000000000000000000000000000000000000000000000000604082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e636c61696d4e6f5363686564756c656446756e6460008201527f3a206e6f74207468652074696d6520746f20636c61696d000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612cbb81612552565b8114612cc657600080fd5b50565b612cd281612590565b8114612cdd57600080fd5b5056fea2646970667358221220b82e8421135d40135b14af678c3ff1b44ab067a96c6d3cbb2d3dc41da1ca2aa864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000061a7aa10000000000000000000000000000000000000000000000000000000000000000c53697068657220546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065349504845520000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806371394149116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610467578063ddaa26ad14610497578063e2988c63146104b5578063f2fde38b146104bf5761018e565b8063a9059cbb146103fd578063ab9d7c961461042d578063c99e92451461044b5761018e565b8063713941491461035f578063715018a61461037d57806386d1a69f146103875780638da5cb5b1461039157806395d89b41146103af578063a457c2d7146103cd5761018e565b80632e0f26251161014b578063395093511161012557806339509351146102c557806342966c68146102f5578063602e06741461031157806370a082311461032f5761018e565b80632e0f26251461026b578063313ce5671461028957806332cb6b0c146102a75761018e565b8063061697761461019357806306fdde03146101b1578063095ea7b3146101cf57806318160ddd146101ff57806323b872dd1461021d578063270585a11461024d575b600080fd5b61019b6104db565b6040516101a891906123c2565b60405180910390f35b6101b96104e5565b6040516101c69190612140565b60405180910390f35b6101e960048036038101906101e49190611d8f565b610577565b6040516101f69190612125565b60405180910390f35b610207610595565b60405161021491906123c2565b60405180910390f35b61023760048036038101906102329190611d3c565b61059f565b6040516102449190612125565b60405180910390f35b610255610697565b60405161026291906123c2565b60405180910390f35b6102736106a1565b60405161028091906123c2565b60405180910390f35b6102916106ad565b60405161029e9190612406565b60405180910390f35b6102af6106b6565b6040516102bc91906123c2565b60405180910390f35b6102df60048036038101906102da9190611d8f565b6106d1565b6040516102ec9190612125565b60405180910390f35b61030f600480360381019061030a9190611dcf565b61077d565b005b61031961078a565b60405161032691906123c2565b60405180910390f35b61034960048036038101906103449190611ccf565b610794565b60405161035691906123c2565b60405180910390f35b6103676107dc565b60405161037491906123c2565b60405180910390f35b6103856107e6565b005b61038f61086e565b005b6103996109cc565b6040516103a6919061210a565b60405180910390f35b6103b76109f6565b6040516103c49190612140565b60405180910390f35b6103e760048036038101906103e29190611d8f565b610a88565b6040516103f49190612125565b60405180910390f35b61041760048036038101906104129190611d8f565b610b73565b6040516104249190612125565b60405180910390f35b610435610b91565b60405161044291906123c2565b60405180910390f35b61046560048036038101906104609190611dcf565b610bac565b005b610481600480360381019061047c9190611cfc565b610d79565b60405161048e91906123c2565b60405180910390f35b61049f610e00565b6040516104ac91906123c2565b60405180910390f35b6104bd610e24565b005b6104d960048036038101906104d49190611ccf565b610f65565b005b6000600654905090565b6060600380546104f4906125da565b80601f0160208091040260200160405190810160405280929190818152602001828054610520906125da565b801561056d5780601f106105425761010080835404028352916020019161056d565b820191906000526020600020905b81548152906001019060200180831161055057829003601f168201915b5050505050905090565b600061058b61058461105d565b8484611065565b6001905092915050565b6000600254905090565b60006105ac848484611230565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105f761105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066e906122c2565b60405180910390fd5b61068b8561068361105d565b858403611065565b60019150509392505050565b6000600754905090565b670de0b6b3a764000081565b60006012905090565b670de0b6b3a7640000633b9aca006106ce91906124c4565b81565b60006107736106de61105d565b8484600160006106ec61105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461076e919061243d565b611065565b6001905092915050565b61078733826114b1565b50565b6000600854905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600954905090565b6107ee61105d565b73ffffffffffffffffffffffffffffffffffffffff1661080c6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610859906122e2565b60405180910390fd5b61086c6000611688565b565b61087661105d565b73ffffffffffffffffffffffffffffffffffffffff166108946109cc565b73ffffffffffffffffffffffffffffffffffffffff16146108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e1906122e2565b60405180910390fd5b60004290507f0000000000000000000000000000000000000000000000000000000061a7aa10811015610952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094990612282565b60405180910390fd5b600061095d8261174e565b1161099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490612242565b60405180910390fd5b60006109a88261174e565b9050806006546109b8919061243d565b6006819055506109c83382611b3b565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a05906125da565b80601f0160208091040260200160405190810160405280929190818152602001828054610a31906125da565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b60008060016000610a9761105d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612382565b60405180910390fd5b610b68610b5f61105d565b85858403611065565b600191505092915050565b6000610b87610b8061105d565b8484611230565b6001905092915050565b670de0b6b3a764000063121eac00610ba991906124c4565b81565b610bb461105d565b73ffffffffffffffffffffffffffffffffffffffff16610bd26109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906122e2565b60405180910390fd5b6000429050600060085414610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906122a2565b60405180910390fd5b600954811015610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae906121a2565b60405180910390fd5b600754670de0b6b3a764000063121eac00610cd291906124c4565b610cdc919061251e565b821115610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590612262565b60405180910390fd5b6203f48081610d2d919061243d565b600981905550816008819055507f7ccf58c08dda162ce88ac92220a9f17a63a8780a5222e01e66d2470a4948d13f82600954604051610d6d9291906123dd565b60405180910390a15050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f0000000000000000000000000000000000000000000000000000000061a7aa1081565b610e2c61105d565b73ffffffffffffffffffffffffffffffffffffffff16610e4a6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e97906122e2565b60405180910390fd5b6000429050600954811015610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee190612342565b60405180910390fd5b600060085411610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690612222565b60405180910390fd5b6000600854905060006008819055508060076000828254610f50919061243d565b92505081905550610f613382611b3b565b5050565b610f6d61105d565b73ffffffffffffffffffffffffffffffffffffffff16610f8b6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd8906122e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611051576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611048906121c2565b60405180910390fd5b61105a81611688565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90612362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c906121e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122391906123c2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612162565b60405180910390fd5b61131b838383611c9b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890612202565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611434919061243d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149891906123c2565b60405180910390a36114ab848484611ca0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890612302565b60405180910390fd5b61152d82600083611c9b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90612182565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461160a919061251e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161166f91906123c2565b60405180910390a361168383600084611ca0565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080622835c07f0000000000000000000000000000000000000000000000000000000061a7aa1084611781919061251e565b61178b9190612493565b905060038110156117f5576000670de0b6b3a76400006303473bc06117b091906124c4565b9050600654670de0b6b3a76400006275e8a96117cc91906124c4565b836117d791906124c4565b826117e2919061243d565b6117ec919061251e565b92505050611b36565b600c811015611869576000670de0b6b3a76400006304330d1261181891906124c4565b9050600654670de0b6b3a76400006279b93961183491906124c4565b600284611841919061251e565b61184b91906124c4565b82611856919061243d565b611860919061251e565b92505050611b36565b600f8110156118dd576000670de0b6b3a764000063087a901361188c91906124c4565b9050600654670de0b6b3a76400006203d0906118a891906124c4565b600b846118b5919061251e565b6118bf91906124c4565b826118ca919061243d565b6118d4919061251e565b92505050611b36565b600f811415611919576000670de0b6b3a764000063088601c361190091906124c4565b905060065481611910919061251e565b92505050611b36565b601e81101561198e576000670de0b6b3a764000063088601c361193c91906124c4565b9050600654670de0b6b3a76400006301291f5e61195991906124c4565b600f84611966919061251e565b61197091906124c4565b8261197b919061243d565b611985919061251e565b92505050611b36565b6022811015611a03576000670de0b6b3a76400006318c5b8e76119b191906124c4565b9050600654670de0b6b3a764000063018221d46119ce91906124c4565b601d846119db919061251e565b6119e591906124c4565b826119f0919061243d565b6119fa919061251e565b92505050611b36565b6028811015611a77576000670de0b6b3a7640000631ece4037611a2691906124c4565b9050600654670de0b6b3a764000062f7f490611a4291906124c4565b602184611a4f919061251e565b611a5991906124c4565b82611a64919061243d565b611a6e919061251e565b92505050611b36565b6035811015611aeb576000670de0b6b3a764000063249dfb97611a9a91906124c4565b9050600654670de0b6b3a764000062590275611ab691906124c4565b602784611ac3919061251e565b611acd91906124c4565b82611ad8919061243d565b611ae2919061251e565b92505050611b36565b600654670de0b6b3a764000063121eac00611b0691906124c4565b670de0b6b3a7640000633b9aca00611b1e91906124c4565b611b28919061251e565b611b32919061251e565b9150505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba2906123a2565b60405180910390fd5b611bb760008383611c9b565b8060026000828254611bc9919061243d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1e919061243d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c8391906123c2565b60405180910390a3611c9760008383611ca0565b5050565b505050565b505050565b600081359050611cb481612cb2565b92915050565b600081359050611cc981612cc9565b92915050565b600060208284031215611ce557611ce4612699565b5b6000611cf384828501611ca5565b91505092915050565b60008060408385031215611d1357611d12612699565b5b6000611d2185828601611ca5565b9250506020611d3285828601611ca5565b9150509250929050565b600080600060608486031215611d5557611d54612699565b5b6000611d6386828701611ca5565b9350506020611d7486828701611ca5565b9250506040611d8586828701611cba565b9150509250925092565b60008060408385031215611da657611da5612699565b5b6000611db485828601611ca5565b9250506020611dc585828601611cba565b9150509250929050565b600060208284031215611de557611de4612699565b5b6000611df384828501611cba565b91505092915050565b611e0581612552565b82525050565b611e1481612564565b82525050565b6000611e2582612421565b611e2f818561242c565b9350611e3f8185602086016125a7565b611e488161269e565b840191505092915050565b6000611e6060238361242c565b9150611e6b826126af565b604082019050919050565b6000611e8360228361242c565b9150611e8e826126fe565b604082019050919050565b6000611ea660488361242c565b9150611eb18261274d565b606082019050919050565b6000611ec960268361242c565b9150611ed4826127c2565b604082019050919050565b6000611eec60228361242c565b9150611ef782612811565b604082019050919050565b6000611f0f60268361242c565b9150611f1a82612860565b604082019050919050565b6000611f3260328361242c565b9150611f3d826128af565b604082019050919050565b6000611f5560328361242c565b9150611f60826128fe565b604082019050919050565b6000611f7860418361242c565b9150611f838261294d565b606082019050919050565b6000611f9b60308361242c565b9150611fa6826129c2565b604082019050919050565b6000611fbe60418361242c565b9150611fc982612a11565b606082019050919050565b6000611fe160288361242c565b9150611fec82612a86565b604082019050919050565b600061200460208361242c565b915061200f82612ad5565b602082019050919050565b600061202760218361242c565b915061203282612afe565b604082019050919050565b600061204a60258361242c565b915061205582612b4d565b604082019050919050565b600061206d60378361242c565b915061207882612b9c565b604082019050919050565b600061209060248361242c565b915061209b82612beb565b604082019050919050565b60006120b360258361242c565b91506120be82612c3a565b604082019050919050565b60006120d6601f8361242c565b91506120e182612c89565b602082019050919050565b6120f581612590565b82525050565b6121048161259a565b82525050565b600060208201905061211f6000830184611dfc565b92915050565b600060208201905061213a6000830184611e0b565b92915050565b6000602082019050818103600083015261215a8184611e1a565b905092915050565b6000602082019050818103600083015261217b81611e53565b9050919050565b6000602082019050818103600083015261219b81611e76565b9050919050565b600060208201905081810360008301526121bb81611e99565b9050919050565b600060208201905081810360008301526121db81611ebc565b9050919050565b600060208201905081810360008301526121fb81611edf565b9050919050565b6000602082019050818103600083015261221b81611f02565b9050919050565b6000602082019050818103600083015261223b81611f25565b9050919050565b6000602082019050818103600083015261225b81611f48565b9050919050565b6000602082019050818103600083015261227b81611f6b565b9050919050565b6000602082019050818103600083015261229b81611f8e565b9050919050565b600060208201905081810360008301526122bb81611fb1565b9050919050565b600060208201905081810360008301526122db81611fd4565b9050919050565b600060208201905081810360008301526122fb81611ff7565b9050919050565b6000602082019050818103600083015261231b8161201a565b9050919050565b6000602082019050818103600083015261233b8161203d565b9050919050565b6000602082019050818103600083015261235b81612060565b9050919050565b6000602082019050818103600083015261237b81612083565b9050919050565b6000602082019050818103600083015261239b816120a6565b9050919050565b600060208201905081810360008301526123bb816120c9565b9050919050565b60006020820190506123d760008301846120ec565b92915050565b60006040820190506123f260008301856120ec565b6123ff60208301846120ec565b9392505050565b600060208201905061241b60008301846120fb565b92915050565b600081519050919050565b600082825260208201905092915050565b600061244882612590565b915061245383612590565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124885761248761260c565b5b828201905092915050565b600061249e82612590565b91506124a983612590565b9250826124b9576124b861263b565b5b828204905092915050565b60006124cf82612590565b91506124da83612590565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125135761251261260c565b5b828202905092915050565b600061252982612590565b915061253483612590565b9250828210156125475761254661260c565b5b828203905092915050565b600061255d82612570565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156125c55780820151818401526020810190506125aa565b838111156125d4576000848401525b50505050565b600060028204905060018216806125f257607f821691505b602082108114156126065761260561266a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72657175657374546f436c61696d4e6f5363686560008201527f64756c656446756e643a2072657175697265642072657175657374206265666f60208201527f726520636c61696d000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e636c61696d4e6f5363686564756c656446756e6460008201527f3a206e6f7468696e6720746f20636c61696d0000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72656c656173653a206e6f20746f6b656e20746f60008201527f2072656c6561736520746869732074696d650000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72657175657374546f436c61696d4e6f5363686560008201527f64756c656446756e643a20696e76616c6964207265717565737420616d6f756e60208201527f7400000000000000000000000000000000000000000000000000000000000000604082015250565b7f536970686572546f6b656e2e72656c656173653a2076657374696e672068617360008201527f206e6f7420737461727465642079657400000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e72657175657374546f436c61696d4e6f5363686560008201527f64756c656446756e643a20636c61696d206973207374696c6c2070656e64696e60208201527f6700000000000000000000000000000000000000000000000000000000000000604082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f536970686572546f6b656e2e636c61696d4e6f5363686564756c656446756e6460008201527f3a206e6f74207468652074696d6520746f20636c61696d000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612cbb81612552565b8114612cc657600080fd5b50565b612cd281612590565b8114612cdd57600080fd5b5056fea2646970667358221220b82e8421135d40135b14af678c3ff1b44ab067a96c6d3cbb2d3dc41da1ca2aa864736f6c63430008070033

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.