ETH Price: $3,382.17 (-1.89%)
Gas: 4 Gwei

Token

ELFI Token (ELFI)
 

Overview

Max Total Supply

100,000,000 ELFI

Holders

353 (0.00%)

Market

Price

$0.01 @ 0.000003 ETH (-1.33%)

Onchain Market Cap

$1,111,863.00

Circulating Supply Market Cap

$566,044.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cryptoworldpk.eth
Balance
4.25893199394913382 ELFI

Value
$0.05 ( ~1.4783414687673E-05 Eth) [0.0000%]
0x93200ba684758a215029242cd8d92c0b17104720
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ELYFI is a decentralized platform that applies NFTs to connect real assets. Elysia creates contracts that convert real world assets into Non-Fungible Tokens (NFTs) and ELYFI will utilize NFTs to connect reliable real world assets with cryptocurrency liquidity.

Market

Volume (24H):$1,184.83
Market Capitalization:$566,044.00
Circulating Supply:50,909,515.00 ELFI
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ElyfiToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 14 : 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 defaut 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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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 { }
}

File 3 of 14 : 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 4 of 14 : ERC20Snapshot.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Arrays.sol";
import "../../../utils/Counters.sol";

/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */
abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping (address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _currentSnapshotId.current();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns(uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }


    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
      super._beforeTokenTransfer(from, to, amount);

      if (from == address(0)) {
        // mint
        _updateAccountSnapshot(to);
        _updateTotalSupplySnapshot();
      } else if (to == address(0)) {
        // burn
        _updateAccountSnapshot(from);
        _updateTotalSupplySnapshot();
      } else {
        // transfer
        _updateAccountSnapshot(from);
        _updateAccountSnapshot(to);
      }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots)
        private view returns (bool, uint256)
    {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        // solhint-disable-next-line max-line-length
        require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _currentSnapshotId.current();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

File 5 of 14 : 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 14 : Arrays.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
   /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

File 7 of 14 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 8 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

File 9 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 10 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 11 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 12 of 14 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

File 13 of 14 : ElyfiAccessControl.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import '@openzeppelin/contracts/access/AccessControl.sol';

contract ElyfiAccessControl is AccessControl {
  bytes32 public constant SNAPSHOT_MAKER_ROLE = keccak256('SNAPSHOT_MAKER');

  modifier onlySnapshotMaker() {
    require(_isSnapshotMaker(msg.sender), 'Restricted to snapshot maker.');
    _;
  }

  modifier onlyAdmin() {
    require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Restricted to admin.");
    _;
  }

  function isSnapshotMaker(address account) external view returns (bool) {
    return _isSnapshotMaker(account);
  }

  function _isSnapshotMaker(address account) internal view returns (bool) {
    return hasRole(SNAPSHOT_MAKER_ROLE, account);
  }
}

File 14 of 14 : ElyfiToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import '../access/ElyfiAccessControl.sol';
import '@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol';

contract ElyfiToken is ERC20Snapshot, ElyfiAccessControl {
  uint256 internal constant TOTAL_SUPPLY = 100000000 ether;

  /// Token address tow
  address internal _newElyfiToken;

  event Migrate(address indexed user, uint256 amount);

  constructor() ERC20('ELFI Token', 'ELFI') {
    _mint(msg.sender, TOTAL_SUPPLY);
    _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
  }

  function newElyfiToken() public view returns (address) {
    return _newElyfiToken;
  }

  function snapshot() external onlySnapshotMaker returns (uint256) {
    return _snapshot();
  }

  function burn(uint256 amount) public virtual {
    _burn(_msgSender(), amount);
  }

  function initMigration(address newElyfiToken_) public onlyAdmin {
    require(_newElyfiToken != address(0), "Already Initialized");

    _newElyfiToken = newElyfiToken_;
  }

  // For migration
  function migrate() public {
    require(_newElyfiToken != address(0), "Not Initialized");

    uint256 userBalance = balanceOf(msg.sender);

    require(userBalance != 0, "Invalid account");

    _burn(msg.sender, userBalance);

    IERC20(_newElyfiToken).transfer(msg.sender, userBalance);

    emit Migrate(msg.sender, userBalance);
  }
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Migrate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SNAPSHOT_MAKER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newElyfiToken_","type":"address"}],"name":"initMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSnapshotMaker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newElyfiToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f454c464920546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f454c464900000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620006bc565b508060049080519060200190620000af929190620006bc565b505050620000cf336a52b7d2dcc80cd2e4000000620000ea60201b60201c565b620000e46000801b336200024f60201b60201c565b62000953565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200015d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015490620007a4565b60405180910390fd5b62000171600083836200026560201b60201c565b8060026000828254620001859190620007f4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001dc9190620007f4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002439190620007c6565b60405180910390a35050565b6200026182826200036060201b60201c565b5050565b6200027d8383836200045260201b620010e41760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620002da57620002c4826200045760201b60201c565b620002d4620004ba60201b60201c565b6200035b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003375762000321836200045760201b60201c565b62000331620004ba60201b60201c565b6200035a565b62000348836200045760201b60201c565b62000359826200045760201b60201c565b5b5b505050565b620003728282620004de60201b60201c565b6200044e5760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003f36200054960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b505050565b620004b7600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620004ab836200055160201b60201c565b6200059960201b60201c565b50565b620004dc6006620004d06200062c60201b60201c565b6200059960201b60201c565b565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000620005b260086200063660201b620010e91760201c565b905080620005c9846000016200064460201b60201c565b1015620006275782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b600081600001549050919050565b600080828054905014156200065d5760009050620006b7565b816001838054905062000671919062000851565b81548110620006a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b828054620006ca9062000896565b90600052602060002090601f016020900481019282620006ee57600085556200073a565b82601f106200070957805160ff19168380011785556200073a565b828001600101855582156200073a579182015b82811115620007395782518255916020019190600101906200071c565b5b5090506200074991906200074d565b5090565b5b80821115620007685760008160009055506001016200074e565b5090565b60006200077b601f83620007e3565b915062000788826200092a565b602082019050919050565b6200079e816200088c565b82525050565b60006020820190508181036000830152620007bf816200076c565b9050919050565b6000602082019050620007dd600083018462000793565b92915050565b600082825260208201905092915050565b600062000801826200088c565b91506200080e836200088c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008465762000845620008cc565b5b828201905092915050565b60006200085e826200088c565b91506200086b836200088c565b925082821015620008815762000880620008cc565b5b828203905092915050565b6000819050919050565b60006002820490506001821680620008af57607f821691505b60208210811415620008c657620008c5620008fb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6133b280620009636000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f95780639c0f5fdb11610097578063a9059cbb11610071578063a9059cbb1461050a578063cc7520b81461053a578063d547741f14610558578063dd62ed3e14610574576101a9565b80639c0f5fdb1461049e578063a217fddf146104bc578063a457c2d7146104da576101a9565b806395d89b41116100d357806395d89b41146104165780639711715a14610434578063981b24d0146104525780639c00cc7914610482576101a9565b806370a08231146103ac5780638fd3ab80146103dc57806391d14854146103e6576101a9565b8063248a9ca31161016657806336568abe1161014057806336568abe14610314578063395093511461033057806342966c68146103605780634ee2cd7e1461037c576101a9565b8063248a9ca3146102aa5780632f2ff15d146102da578063313ce567146102f6576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063095ea7b3146101fc57806309de0b441461022c57806318160ddd1461025c57806323b872dd1461027a575b600080fd5b6101c860048036038101906101c39190612425565b6105a4565b6040516101d59190612866565b60405180910390f35b6101e661061e565b6040516101f3919061289c565b60405180910390f35b6102166004803603810190610211919061235b565b6106b0565b6040516102239190612866565b60405180910390f35b610246600480360381019061024191906122a7565b6106ce565b6040516102539190612866565b60405180910390f35b6102646106e0565b6040516102719190612afe565b60405180910390f35b610294600480360381019061028f919061230c565b6106ea565b6040516102a19190612866565b60405180910390f35b6102c460048036038101906102bf91906123c0565b6107eb565b6040516102d19190612881565b60405180910390f35b6102f460048036038101906102ef91906123e9565b61080b565b005b6102fe610834565b60405161030b9190612b19565b60405180910390f35b61032e600480360381019061032991906123e9565b61083d565b005b61034a6004803603810190610345919061235b565b6108c0565b6040516103579190612866565b60405180910390f35b61037a6004803603810190610375919061244e565b61096c565b005b6103966004803603810190610391919061235b565b610980565b6040516103a39190612afe565b60405180910390f35b6103c660048036038101906103c191906122a7565b6109f0565b6040516103d39190612afe565b60405180910390f35b6103e4610a38565b005b61040060048036038101906103fb91906123e9565b610c26565b60405161040d9190612866565b60405180910390f35b61041e610c91565b60405161042b919061289c565b60405180910390f35b61043c610d23565b6040516104499190612afe565b60405180910390f35b61046c6004803603810190610467919061244e565b610d7a565b6040516104799190612afe565b60405180910390f35b61049c600480360381019061049791906122a7565b610dab565b005b6104a6610ecd565b6040516104b39190612881565b60405180910390f35b6104c4610ef1565b6040516104d19190612881565b60405180910390f35b6104f460048036038101906104ef919061235b565b610ef8565b6040516105019190612866565b60405180910390f35b610524600480360381019061051f919061235b565b610fec565b6040516105319190612866565b60405180910390f35b61054261100a565b60405161054f9190612822565b60405180910390f35b610572600480360381019061056d91906123e9565b611034565b005b61058e600480360381019061058991906122d0565b61105d565b60405161059b9190612afe565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106175750610616826110f7565b5b9050919050565b60606003805461062d90612d58565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612d58565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106c46106bd611161565b8484611169565b6001905092915050565b60006106d982611334565b9050919050565b6000600254905090565b60006106f7848484611367565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610742611161565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906129de565b60405180910390fd5b6107df856107ce611161565b85846107da9190612c3c565b611169565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b610814826107eb565b61082581610820611161565b6115e6565b61082f8383611683565b505050565b60006012905090565b610845611161565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990612ade565b60405180910390fd5b6108bc8282611764565b5050565b60006109626108cd611161565b8484600160006108db611161565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095d9190612b5b565b611169565b6001905092915050565b61097d610977611161565b82611846565b50565b60008060006109cd84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a1a565b91509150816109e4576109df856109f0565b6109e6565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906129fe565b60405180910390fd5b6000610ad5336109f0565b90506000811415610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b12906129be565b60405180910390fd5b610b253382611846565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610b8292919061283d565b602060405180830381600087803b158015610b9c57600080fd5b505af1158015610bb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd49190612397565b503373ffffffffffffffffffffffffffffffffffffffff167fa59785389b00cbd19745afbe8d59b28e3161395c6b1e3525861a2b0dede0b90d82604051610c1b9190612afe565b60405180910390a250565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ca090612d58565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc90612d58565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b5050505050905090565b6000610d2e33611334565b610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490612a9e565b60405180910390fd5b610d75611b38565b905090565b6000806000610d8a846006611a1a565b9150915081610da057610d9b6106e0565b610da2565b805b92505050919050565b610db86000801b33610c26565b610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061299e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e809061297e565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f943f924a979dffae6371ced4ac37db8c0d6a1e4d3b7cb4e803aa94649ddd65f781565b6000801b81565b60008060016000610f07611161565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612abe565b60405180910390fd5b610fe1610fcf611161565b858584610fdc9190612c3c565b611169565b600191505092915050565b6000611000610ff9611161565b8484611367565b6001905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61103d826107eb565b61104e81611049611161565b6115e6565b6110588383611764565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090612a5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112409061293e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113279190612afe565b60405180910390a3505050565b60006113607f943f924a979dffae6371ced4ac37db8c0d6a1e4d3b7cb4e803aa94649ddd65f783610c26565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90612a3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e906128fe565b60405180910390fd5b611452838383611b90565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf9061295e565b60405180910390fd5b81816114e49190612c3c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115749190612b5b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115d89190612afe565b60405180910390a350505050565b6115f08282610c26565b61167f576116158173ffffffffffffffffffffffffffffffffffffffff166014611c4a565b6116238360001c6020611c4a565b6040516020016116349291906127e8565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676919061289c565b60405180910390fd5b5050565b61168d8282610c26565b6117605760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611705611161565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61176e8282610c26565b156118425760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117e7611161565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90612a1e565b60405180910390fd5b6118c282600083611b90565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f9061291e565b60405180910390fd5b81816119549190612c3c565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546119a89190612c3c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0d9190612afe565b60405180910390a3505050565b60008060008411611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790612a7e565b60405180910390fd5b611a6a60086110e9565b841115611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906128be565b60405180910390fd5b6000611ac48585600001611f4490919063ffffffff16565b90508360000180549050811415611ae2576000809250925050611b31565b6001846001018281548110611b20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000611b44600861206a565b6000611b5060086110e9565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611b819190612afe565b60405180910390a18091505090565b611b9b8383836110e4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611be657611bd982612080565b611be16120d3565b611c45565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3157611c2483612080565b611c2c6120d3565b611c44565b611c3a83612080565b611c4382612080565b5b5b505050565b606060006002836002611c5d9190612be2565b611c679190612b5b565b67ffffffffffffffff811115611ca6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cd85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611d36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611dc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611e009190612be2565b611e0a9190612b5b565b90505b6001811115611ef6577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611e72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611eaf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611eef90612d2e565b9050611e0d565b5060008414611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906128de565b60405180910390fd5b8091505092915050565b60008083805490501415611f5b5760009050612064565b600080848054905090505b80821015611fe5576000611f7a83836120e7565b905084868281548110611fb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611fcf57809150611fdf565b600181611fdc9190612b5b565b92505b50611f66565b60008211801561204357508385600184611fff9190612c3c565b81548110612036577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b1561205e576001826120559190612c3c565b92505050612064565b81925050505b92915050565b6001816000016000828254019250508190555050565b6120d0600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120cb836109f0565b61214e565b50565b6120e560066120e06106e0565b61214e565b565b6000600280836120f79190612d8a565b6002856121049190612d8a565b61210e9190612b5b565b6121189190612bb1565b6002836121259190612bb1565b6002856121329190612bb1565b61213c9190612b5b565b6121469190612b5b565b905092915050565b600061215a60086110e9565b905080612169846000016121cb565b10156121c65782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156121e25760009050612239565b81600183805490506121f49190612c3c565b8154811061222b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b60008135905061224d81613309565b92915050565b60008151905061226281613320565b92915050565b60008135905061227781613337565b92915050565b60008135905061228c8161334e565b92915050565b6000813590506122a181613365565b92915050565b6000602082840312156122b957600080fd5b60006122c78482850161223e565b91505092915050565b600080604083850312156122e357600080fd5b60006122f18582860161223e565b92505060206123028582860161223e565b9150509250929050565b60008060006060848603121561232157600080fd5b600061232f8682870161223e565b93505060206123408682870161223e565b925050604061235186828701612292565b9150509250925092565b6000806040838503121561236e57600080fd5b600061237c8582860161223e565b925050602061238d85828601612292565b9150509250929050565b6000602082840312156123a957600080fd5b60006123b784828501612253565b91505092915050565b6000602082840312156123d257600080fd5b60006123e084828501612268565b91505092915050565b600080604083850312156123fc57600080fd5b600061240a85828601612268565b925050602061241b8582860161223e565b9150509250929050565b60006020828403121561243757600080fd5b60006124458482850161227d565b91505092915050565b60006020828403121561246057600080fd5b600061246e84828501612292565b91505092915050565b61248081612c70565b82525050565b61248f81612c82565b82525050565b61249e81612c8e565b82525050565b60006124af82612b34565b6124b98185612b3f565b93506124c9818560208601612cfb565b6124d281612e48565b840191505092915050565b60006124e882612b34565b6124f28185612b50565b9350612502818560208601612cfb565b80840191505092915050565b600061251b601d83612b3f565b915061252682612e59565b602082019050919050565b600061253e602083612b3f565b915061254982612e82565b602082019050919050565b6000612561602383612b3f565b915061256c82612eab565b604082019050919050565b6000612584602283612b3f565b915061258f82612efa565b604082019050919050565b60006125a7602283612b3f565b91506125b282612f49565b604082019050919050565b60006125ca602683612b3f565b91506125d582612f98565b604082019050919050565b60006125ed601383612b3f565b91506125f882612fe7565b602082019050919050565b6000612610601483612b3f565b915061261b82613010565b602082019050919050565b6000612633600f83612b3f565b915061263e82613039565b602082019050919050565b6000612656602883612b3f565b915061266182613062565b604082019050919050565b6000612679600f83612b3f565b9150612684826130b1565b602082019050919050565b600061269c602183612b3f565b91506126a7826130da565b604082019050919050565b60006126bf602583612b3f565b91506126ca82613129565b604082019050919050565b60006126e2602483612b3f565b91506126ed82613178565b604082019050919050565b6000612705601683612b3f565b9150612710826131c7565b602082019050919050565b6000612728601783612b50565b9150612733826131f0565b601782019050919050565b600061274b601d83612b3f565b915061275682613219565b602082019050919050565b600061276e602583612b3f565b915061277982613242565b604082019050919050565b6000612791601183612b50565b915061279c82613291565b601182019050919050565b60006127b4602f83612b3f565b91506127bf826132ba565b604082019050919050565b6127d381612ce4565b82525050565b6127e281612cee565b82525050565b60006127f38261271b565b91506127ff82856124dd565b915061280a82612784565b915061281682846124dd565b91508190509392505050565b60006020820190506128376000830184612477565b92915050565b60006040820190506128526000830185612477565b61285f60208301846127ca565b9392505050565b600060208201905061287b6000830184612486565b92915050565b60006020820190506128966000830184612495565b92915050565b600060208201905081810360008301526128b681846124a4565b905092915050565b600060208201905081810360008301526128d78161250e565b9050919050565b600060208201905081810360008301526128f781612531565b9050919050565b6000602082019050818103600083015261291781612554565b9050919050565b6000602082019050818103600083015261293781612577565b9050919050565b600060208201905081810360008301526129578161259a565b9050919050565b60006020820190508181036000830152612977816125bd565b9050919050565b60006020820190508181036000830152612997816125e0565b9050919050565b600060208201905081810360008301526129b781612603565b9050919050565b600060208201905081810360008301526129d781612626565b9050919050565b600060208201905081810360008301526129f781612649565b9050919050565b60006020820190508181036000830152612a178161266c565b9050919050565b60006020820190508181036000830152612a378161268f565b9050919050565b60006020820190508181036000830152612a57816126b2565b9050919050565b60006020820190508181036000830152612a77816126d5565b9050919050565b60006020820190508181036000830152612a97816126f8565b9050919050565b60006020820190508181036000830152612ab78161273e565b9050919050565b60006020820190508181036000830152612ad781612761565b9050919050565b60006020820190508181036000830152612af7816127a7565b9050919050565b6000602082019050612b1360008301846127ca565b92915050565b6000602082019050612b2e60008301846127d9565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b6682612ce4565b9150612b7183612ce4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba657612ba5612dbb565b5b828201905092915050565b6000612bbc82612ce4565b9150612bc783612ce4565b925082612bd757612bd6612dea565b5b828204905092915050565b6000612bed82612ce4565b9150612bf883612ce4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3157612c30612dbb565b5b828202905092915050565b6000612c4782612ce4565b9150612c5283612ce4565b925082821015612c6557612c64612dbb565b5b828203905092915050565b6000612c7b82612cc4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612d19578082015181840152602081019050612cfe565b83811115612d28576000848401525b50505050565b6000612d3982612ce4565b91506000821415612d4d57612d4c612dbb565b5b600182039050919050565b60006002820490506001821680612d7057607f821691505b60208210811415612d8457612d83612e19565b5b50919050565b6000612d9582612ce4565b9150612da083612ce4565b925082612db057612daf612dea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920496e697469616c697a656400000000000000000000000000600082015250565b7f5265737472696374656420746f2061646d696e2e000000000000000000000000600082015250565b7f496e76616c6964206163636f756e740000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420496e697469616c697a65640000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5265737472696374656420746f20736e617073686f74206d616b65722e000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61331281612c70565b811461331d57600080fd5b50565b61332981612c82565b811461333457600080fd5b50565b61334081612c8e565b811461334b57600080fd5b50565b61335781612c98565b811461336257600080fd5b50565b61336e81612ce4565b811461337957600080fd5b5056fea264697066735822122024431f732e60127e38871b5fa5f421858ae0b518367bf5e5757f7f396569cc8d64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f95780639c0f5fdb11610097578063a9059cbb11610071578063a9059cbb1461050a578063cc7520b81461053a578063d547741f14610558578063dd62ed3e14610574576101a9565b80639c0f5fdb1461049e578063a217fddf146104bc578063a457c2d7146104da576101a9565b806395d89b41116100d357806395d89b41146104165780639711715a14610434578063981b24d0146104525780639c00cc7914610482576101a9565b806370a08231146103ac5780638fd3ab80146103dc57806391d14854146103e6576101a9565b8063248a9ca31161016657806336568abe1161014057806336568abe14610314578063395093511461033057806342966c68146103605780634ee2cd7e1461037c576101a9565b8063248a9ca3146102aa5780632f2ff15d146102da578063313ce567146102f6576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063095ea7b3146101fc57806309de0b441461022c57806318160ddd1461025c57806323b872dd1461027a575b600080fd5b6101c860048036038101906101c39190612425565b6105a4565b6040516101d59190612866565b60405180910390f35b6101e661061e565b6040516101f3919061289c565b60405180910390f35b6102166004803603810190610211919061235b565b6106b0565b6040516102239190612866565b60405180910390f35b610246600480360381019061024191906122a7565b6106ce565b6040516102539190612866565b60405180910390f35b6102646106e0565b6040516102719190612afe565b60405180910390f35b610294600480360381019061028f919061230c565b6106ea565b6040516102a19190612866565b60405180910390f35b6102c460048036038101906102bf91906123c0565b6107eb565b6040516102d19190612881565b60405180910390f35b6102f460048036038101906102ef91906123e9565b61080b565b005b6102fe610834565b60405161030b9190612b19565b60405180910390f35b61032e600480360381019061032991906123e9565b61083d565b005b61034a6004803603810190610345919061235b565b6108c0565b6040516103579190612866565b60405180910390f35b61037a6004803603810190610375919061244e565b61096c565b005b6103966004803603810190610391919061235b565b610980565b6040516103a39190612afe565b60405180910390f35b6103c660048036038101906103c191906122a7565b6109f0565b6040516103d39190612afe565b60405180910390f35b6103e4610a38565b005b61040060048036038101906103fb91906123e9565b610c26565b60405161040d9190612866565b60405180910390f35b61041e610c91565b60405161042b919061289c565b60405180910390f35b61043c610d23565b6040516104499190612afe565b60405180910390f35b61046c6004803603810190610467919061244e565b610d7a565b6040516104799190612afe565b60405180910390f35b61049c600480360381019061049791906122a7565b610dab565b005b6104a6610ecd565b6040516104b39190612881565b60405180910390f35b6104c4610ef1565b6040516104d19190612881565b60405180910390f35b6104f460048036038101906104ef919061235b565b610ef8565b6040516105019190612866565b60405180910390f35b610524600480360381019061051f919061235b565b610fec565b6040516105319190612866565b60405180910390f35b61054261100a565b60405161054f9190612822565b60405180910390f35b610572600480360381019061056d91906123e9565b611034565b005b61058e600480360381019061058991906122d0565b61105d565b60405161059b9190612afe565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106175750610616826110f7565b5b9050919050565b60606003805461062d90612d58565b80601f016020809104026020016040519081016040528092919081815260200182805461065990612d58565b80156106a65780601f1061067b576101008083540402835291602001916106a6565b820191906000526020600020905b81548152906001019060200180831161068957829003601f168201915b5050505050905090565b60006106c46106bd611161565b8484611169565b6001905092915050565b60006106d982611334565b9050919050565b6000600254905090565b60006106f7848484611367565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610742611161565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906129de565b60405180910390fd5b6107df856107ce611161565b85846107da9190612c3c565b611169565b60019150509392505050565b600060096000838152602001908152602001600020600101549050919050565b610814826107eb565b61082581610820611161565b6115e6565b61082f8383611683565b505050565b60006012905090565b610845611161565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a990612ade565b60405180910390fd5b6108bc8282611764565b5050565b60006109626108cd611161565b8484600160006108db611161565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095d9190612b5b565b611169565b6001905092915050565b61097d610977611161565b82611846565b50565b60008060006109cd84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a1a565b91509150816109e4576109df856109f0565b6109e6565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906129fe565b60405180910390fd5b6000610ad5336109f0565b90506000811415610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b12906129be565b60405180910390fd5b610b253382611846565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610b8292919061283d565b602060405180830381600087803b158015610b9c57600080fd5b505af1158015610bb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd49190612397565b503373ffffffffffffffffffffffffffffffffffffffff167fa59785389b00cbd19745afbe8d59b28e3161395c6b1e3525861a2b0dede0b90d82604051610c1b9190612afe565b60405180910390a250565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610ca090612d58565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc90612d58565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b5050505050905090565b6000610d2e33611334565b610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490612a9e565b60405180910390fd5b610d75611b38565b905090565b6000806000610d8a846006611a1a565b9150915081610da057610d9b6106e0565b610da2565b805b92505050919050565b610db86000801b33610c26565b610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee9061299e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e809061297e565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f943f924a979dffae6371ced4ac37db8c0d6a1e4d3b7cb4e803aa94649ddd65f781565b6000801b81565b60008060016000610f07611161565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612abe565b60405180910390fd5b610fe1610fcf611161565b858584610fdc9190612c3c565b611169565b600191505092915050565b6000611000610ff9611161565b8484611367565b6001905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61103d826107eb565b61104e81611049611161565b6115e6565b6110588383611764565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b505050565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090612a5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112409061293e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113279190612afe565b60405180910390a3505050565b60006113607f943f924a979dffae6371ced4ac37db8c0d6a1e4d3b7cb4e803aa94649ddd65f783610c26565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90612a3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e906128fe565b60405180910390fd5b611452838383611b90565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf9061295e565b60405180910390fd5b81816114e49190612c3c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115749190612b5b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115d89190612afe565b60405180910390a350505050565b6115f08282610c26565b61167f576116158173ffffffffffffffffffffffffffffffffffffffff166014611c4a565b6116238360001c6020611c4a565b6040516020016116349291906127e8565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676919061289c565b60405180910390fd5b5050565b61168d8282610c26565b6117605760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611705611161565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61176e8282610c26565b156118425760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117e7611161565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad90612a1e565b60405180910390fd5b6118c282600083611b90565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f9061291e565b60405180910390fd5b81816119549190612c3c565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546119a89190612c3c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0d9190612afe565b60405180910390a3505050565b60008060008411611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790612a7e565b60405180910390fd5b611a6a60086110e9565b841115611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906128be565b60405180910390fd5b6000611ac48585600001611f4490919063ffffffff16565b90508360000180549050811415611ae2576000809250925050611b31565b6001846001018281548110611b20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000611b44600861206a565b6000611b5060086110e9565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611b819190612afe565b60405180910390a18091505090565b611b9b8383836110e4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611be657611bd982612080565b611be16120d3565b611c45565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3157611c2483612080565b611c2c6120d3565b611c44565b611c3a83612080565b611c4382612080565b5b5b505050565b606060006002836002611c5d9190612be2565b611c679190612b5b565b67ffffffffffffffff811115611ca6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cd85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611d36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611dc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611e009190612be2565b611e0a9190612b5b565b90505b6001811115611ef6577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611e72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611eaf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611eef90612d2e565b9050611e0d565b5060008414611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906128de565b60405180910390fd5b8091505092915050565b60008083805490501415611f5b5760009050612064565b600080848054905090505b80821015611fe5576000611f7a83836120e7565b905084868281548110611fb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611fcf57809150611fdf565b600181611fdc9190612b5b565b92505b50611f66565b60008211801561204357508385600184611fff9190612c3c565b81548110612036577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b1561205e576001826120559190612c3c565b92505050612064565b81925050505b92915050565b6001816000016000828254019250508190555050565b6120d0600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120cb836109f0565b61214e565b50565b6120e560066120e06106e0565b61214e565b565b6000600280836120f79190612d8a565b6002856121049190612d8a565b61210e9190612b5b565b6121189190612bb1565b6002836121259190612bb1565b6002856121329190612bb1565b61213c9190612b5b565b6121469190612b5b565b905092915050565b600061215a60086110e9565b905080612169846000016121cb565b10156121c65782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156121e25760009050612239565b81600183805490506121f49190612c3c565b8154811061222b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b60008135905061224d81613309565b92915050565b60008151905061226281613320565b92915050565b60008135905061227781613337565b92915050565b60008135905061228c8161334e565b92915050565b6000813590506122a181613365565b92915050565b6000602082840312156122b957600080fd5b60006122c78482850161223e565b91505092915050565b600080604083850312156122e357600080fd5b60006122f18582860161223e565b92505060206123028582860161223e565b9150509250929050565b60008060006060848603121561232157600080fd5b600061232f8682870161223e565b93505060206123408682870161223e565b925050604061235186828701612292565b9150509250925092565b6000806040838503121561236e57600080fd5b600061237c8582860161223e565b925050602061238d85828601612292565b9150509250929050565b6000602082840312156123a957600080fd5b60006123b784828501612253565b91505092915050565b6000602082840312156123d257600080fd5b60006123e084828501612268565b91505092915050565b600080604083850312156123fc57600080fd5b600061240a85828601612268565b925050602061241b8582860161223e565b9150509250929050565b60006020828403121561243757600080fd5b60006124458482850161227d565b91505092915050565b60006020828403121561246057600080fd5b600061246e84828501612292565b91505092915050565b61248081612c70565b82525050565b61248f81612c82565b82525050565b61249e81612c8e565b82525050565b60006124af82612b34565b6124b98185612b3f565b93506124c9818560208601612cfb565b6124d281612e48565b840191505092915050565b60006124e882612b34565b6124f28185612b50565b9350612502818560208601612cfb565b80840191505092915050565b600061251b601d83612b3f565b915061252682612e59565b602082019050919050565b600061253e602083612b3f565b915061254982612e82565b602082019050919050565b6000612561602383612b3f565b915061256c82612eab565b604082019050919050565b6000612584602283612b3f565b915061258f82612efa565b604082019050919050565b60006125a7602283612b3f565b91506125b282612f49565b604082019050919050565b60006125ca602683612b3f565b91506125d582612f98565b604082019050919050565b60006125ed601383612b3f565b91506125f882612fe7565b602082019050919050565b6000612610601483612b3f565b915061261b82613010565b602082019050919050565b6000612633600f83612b3f565b915061263e82613039565b602082019050919050565b6000612656602883612b3f565b915061266182613062565b604082019050919050565b6000612679600f83612b3f565b9150612684826130b1565b602082019050919050565b600061269c602183612b3f565b91506126a7826130da565b604082019050919050565b60006126bf602583612b3f565b91506126ca82613129565b604082019050919050565b60006126e2602483612b3f565b91506126ed82613178565b604082019050919050565b6000612705601683612b3f565b9150612710826131c7565b602082019050919050565b6000612728601783612b50565b9150612733826131f0565b601782019050919050565b600061274b601d83612b3f565b915061275682613219565b602082019050919050565b600061276e602583612b3f565b915061277982613242565b604082019050919050565b6000612791601183612b50565b915061279c82613291565b601182019050919050565b60006127b4602f83612b3f565b91506127bf826132ba565b604082019050919050565b6127d381612ce4565b82525050565b6127e281612cee565b82525050565b60006127f38261271b565b91506127ff82856124dd565b915061280a82612784565b915061281682846124dd565b91508190509392505050565b60006020820190506128376000830184612477565b92915050565b60006040820190506128526000830185612477565b61285f60208301846127ca565b9392505050565b600060208201905061287b6000830184612486565b92915050565b60006020820190506128966000830184612495565b92915050565b600060208201905081810360008301526128b681846124a4565b905092915050565b600060208201905081810360008301526128d78161250e565b9050919050565b600060208201905081810360008301526128f781612531565b9050919050565b6000602082019050818103600083015261291781612554565b9050919050565b6000602082019050818103600083015261293781612577565b9050919050565b600060208201905081810360008301526129578161259a565b9050919050565b60006020820190508181036000830152612977816125bd565b9050919050565b60006020820190508181036000830152612997816125e0565b9050919050565b600060208201905081810360008301526129b781612603565b9050919050565b600060208201905081810360008301526129d781612626565b9050919050565b600060208201905081810360008301526129f781612649565b9050919050565b60006020820190508181036000830152612a178161266c565b9050919050565b60006020820190508181036000830152612a378161268f565b9050919050565b60006020820190508181036000830152612a57816126b2565b9050919050565b60006020820190508181036000830152612a77816126d5565b9050919050565b60006020820190508181036000830152612a97816126f8565b9050919050565b60006020820190508181036000830152612ab78161273e565b9050919050565b60006020820190508181036000830152612ad781612761565b9050919050565b60006020820190508181036000830152612af7816127a7565b9050919050565b6000602082019050612b1360008301846127ca565b92915050565b6000602082019050612b2e60008301846127d9565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b6682612ce4565b9150612b7183612ce4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba657612ba5612dbb565b5b828201905092915050565b6000612bbc82612ce4565b9150612bc783612ce4565b925082612bd757612bd6612dea565b5b828204905092915050565b6000612bed82612ce4565b9150612bf883612ce4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3157612c30612dbb565b5b828202905092915050565b6000612c4782612ce4565b9150612c5283612ce4565b925082821015612c6557612c64612dbb565b5b828203905092915050565b6000612c7b82612cc4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612d19578082015181840152602081019050612cfe565b83811115612d28576000848401525b50505050565b6000612d3982612ce4565b91506000821415612d4d57612d4c612dbb565b5b600182039050919050565b60006002820490506001821680612d7057607f821691505b60208210811415612d8457612d83612e19565b5b50919050565b6000612d9582612ce4565b9150612da083612ce4565b925082612db057612daf612dea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920496e697469616c697a656400000000000000000000000000600082015250565b7f5265737472696374656420746f2061646d696e2e000000000000000000000000600082015250565b7f496e76616c6964206163636f756e740000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420496e697469616c697a65640000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5265737472696374656420746f20736e617073686f74206d616b65722e000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61331281612c70565b811461331d57600080fd5b50565b61332981612c82565b811461333457600080fd5b50565b61334081612c8e565b811461334b57600080fd5b50565b61335781612c98565b811461336257600080fd5b50565b61336e81612ce4565b811461337957600080fd5b5056fea264697066735822122024431f732e60127e38871b5fa5f421858ae0b518367bf5e5757f7f396569cc8d64736f6c63430008040033

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.