ETH Price: $3,258.48 (-0.88%)

Token

sim4ple S4ME prime (4ME)
 

Overview

Max Total Supply

10,000,000,000 4ME

Holders

485

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,925.144740822186696377 4ME

Value
$0.00
0x28d31d73107aedde12e5a708ed7f114a98df7189
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Sim4pleS4MEPrime

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : contract-S4MEprime.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Snapshot.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/security/Pausable.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20FlashMint.sol";

/// @custom:security-contact [email protected]
   
contract Sim4pleS4MEPrime is ERC20, ERC20Burnable, ERC20Snapshot, Ownable, Pausable, ERC20FlashMint {
    constructor() ERC20("sim4ple S4ME prime", "4ME") {
        _mint(msg.sender, 10000000000 * 10 ** decimals());
    }

    function snapshot() public onlyOwner {
        _snapshot();
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override(ERC20, ERC20Snapshot)
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 2 of 16 : ERC20FlashMint.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20FlashMint.sol)

pragma solidity ^0.8.0;

import "../../../interfaces/IERC3156.sol";
import "../ERC20.sol";

/**
 * @dev Implementation of the ERC3156 Flash loans extension, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * Adds the {flashLoan} method, which provides flash loan support at the token
 * level. By default there is no fee, but this can be changed by overriding {flashFee}.
 *
 * _Available since v4.1._
 */
abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender {
    bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan");

    /**
     * @dev Returns the maximum amount of tokens available for loan.
     * @param token The address of the token that is requested.
     * @return The amont of token that can be loaned.
     */
    function maxFlashLoan(address token) public view override returns (uint256) {
        return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0;
    }

    /**
     * @dev Returns the fee applied when doing flash loans. By default this
     * implementation has 0 fees. This function can be overloaded to make
     * the flash loan mechanism deflationary.
     * @param token The token to be flash loaned.
     * @param amount The amount of tokens to be loaned.
     * @return The fees applied to the corresponding flash loan.
     */
    function flashFee(address token, uint256 amount) public view virtual override returns (uint256) {
        require(token == address(this), "ERC20FlashMint: wrong token");
        // silence warning about unused variable without the addition of bytecode.
        amount;
        return 0;
    }

    /**
     * @dev Performs a flash loan. New tokens are minted and sent to the
     * `receiver`, who is required to implement the {IERC3156FlashBorrower}
     * interface. By the end of the flash loan, the receiver is expected to own
     * amount + fee tokens and have them approved back to the token contract itself so
     * they can be burned.
     * @param receiver The receiver of the flash loan. Should implement the
     * {IERC3156FlashBorrower.onFlashLoan} interface.
     * @param token The token to be flash loaned. Only `address(this)` is
     * supported.
     * @param amount The amount of tokens to be loaned.
     * @param data An arbitrary datafield that is passed to the receiver.
     * @return `true` is the flash loan was successful.
     */
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) public virtual override returns (bool) {
        uint256 fee = flashFee(token, amount);
        _mint(address(receiver), amount);
        require(
            receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE,
            "ERC20FlashMint: invalid return value"
        );
        uint256 currentAllowance = allowance(address(receiver), address(this));
        require(currentAllowance >= amount + fee, "ERC20FlashMint: allowance does not allow refund");
        _approve(address(receiver), address(this), currentAllowance - amount - fee);
        _burn(address(receiver), amount + fee);
        return true;
    }
}

File 3 of 16 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 16 : ERC20Snapshot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Snapshot.sol)

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.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== 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 = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @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");
        require(snapshotId <= _getCurrentSnapshotId(), "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 = _getCurrentSnapshotId();
        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 6 of 16 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 7 of 16 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 8 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 9 of 16 : Arrays.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol)

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 10 of 16 : IERC3156.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156.sol)

pragma solidity ^0.8.0;

import "./IERC3156FlashBorrower.sol";
import "./IERC3156FlashLender.sol";

File 11 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 16 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 13 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 14 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

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.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 15 of 16 : IERC3156FlashLender.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)

pragma solidity ^0.8.0;

import "./IERC3156FlashBorrower.sol";

/**
 * @dev Interface of the ERC3156 FlashLender, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashLender {
    /**
     * @dev The amount of currency available to be lended.
     * @param token The loan currency.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(address token) external view returns (uint256);

    /**
     * @dev The fee to be charged for a given loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(address token, uint256 amount) external view returns (uint256);

    /**
     * @dev Initiate a flash loan.
     * @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     */
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}

File 16 of 16 : IERC3156FlashBorrower.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashBorrower.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC3156 FlashBorrower, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashBorrower {
    /**
     * @dev Receive a flash loan.
     * @param initiator The initiator of the loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param fee The additional amount of tokens to repay.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan"
     */
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601281526020017f73696d34706c652053344d45207072696d6500000000000000000000000000008152506040518060400160405280600381526020017f344d450000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620006f5565b508060049080519060200190620000af929190620006f5565b505050620000d2620000c66200013460201b60201c565b6200013c60201b60201c565b6000600960146101000a81548160ff0219169083151502179055506200012e33620001026200020260201b60201c565b600a6200011091906200092e565b6402540be40062000122919062000a6b565b6200020b60201b60201c565b62000c40565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002759062000826565b60405180910390fd5b62000292600083836200038460201b60201c565b8060026000828254620002a6919062000876565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002fd919062000876565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000364919062000848565b60405180910390a36200038060008383620003f460201b60201c565b5050565b62000394620003f960201b60201c565b15620003d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ce9062000804565b60405180910390fd5b620003ef8383836200041060201b620010de1760201c565b505050565b505050565b6000600960149054906101000a900460ff16905090565b620004288383836200050b60201b620011981760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000485576200046f826200051060201b60201c565b6200047f6200057360201b60201c565b62000506565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004e257620004cc836200051060201b60201c565b620004dc6200057360201b60201c565b62000505565b620004f3836200051060201b60201c565b62000504826200051060201b60201c565b5b5b505050565b505050565b62000570600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000564836200059760201b60201c565b620005df60201b60201c565b50565b620005956006620005896200066b60201b60201c565b620005df60201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000620005f16200067560201b60201c565b90508062000608846000016200069360201b60201c565b1015620006665782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b60006200068e6008620006e760201b6200119d1760201c565b905090565b60008082805490501415620006ac5760009050620006e2565b8160018380549050620006c0919062000acc565b81548110620006d457620006d362000bb2565b5b906000526020600020015490505b919050565b600081600001549050919050565b828054620007039062000b1e565b90600052602060002090601f01602090048101928262000727576000855562000773565b82601f106200074257805160ff191683800117855562000773565b8280016001018555821562000773579182015b828111156200077257825182559160200191906001019062000755565b5b50905062000782919062000786565b5090565b5b80821115620007a157600081600090555060010162000787565b5090565b6000620007b460108362000865565b9150620007c18262000bee565b602082019050919050565b6000620007db601f8362000865565b9150620007e88262000c17565b602082019050919050565b620007fe8162000b07565b82525050565b600060208201905081810360008301526200081f81620007a5565b9050919050565b600060208201905081810360008301526200084181620007cc565b9050919050565b60006020820190506200085f6000830184620007f3565b92915050565b600082825260208201905092915050565b6000620008838262000b07565b9150620008908362000b07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008c857620008c762000b54565b5b828201905092915050565b6000808291508390505b60018511156200092557808604811115620008fd57620008fc62000b54565b5b60018516156200090d5780820291505b80810290506200091d8562000be1565b9450620008dd565b94509492505050565b60006200093b8262000b07565b9150620009488362000b11565b9250620009777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200097f565b905092915050565b60008262000991576001905062000a64565b81620009a1576000905062000a64565b8160018114620009ba5760028114620009c557620009fb565b600191505062000a64565b60ff841115620009da57620009d962000b54565b5b8360020a915084821115620009f457620009f362000b54565b5b5062000a64565b5060208310610133831016604e8410600b841016171562000a355782820a90508381111562000a2f5762000a2e62000b54565b5b62000a64565b62000a448484846001620008d3565b9250905081840481111562000a5e5762000a5d62000b54565b5b81810290505b9392505050565b600062000a788262000b07565b915062000a858362000b07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ac15762000ac062000b54565b5b828202905092915050565b600062000ad98262000b07565b915062000ae68362000b07565b92508282101562000afc5762000afb62000b54565b5b828203905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000b3757607f821691505b6020821081141562000b4e5762000b4d62000b83565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6130fb8062000c506000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de5780639711715a11610097578063a9059cbb11610071578063a9059cbb1461043c578063d9d98ce41461046c578063dd62ed3e1461049c578063f2fde38b146104cc57610173565b80639711715a146103d2578063981b24d0146103dc578063a457c2d71461040c57610173565b806370a0823114610336578063715018a61461036657806379cc6790146103705780638456cb591461038c5780638da5cb5b1461039657806395d89b41146103b457610173565b80633f4ba83a116101305780633f4ba83a1461026257806342966c681461026c5780634ee2cd7e146102885780635c975abb146102b85780635cffe9de146102d6578063613255ab1461030657610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633950935114610232575b600080fd5b6101806104e8565b60405161018d91906125bc565b60405180910390f35b6101b060048036038101906101ab91906120aa565b61057a565b6040516101bd91906125a1565b60405180910390f35b6101ce610598565b6040516101db919061285e565b60405180910390f35b6101fe60048036038101906101f99190612057565b6105a2565b60405161020b91906125a1565b60405180910390f35b61021c61069a565b6040516102299190612879565b60405180910390f35b61024c600480360381019061024791906120aa565b6106a3565b60405161025991906125a1565b60405180910390f35b61026a61074f565b005b6102866004803603810190610281919061219f565b6107d5565b005b6102a2600480360381019061029d91906120aa565b6107e9565b6040516102af919061285e565b60405180910390f35b6102c0610859565b6040516102cd91906125a1565b60405180910390f35b6102f060048036038101906102eb9190612117565b610870565b6040516102fd91906125a1565b60405180910390f35b610320600480360381019061031b9190611fea565b610a20565b60405161032d919061285e565b60405180910390f35b610350600480360381019061034b9190611fea565b610a97565b60405161035d919061285e565b60405180910390f35b61036e610adf565b005b61038a600480360381019061038591906120aa565b610b67565b005b610394610be2565b005b61039e610c68565b6040516103ab919061252a565b60405180910390f35b6103bc610c92565b6040516103c991906125bc565b60405180910390f35b6103da610d24565b005b6103f660048036038101906103f1919061219f565b610dab565b604051610403919061285e565b60405180910390f35b610426600480360381019061042191906120aa565b610ddc565b60405161043391906125a1565b60405180910390f35b610456600480360381019061045191906120aa565b610ec7565b60405161046391906125a1565b60405180910390f35b610486600480360381019061048191906120aa565b610ee5565b604051610493919061285e565b60405180910390f35b6104b660048036038101906104b19190612017565b610f5f565b6040516104c3919061285e565b60405180910390f35b6104e660048036038101906104e19190611fea565b610fe6565b005b6060600380546104f790612a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461052390612a2f565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b600061058e6105876111ab565b84846111b3565b6001905092915050565b6000600254905090565b60006105af84848461137e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105fa6111ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561067a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106719061271e565b60405180910390fd5b61068e856106866111ab565b8584036111b3565b60019150509392505050565b60006012905090565b60006107456106b06111ab565b8484600160006106be6111ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074091906128c1565b6111b3565b6001905092915050565b6107576111ab565b73ffffffffffffffffffffffffffffffffffffffff16610775610c68565b73ffffffffffffffffffffffffffffffffffffffff16146107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c29061273e565b60405180910390fd5b6107d36115ff565b565b6107e66107e06111ab565b826116a1565b50565b600080600061083684600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611878565b915091508161084d5761084885610a97565b61084f565b805b9250505092915050565b6000600960149054906101000a900460ff16905090565b60008061087d8686610ee5565b9050610889878661196e565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b81526004016108ed96959493929190612545565b602060405180830381600087803b15801561090757600080fd5b505af115801561091b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093f91906120ea565b1461097f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610976906126be565b60405180910390fd5b600061098b8830610f5f565b9050818661099991906128c1565b8110156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d2906127fe565b60405180910390fd5b6109fc88308489856109ed9190612948565b6109f79190612948565b6111b3565b610a11888388610a0c91906128c1565b6116a1565b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610a5c576000610a90565b610a64610598565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610a8f9190612948565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae76111ab565b73ffffffffffffffffffffffffffffffffffffffff16610b05610c68565b73ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b529061273e565b60405180910390fd5b610b656000611ace565b565b6000610b7a83610b756111ab565b610f5f565b905081811015610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb69061275e565b60405180910390fd5b610bd383610bcb6111ab565b8484036111b3565b610bdd83836116a1565b505050565b610bea6111ab565b73ffffffffffffffffffffffffffffffffffffffff16610c08610c68565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c559061273e565b60405180910390fd5b610c66611b94565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ca190612a2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd90612a2f565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b5050505050905090565b610d2c6111ab565b73ffffffffffffffffffffffffffffffffffffffff16610d4a610c68565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d979061273e565b60405180910390fd5b610da8611c37565b50565b6000806000610dbb846006611878565b9150915081610dd157610dcc610598565b610dd3565b805b92505050919050565b60008060016000610deb6111ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f9061281e565b60405180910390fd5b610ebc610eb36111ab565b858584036111b3565b600191505092915050565b6000610edb610ed46111ab565b848461137e565b6001905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906126fe565b60405180910390fd5b6000905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fee6111ab565b73ffffffffffffffffffffffffffffffffffffffff1661100c610c68565b73ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110599061273e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c99061265e565b60405180910390fd5b6110db81611ace565b50565b6110e9838383611198565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111345761112782611c8d565b61112f611ce0565b611193565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117f5761117283611c8d565b61117a611ce0565b611192565b61118883611c8d565b61119182611c8d565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906127be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061267e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611371919061285e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e59061279e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906125fe565b60405180910390fd5b611469838383611cf4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e69061269e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158291906128c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115e6919061285e565b60405180910390a36115f9848484611d4c565b50505050565b611607610859565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d9061261e565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61168a6111ab565b604051611697919061252a565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117089061277e565b60405180910390fd5b61171d82600083611cf4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a9061263e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546117fa9190612948565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185f919061285e565b60405180910390a361187383600084611d4c565b505050565b600080600084116118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906127de565b60405180910390fd5b6118c6611d51565b841115611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906125de565b60405180910390fd5b60006119208585600001611d6290919063ffffffff16565b9050836000018054905081141561193e576000809250925050611967565b600184600101828154811061195657611955612aee565b5b906000526020600020015492509250505b9250929050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d59061283e565b60405180910390fd5b6119ea60008383611cf4565b80600260008282546119fc91906128c1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5191906128c1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ab6919061285e565b60405180910390a3611aca60008383611d4c565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b9c610859565b15611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd3906126de565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c206111ab565b604051611c2d919061252a565b60405180910390a1565b6000611c436008611e3c565b6000611c4d611d51565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611c7e919061285e565b60405180910390a18091505090565b611cdd600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611cd883610a97565b611e52565b50565b611cf26006611ced610598565b611e52565b565b611cfc610859565b15611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d33906126de565b60405180910390fd5b611d478383836110de565b505050565b505050565b6000611d5d600861119d565b905090565b60008083805490501415611d795760009050611e36565b600080848054905090505b80821015611ddd576000611d988383611ecd565b905084868281548110611dae57611dad612aee565b5b90600052602060002001541115611dc757809150611dd7565b600181611dd491906128c1565b92505b50611d84565b600082118015611e1557508385600184611df79190612948565b81548110611e0857611e07612aee565b5b9060005260206000200154145b15611e3057600182611e279190612948565b92505050611e36565b81925050505b92915050565b6001816000016000828254019250508190555050565b6000611e5c611d51565b905080611e6b84600001611ef3565b1015611ec85782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60006002828418611ede9190612917565b828416611eeb91906128c1565b905092915050565b60008082805490501415611f0a5760009050611f3b565b8160018380549050611f1c9190612948565b81548110611f2d57611f2c612aee565b5b906000526020600020015490505b919050565b600081359050611f4f81613069565b92915050565b600081519050611f6481613080565b92915050565b60008083601f840112611f8057611f7f612b22565b5b8235905067ffffffffffffffff811115611f9d57611f9c612b1d565b5b602083019150836001820283011115611fb957611fb8612b27565b5b9250929050565b600081359050611fcf81613097565b92915050565b600081359050611fe4816130ae565b92915050565b60006020828403121561200057611fff612b31565b5b600061200e84828501611f40565b91505092915050565b6000806040838503121561202e5761202d612b31565b5b600061203c85828601611f40565b925050602061204d85828601611f40565b9150509250929050565b6000806000606084860312156120705761206f612b31565b5b600061207e86828701611f40565b935050602061208f86828701611f40565b92505060406120a086828701611fd5565b9150509250925092565b600080604083850312156120c1576120c0612b31565b5b60006120cf85828601611f40565b92505060206120e085828601611fd5565b9150509250929050565b600060208284031215612100576120ff612b31565b5b600061210e84828501611f55565b91505092915050565b60008060008060006080868803121561213357612132612b31565b5b600061214188828901611fc0565b955050602061215288828901611f40565b945050604061216388828901611fd5565b935050606086013567ffffffffffffffff81111561218457612183612b2c565b5b61219088828901611f6a565b92509250509295509295909350565b6000602082840312156121b5576121b4612b31565b5b60006121c384828501611fd5565b91505092915050565b6121d58161297c565b82525050565b6121e48161298e565b82525050565b60006121f6838561289f565b93506122038385846129ed565b61220c83612b36565b840190509392505050565b600061222282612894565b61222c81856128b0565b935061223c8185602086016129fc565b61224581612b36565b840191505092915050565b600061225d601d836128b0565b915061226882612b47565b602082019050919050565b60006122806023836128b0565b915061228b82612b70565b604082019050919050565b60006122a36014836128b0565b91506122ae82612bbf565b602082019050919050565b60006122c66022836128b0565b91506122d182612be8565b604082019050919050565b60006122e96026836128b0565b91506122f482612c37565b604082019050919050565b600061230c6022836128b0565b915061231782612c86565b604082019050919050565b600061232f6026836128b0565b915061233a82612cd5565b604082019050919050565b60006123526024836128b0565b915061235d82612d24565b604082019050919050565b60006123756010836128b0565b915061238082612d73565b602082019050919050565b6000612398601b836128b0565b91506123a382612d9c565b602082019050919050565b60006123bb6028836128b0565b91506123c682612dc5565b604082019050919050565b60006123de6020836128b0565b91506123e982612e14565b602082019050919050565b60006124016024836128b0565b915061240c82612e3d565b604082019050919050565b60006124246021836128b0565b915061242f82612e8c565b604082019050919050565b60006124476025836128b0565b915061245282612edb565b604082019050919050565b600061246a6024836128b0565b915061247582612f2a565b604082019050919050565b600061248d6016836128b0565b915061249882612f79565b602082019050919050565b60006124b0602f836128b0565b91506124bb82612fa2565b604082019050919050565b60006124d36025836128b0565b91506124de82612ff1565b604082019050919050565b60006124f6601f836128b0565b915061250182613040565b602082019050919050565b612515816129d6565b82525050565b612524816129e0565b82525050565b600060208201905061253f60008301846121cc565b92915050565b600060a08201905061255a60008301896121cc565b61256760208301886121cc565b612574604083018761250c565b612581606083018661250c565b81810360808301526125948184866121ea565b9050979650505050505050565b60006020820190506125b660008301846121db565b92915050565b600060208201905081810360008301526125d68184612217565b905092915050565b600060208201905081810360008301526125f781612250565b9050919050565b6000602082019050818103600083015261261781612273565b9050919050565b6000602082019050818103600083015261263781612296565b9050919050565b60006020820190508181036000830152612657816122b9565b9050919050565b60006020820190508181036000830152612677816122dc565b9050919050565b60006020820190508181036000830152612697816122ff565b9050919050565b600060208201905081810360008301526126b781612322565b9050919050565b600060208201905081810360008301526126d781612345565b9050919050565b600060208201905081810360008301526126f781612368565b9050919050565b600060208201905081810360008301526127178161238b565b9050919050565b60006020820190508181036000830152612737816123ae565b9050919050565b60006020820190508181036000830152612757816123d1565b9050919050565b60006020820190508181036000830152612777816123f4565b9050919050565b6000602082019050818103600083015261279781612417565b9050919050565b600060208201905081810360008301526127b78161243a565b9050919050565b600060208201905081810360008301526127d78161245d565b9050919050565b600060208201905081810360008301526127f781612480565b9050919050565b60006020820190508181036000830152612817816124a3565b9050919050565b60006020820190508181036000830152612837816124c6565b9050919050565b60006020820190508181036000830152612857816124e9565b9050919050565b6000602082019050612873600083018461250c565b92915050565b600060208201905061288e600083018461251b565b92915050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006128cc826129d6565b91506128d7836129d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561290c5761290b612a61565b5b828201905092915050565b6000612922826129d6565b915061292d836129d6565b92508261293d5761293c612a90565b5b828204905092915050565b6000612953826129d6565b915061295e836129d6565b92508282101561297157612970612a61565b5b828203905092915050565b6000612987826129b6565b9050919050565b60008115159050919050565b6000819050919050565b60006129af8261297c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612a1a5780820151818401526020810190506129ff565b83811115612a29576000848401525b50505050565b60006002820490506001821680612a4757607f821691505b60208210811415612a5b57612a5a612abf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f4552433230466c6173684d696e743a20616c6c6f77616e636520646f6573206e60008201527f6f7420616c6c6f7720726566756e640000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6130728161297c565b811461307d57600080fd5b50565b6130898161299a565b811461309457600080fd5b50565b6130a0816129a4565b81146130ab57600080fd5b50565b6130b7816129d6565b81146130c257600080fd5b5056fea264697066735822122044f1478b509b84926ff74a7d8f8d3ee0617bf37cb8d854448051f5c47391435964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de5780639711715a11610097578063a9059cbb11610071578063a9059cbb1461043c578063d9d98ce41461046c578063dd62ed3e1461049c578063f2fde38b146104cc57610173565b80639711715a146103d2578063981b24d0146103dc578063a457c2d71461040c57610173565b806370a0823114610336578063715018a61461036657806379cc6790146103705780638456cb591461038c5780638da5cb5b1461039657806395d89b41146103b457610173565b80633f4ba83a116101305780633f4ba83a1461026257806342966c681461026c5780634ee2cd7e146102885780635c975abb146102b85780635cffe9de146102d6578063613255ab1461030657610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633950935114610232575b600080fd5b6101806104e8565b60405161018d91906125bc565b60405180910390f35b6101b060048036038101906101ab91906120aa565b61057a565b6040516101bd91906125a1565b60405180910390f35b6101ce610598565b6040516101db919061285e565b60405180910390f35b6101fe60048036038101906101f99190612057565b6105a2565b60405161020b91906125a1565b60405180910390f35b61021c61069a565b6040516102299190612879565b60405180910390f35b61024c600480360381019061024791906120aa565b6106a3565b60405161025991906125a1565b60405180910390f35b61026a61074f565b005b6102866004803603810190610281919061219f565b6107d5565b005b6102a2600480360381019061029d91906120aa565b6107e9565b6040516102af919061285e565b60405180910390f35b6102c0610859565b6040516102cd91906125a1565b60405180910390f35b6102f060048036038101906102eb9190612117565b610870565b6040516102fd91906125a1565b60405180910390f35b610320600480360381019061031b9190611fea565b610a20565b60405161032d919061285e565b60405180910390f35b610350600480360381019061034b9190611fea565b610a97565b60405161035d919061285e565b60405180910390f35b61036e610adf565b005b61038a600480360381019061038591906120aa565b610b67565b005b610394610be2565b005b61039e610c68565b6040516103ab919061252a565b60405180910390f35b6103bc610c92565b6040516103c991906125bc565b60405180910390f35b6103da610d24565b005b6103f660048036038101906103f1919061219f565b610dab565b604051610403919061285e565b60405180910390f35b610426600480360381019061042191906120aa565b610ddc565b60405161043391906125a1565b60405180910390f35b610456600480360381019061045191906120aa565b610ec7565b60405161046391906125a1565b60405180910390f35b610486600480360381019061048191906120aa565b610ee5565b604051610493919061285e565b60405180910390f35b6104b660048036038101906104b19190612017565b610f5f565b6040516104c3919061285e565b60405180910390f35b6104e660048036038101906104e19190611fea565b610fe6565b005b6060600380546104f790612a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461052390612a2f565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b600061058e6105876111ab565b84846111b3565b6001905092915050565b6000600254905090565b60006105af84848461137e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105fa6111ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561067a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106719061271e565b60405180910390fd5b61068e856106866111ab565b8584036111b3565b60019150509392505050565b60006012905090565b60006107456106b06111ab565b8484600160006106be6111ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074091906128c1565b6111b3565b6001905092915050565b6107576111ab565b73ffffffffffffffffffffffffffffffffffffffff16610775610c68565b73ffffffffffffffffffffffffffffffffffffffff16146107cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c29061273e565b60405180910390fd5b6107d36115ff565b565b6107e66107e06111ab565b826116a1565b50565b600080600061083684600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611878565b915091508161084d5761084885610a97565b61084f565b805b9250505092915050565b6000600960149054906101000a900460ff16905090565b60008061087d8686610ee5565b9050610889878661196e565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b81526004016108ed96959493929190612545565b602060405180830381600087803b15801561090757600080fd5b505af115801561091b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093f91906120ea565b1461097f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610976906126be565b60405180910390fd5b600061098b8830610f5f565b9050818661099991906128c1565b8110156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d2906127fe565b60405180910390fd5b6109fc88308489856109ed9190612948565b6109f79190612948565b6111b3565b610a11888388610a0c91906128c1565b6116a1565b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610a5c576000610a90565b610a64610598565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610a8f9190612948565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ae76111ab565b73ffffffffffffffffffffffffffffffffffffffff16610b05610c68565b73ffffffffffffffffffffffffffffffffffffffff1614610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b529061273e565b60405180910390fd5b610b656000611ace565b565b6000610b7a83610b756111ab565b610f5f565b905081811015610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb69061275e565b60405180910390fd5b610bd383610bcb6111ab565b8484036111b3565b610bdd83836116a1565b505050565b610bea6111ab565b73ffffffffffffffffffffffffffffffffffffffff16610c08610c68565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c559061273e565b60405180910390fd5b610c66611b94565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ca190612a2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd90612a2f565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b5050505050905090565b610d2c6111ab565b73ffffffffffffffffffffffffffffffffffffffff16610d4a610c68565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d979061273e565b60405180910390fd5b610da8611c37565b50565b6000806000610dbb846006611878565b9150915081610dd157610dcc610598565b610dd3565b805b92505050919050565b60008060016000610deb6111ab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f9061281e565b60405180910390fd5b610ebc610eb36111ab565b858584036111b3565b600191505092915050565b6000610edb610ed46111ab565b848461137e565b6001905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c906126fe565b60405180910390fd5b6000905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fee6111ab565b73ffffffffffffffffffffffffffffffffffffffff1661100c610c68565b73ffffffffffffffffffffffffffffffffffffffff1614611062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110599061273e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c99061265e565b60405180910390fd5b6110db81611ace565b50565b6110e9838383611198565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111345761112782611c8d565b61112f611ce0565b611193565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117f5761117283611c8d565b61117a611ce0565b611192565b61118883611c8d565b61119182611c8d565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906127be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061267e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611371919061285e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e59061279e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611455906125fe565b60405180910390fd5b611469838383611cf4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e69061269e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158291906128c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115e6919061285e565b60405180910390a36115f9848484611d4c565b50505050565b611607610859565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d9061261e565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61168a6111ab565b604051611697919061252a565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117089061277e565b60405180910390fd5b61171d82600083611cf4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a9061263e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546117fa9190612948565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161185f919061285e565b60405180910390a361187383600084611d4c565b505050565b600080600084116118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906127de565b60405180910390fd5b6118c6611d51565b841115611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906125de565b60405180910390fd5b60006119208585600001611d6290919063ffffffff16565b9050836000018054905081141561193e576000809250925050611967565b600184600101828154811061195657611955612aee565b5b906000526020600020015492509250505b9250929050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d59061283e565b60405180910390fd5b6119ea60008383611cf4565b80600260008282546119fc91906128c1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5191906128c1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ab6919061285e565b60405180910390a3611aca60008383611d4c565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b9c610859565b15611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd3906126de565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c206111ab565b604051611c2d919061252a565b60405180910390a1565b6000611c436008611e3c565b6000611c4d611d51565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611c7e919061285e565b60405180910390a18091505090565b611cdd600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611cd883610a97565b611e52565b50565b611cf26006611ced610598565b611e52565b565b611cfc610859565b15611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d33906126de565b60405180910390fd5b611d478383836110de565b505050565b505050565b6000611d5d600861119d565b905090565b60008083805490501415611d795760009050611e36565b600080848054905090505b80821015611ddd576000611d988383611ecd565b905084868281548110611dae57611dad612aee565b5b90600052602060002001541115611dc757809150611dd7565b600181611dd491906128c1565b92505b50611d84565b600082118015611e1557508385600184611df79190612948565b81548110611e0857611e07612aee565b5b9060005260206000200154145b15611e3057600182611e279190612948565b92505050611e36565b81925050505b92915050565b6001816000016000828254019250508190555050565b6000611e5c611d51565b905080611e6b84600001611ef3565b1015611ec85782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b60006002828418611ede9190612917565b828416611eeb91906128c1565b905092915050565b60008082805490501415611f0a5760009050611f3b565b8160018380549050611f1c9190612948565b81548110611f2d57611f2c612aee565b5b906000526020600020015490505b919050565b600081359050611f4f81613069565b92915050565b600081519050611f6481613080565b92915050565b60008083601f840112611f8057611f7f612b22565b5b8235905067ffffffffffffffff811115611f9d57611f9c612b1d565b5b602083019150836001820283011115611fb957611fb8612b27565b5b9250929050565b600081359050611fcf81613097565b92915050565b600081359050611fe4816130ae565b92915050565b60006020828403121561200057611fff612b31565b5b600061200e84828501611f40565b91505092915050565b6000806040838503121561202e5761202d612b31565b5b600061203c85828601611f40565b925050602061204d85828601611f40565b9150509250929050565b6000806000606084860312156120705761206f612b31565b5b600061207e86828701611f40565b935050602061208f86828701611f40565b92505060406120a086828701611fd5565b9150509250925092565b600080604083850312156120c1576120c0612b31565b5b60006120cf85828601611f40565b92505060206120e085828601611fd5565b9150509250929050565b600060208284031215612100576120ff612b31565b5b600061210e84828501611f55565b91505092915050565b60008060008060006080868803121561213357612132612b31565b5b600061214188828901611fc0565b955050602061215288828901611f40565b945050604061216388828901611fd5565b935050606086013567ffffffffffffffff81111561218457612183612b2c565b5b61219088828901611f6a565b92509250509295509295909350565b6000602082840312156121b5576121b4612b31565b5b60006121c384828501611fd5565b91505092915050565b6121d58161297c565b82525050565b6121e48161298e565b82525050565b60006121f6838561289f565b93506122038385846129ed565b61220c83612b36565b840190509392505050565b600061222282612894565b61222c81856128b0565b935061223c8185602086016129fc565b61224581612b36565b840191505092915050565b600061225d601d836128b0565b915061226882612b47565b602082019050919050565b60006122806023836128b0565b915061228b82612b70565b604082019050919050565b60006122a36014836128b0565b91506122ae82612bbf565b602082019050919050565b60006122c66022836128b0565b91506122d182612be8565b604082019050919050565b60006122e96026836128b0565b91506122f482612c37565b604082019050919050565b600061230c6022836128b0565b915061231782612c86565b604082019050919050565b600061232f6026836128b0565b915061233a82612cd5565b604082019050919050565b60006123526024836128b0565b915061235d82612d24565b604082019050919050565b60006123756010836128b0565b915061238082612d73565b602082019050919050565b6000612398601b836128b0565b91506123a382612d9c565b602082019050919050565b60006123bb6028836128b0565b91506123c682612dc5565b604082019050919050565b60006123de6020836128b0565b91506123e982612e14565b602082019050919050565b60006124016024836128b0565b915061240c82612e3d565b604082019050919050565b60006124246021836128b0565b915061242f82612e8c565b604082019050919050565b60006124476025836128b0565b915061245282612edb565b604082019050919050565b600061246a6024836128b0565b915061247582612f2a565b604082019050919050565b600061248d6016836128b0565b915061249882612f79565b602082019050919050565b60006124b0602f836128b0565b91506124bb82612fa2565b604082019050919050565b60006124d36025836128b0565b91506124de82612ff1565b604082019050919050565b60006124f6601f836128b0565b915061250182613040565b602082019050919050565b612515816129d6565b82525050565b612524816129e0565b82525050565b600060208201905061253f60008301846121cc565b92915050565b600060a08201905061255a60008301896121cc565b61256760208301886121cc565b612574604083018761250c565b612581606083018661250c565b81810360808301526125948184866121ea565b9050979650505050505050565b60006020820190506125b660008301846121db565b92915050565b600060208201905081810360008301526125d68184612217565b905092915050565b600060208201905081810360008301526125f781612250565b9050919050565b6000602082019050818103600083015261261781612273565b9050919050565b6000602082019050818103600083015261263781612296565b9050919050565b60006020820190508181036000830152612657816122b9565b9050919050565b60006020820190508181036000830152612677816122dc565b9050919050565b60006020820190508181036000830152612697816122ff565b9050919050565b600060208201905081810360008301526126b781612322565b9050919050565b600060208201905081810360008301526126d781612345565b9050919050565b600060208201905081810360008301526126f781612368565b9050919050565b600060208201905081810360008301526127178161238b565b9050919050565b60006020820190508181036000830152612737816123ae565b9050919050565b60006020820190508181036000830152612757816123d1565b9050919050565b60006020820190508181036000830152612777816123f4565b9050919050565b6000602082019050818103600083015261279781612417565b9050919050565b600060208201905081810360008301526127b78161243a565b9050919050565b600060208201905081810360008301526127d78161245d565b9050919050565b600060208201905081810360008301526127f781612480565b9050919050565b60006020820190508181036000830152612817816124a3565b9050919050565b60006020820190508181036000830152612837816124c6565b9050919050565b60006020820190508181036000830152612857816124e9565b9050919050565b6000602082019050612873600083018461250c565b92915050565b600060208201905061288e600083018461251b565b92915050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006128cc826129d6565b91506128d7836129d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561290c5761290b612a61565b5b828201905092915050565b6000612922826129d6565b915061292d836129d6565b92508261293d5761293c612a90565b5b828204905092915050565b6000612953826129d6565b915061295e836129d6565b92508282101561297157612970612a61565b5b828203905092915050565b6000612987826129b6565b9050919050565b60008115159050919050565b6000819050919050565b60006129af8261297c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612a1a5780820151818401526020810190506129ff565b83811115612a29576000848401525b50505050565b60006002820490506001821680612a4757607f821691505b60208210811415612a5b57612a5a612abf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f4552433230466c6173684d696e743a20616c6c6f77616e636520646f6573206e60008201527f6f7420616c6c6f7720726566756e640000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6130728161297c565b811461307d57600080fd5b50565b6130898161299a565b811461309457600080fd5b50565b6130a0816129a4565b81146130ab57600080fd5b50565b6130b7816129d6565b81146130c257600080fd5b5056fea264697066735822122044f1478b509b84926ff74a7d8f8d3ee0617bf37cb8d854448051f5c47391435964736f6c63430008070033

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.