Token Pebbles.finance

Overview CRC20

Price
$0.00 @ 0.000000 CRO
Fully Diluted Market Cap
Total Supply:
1,000,000,000 Pebbles.finance

Holders:
8,669 addresses
Contract:
0x5f9b46a71bbcca6159e6dc901d1660f8c91443760x5f9b46A71BbcCa6159E6dc901D1660f8c9144376

Decimals:
18

Social Profiles:
Not Available, Update ?

Filtered by Token Holder (CroKing: Old CRK Token)

Balance
4,000 Pebbles.finance

Value
$0.00
0x065de42e28e42d90c2052a1b49e7f83806af0e1f
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PebblesFinance

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-08-03
*/

// SPDX-License-Identifier: MIT


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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() {
        _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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _balances[to] += amount;

        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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



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

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

// File: contracts/Bristols.sol


pragma solidity ^0.8.4;




contract PebblesFinance is ERC20, ERC20Burnable, Ownable {
    IERC20 public  token_transfer;

     event Sent(bytes32 Contract_name,address _token,address _targetAccount, uint256 _amount);
    constructor() ERC20("Pebbles.finance", "Pebbles.finance") {
        _mint(address(this), 1000000000 * 10 ** decimals());
    }
        function _multiSendToken(address payable _token, address[]  memory  _accounts, uint256[] memory _amounts) payable  public  {
            //require(token_transfer.balanceOf(address(this))>1000);
            token_transfer=IERC20(_token);
        for (uint256 _idx = 0; _idx < _accounts.length; _idx++) {
            token_transfer.transfer(payable(_accounts[_idx]), _amounts[_idx]);
            emit Sent( "Pebbles.finance",_token, _accounts[_idx], _amounts[_idx]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"Contract_name","type":"bytes32"},{"indexed":false,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"address","name":"_targetAccount","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Sent","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 payable","name":"_token","type":"address"},{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"_multiSendToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token_transfer","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f506562626c65732e66696e616e636500000000000000000000000000000000008152506040518060400160405280600f81526020017f506562626c65732e66696e616e6365000000000000000000000000000000000081525081600390805190602001906200009692919062000372565b508060049080519060200190620000af92919062000372565b505050620000d2620000c66200011860201b60201c565b6200012060201b60201c565b6200011230620000e7620001e660201b60201c565b600a620000f5919062000562565b633b9aca006200010691906200069f565b620001ef60201b60201c565b620007e1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000259906200045a565b60405180910390fd5b62000276600083836200036860201b60201c565b80600260008282546200028a9190620004aa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e19190620004aa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034891906200047c565b60405180910390a362000364600083836200036d60201b60201c565b5050565b505050565b505050565b828054620003809062000717565b90600052602060002090601f016020900481019282620003a45760008555620003f0565b82601f10620003bf57805160ff1916838001178555620003f0565b82800160010185558215620003f0579182015b82811115620003ef578251825591602001919060010190620003d2565b5b509050620003ff919062000403565b5090565b5b808211156200041e57600081600090555060010162000404565b5090565b600062000431601f8362000499565b91506200043e82620007b8565b602082019050919050565b620004548162000700565b82525050565b60006020820190508181036000830152620004758162000422565b9050919050565b600060208201905062000493600083018462000449565b92915050565b600082825260208201905092915050565b6000620004b78262000700565b9150620004c48362000700565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004fc57620004fb6200074d565b5b828201905092915050565b6000808291508390505b600185111562000559578086048111156200053157620005306200074d565b5b6001851615620005415780820291505b80810290506200055185620007ab565b945062000511565b94509492505050565b60006200056f8262000700565b91506200057c836200070a565b9250620005ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b3565b905092915050565b600082620005c5576001905062000698565b81620005d5576000905062000698565b8160018114620005ee5760028114620005f9576200062f565b600191505062000698565b60ff8411156200060e576200060d6200074d565b5b8360020a9150848211156200062857620006276200074d565b5b5062000698565b5060208310610133831016604e8410600b8410161715620006695782820a9050838111156200066357620006626200074d565b5b62000698565b62000678848484600162000507565b925090508184048111156200069257620006916200074d565b5b81810290505b9392505050565b6000620006ac8262000700565b9150620006b98362000700565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006f557620006f46200074d565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200073057607f821691505b602082108114156200074757620007466200077c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6121cd80620007f16000396000f3fe6080604052600436106101095760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461036d578063a9059cbb146103aa578063db1850ec146103e7578063dd62ed3e14610403578063f2fde38b1461044057610109565b8063715018a6146102d757806379cc6790146102ee5780638da5cb5b1461031757806395d89b411461034257610109565b806323b872dd116100dc57806323b872dd146101cc578063313ce56714610209578063395093511461023457806342966c681461027157806370a082311461029a57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323a98bd7146101a1575b600080fd5b34801561011a57600080fd5b50610123610469565b6040516101309190611895565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611547565b6104fb565b60405161016d919061185f565b60405180910390f35b34801561018257600080fd5b5061018b61051e565b6040516101989190611a5a565b60405180910390f35b3480156101ad57600080fd5b506101b6610528565b6040516101c3919061187a565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee91906114f4565b61054e565b604051610200919061185f565b60405180910390f35b34801561021557600080fd5b5061021e61057d565b60405161022b9190611a75565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611547565b610586565b604051610268919061185f565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906115b4565b6105bd565b005b3480156102a657600080fd5b506102c160048036038101906102bc91906113fc565b6105d1565b6040516102ce9190611a5a565b60405180910390f35b3480156102e357600080fd5b506102ec610619565b005b3480156102fa57600080fd5b5061031560048036038101906103109190611547565b61062d565b005b34801561032357600080fd5b5061032c61064d565b604051610339919061181b565b60405180910390f35b34801561034e57600080fd5b50610357610677565b6040516103649190611895565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190611547565b610709565b6040516103a1919061185f565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190611547565b610780565b6040516103de919061185f565b60405180910390f35b61040160048036038101906103fc9190611429565b6107a3565b005b34801561040f57600080fd5b5061042a600480360381019061042591906114b4565b61095c565b6040516104379190611a5a565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906113fc565b6109e3565b005b60606003805461047890611c95565b80601f01602080910402602001604051908101604052809291908181526020018280546104a490611c95565b80156104f15780601f106104c6576101008083540402835291602001916104f1565b820191906000526020600020905b8154815290600101906020018083116104d457829003601f168201915b5050505050905090565b600080610506610a67565b9050610513818585610a6f565b600191505092915050565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610559610a67565b9050610566858285610c3a565b610571858585610cc6565b60019150509392505050565b60006012905090565b600080610591610a67565b90506105b28185856105a3858961095c565b6105ad9190611b29565b610a6f565b600191505092915050565b6105ce6105c8610a67565b82610f47565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062161111e565b61062b600061119c565b565b61063f82610639610a67565b83610c3a565b6106498282610f47565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068690611c95565b80601f01602080910402602001604051908101604052809291908181526020018280546106b290611c95565b80156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b5050505050905090565b600080610714610a67565b90506000610722828661095c565b905083811015610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e90611a3a565b60405180910390fd5b6107748286868403610a6f565b60019250505092915050565b60008061078b610a67565b9050610798818585610cc6565b600191505092915050565b82600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060005b825181101561095657600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84838151811061084157610840611d9f565b5b602002602001015184848151811061085c5761085b611d9f565b5b60200260200101516040518363ffffffff1660e01b8152600401610881929190611836565b602060405180830381600087803b15801561089b57600080fd5b505af11580156108af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d39190611587565b507fc6f80666a3cac738098b8e3f65fdcf49736e2b8d5c3defe55dc43e269015545b8484838151811061090957610908611d9f565b5b602002602001015184848151811061092457610923611d9f565b5b602002602001015160405161093b939291906118f7565b60405180910390a1808061094e90611cf8565b9150506107e7565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109eb61111e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a529061193a565b60405180910390fd5b610a648161119c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690611a1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b469061195a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2d9190611a5a565b60405180910390a3505050565b6000610c46848461095c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cc05781811015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061197a565b60405180910390fd5b610cbf8484848403610a6f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906119fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906118b7565b60405180910390fd5b610db1838383611262565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e9061199a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eca9190611b29565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2e9190611a5a565b60405180910390a3610f41848484611267565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906119da565b60405180910390fd5b610fc382600083611262565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611040906118d7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110a09190611b7f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111059190611a5a565b60405180910390a361111983600084611267565b505050565b611126610a67565b73ffffffffffffffffffffffffffffffffffffffff1661114461064d565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906119ba565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600061127f61127a84611ab5565b611a90565b905080838252602082019050828560208602820111156112a2576112a1611e02565b5b60005b858110156112d257816112b8888261134c565b8452602084019350602083019250506001810190506112a5565b5050509392505050565b60006112ef6112ea84611ae1565b611a90565b9050808382526020820190508285602086028201111561131257611311611e02565b5b60005b85811015611342578161132888826113e7565b845260208401935060208301925050600181019050611315565b5050509392505050565b60008135905061135b8161213b565b92915050565b60008135905061137081612152565b92915050565b600082601f83011261138b5761138a611dfd565b5b813561139b84826020860161126c565b91505092915050565b600082601f8301126113b9576113b8611dfd565b5b81356113c98482602086016112dc565b91505092915050565b6000815190506113e181612169565b92915050565b6000813590506113f681612180565b92915050565b60006020828403121561141257611411611e0c565b5b60006114208482850161134c565b91505092915050565b60008060006060848603121561144257611441611e0c565b5b600061145086828701611361565b935050602084013567ffffffffffffffff81111561147157611470611e07565b5b61147d86828701611376565b925050604084013567ffffffffffffffff81111561149e5761149d611e07565b5b6114aa868287016113a4565b9150509250925092565b600080604083850312156114cb576114ca611e0c565b5b60006114d98582860161134c565b92505060206114ea8582860161134c565b9150509250929050565b60008060006060848603121561150d5761150c611e0c565b5b600061151b8682870161134c565b935050602061152c8682870161134c565b925050604061153d868287016113e7565b9150509250925092565b6000806040838503121561155e5761155d611e0c565b5b600061156c8582860161134c565b925050602061157d858286016113e7565b9150509250929050565b60006020828403121561159d5761159c611e0c565b5b60006115ab848285016113d2565b91505092915050565b6000602082840312156115ca576115c9611e0c565b5b60006115d8848285016113e7565b91505092915050565b6115ea81611c1a565b82525050565b6115f981611bb3565b82525050565b61160881611bd7565b82525050565b61161781611c2c565b82525050565b600061162882611b0d565b6116328185611b18565b9350611642818560208601611c62565b61164b81611e11565b840191505092915050565b6000611663602383611b18565b915061166e82611e22565b604082019050919050565b6000611686602283611b18565b915061169182611e71565b604082019050919050565b7f506562626c65732e66696e616e63650000000000000000000000000000000000815250565b60006116cf602683611b18565b91506116da82611ec0565b604082019050919050565b60006116f2602283611b18565b91506116fd82611f0f565b604082019050919050565b6000611715601d83611b18565b915061172082611f5e565b602082019050919050565b6000611738602683611b18565b915061174382611f87565b604082019050919050565b600061175b602083611b18565b915061176682611fd6565b602082019050919050565b600061177e602183611b18565b915061178982611fff565b604082019050919050565b60006117a1602583611b18565b91506117ac8261204e565b604082019050919050565b60006117c4602483611b18565b91506117cf8261209d565b604082019050919050565b60006117e7602583611b18565b91506117f2826120ec565b604082019050919050565b61180681611c03565b82525050565b61181581611c0d565b82525050565b600060208201905061183060008301846115f0565b92915050565b600060408201905061184b60008301856115e1565b61185860208301846117fd565b9392505050565b600060208201905061187460008301846115ff565b92915050565b600060208201905061188f600083018461160e565b92915050565b600060208201905081810360008301526118af818461161d565b905092915050565b600060208201905081810360008301526118d081611656565b9050919050565b600060208201905081810360008301526118f081611679565b9050919050565b600060808201905061190b6000830161169c565b61191860208301866115e1565b61192560408301856115f0565b61193260608301846117fd565b949350505050565b60006020820190508181036000830152611953816116c2565b9050919050565b60006020820190508181036000830152611973816116e5565b9050919050565b6000602082019050818103600083015261199381611708565b9050919050565b600060208201905081810360008301526119b38161172b565b9050919050565b600060208201905081810360008301526119d38161174e565b9050919050565b600060208201905081810360008301526119f381611771565b9050919050565b60006020820190508181036000830152611a1381611794565b9050919050565b60006020820190508181036000830152611a33816117b7565b9050919050565b60006020820190508181036000830152611a53816117da565b9050919050565b6000602082019050611a6f60008301846117fd565b92915050565b6000602082019050611a8a600083018461180c565b92915050565b6000611a9a611aab565b9050611aa68282611cc7565b919050565b6000604051905090565b600067ffffffffffffffff821115611ad057611acf611dce565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611afc57611afb611dce565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000611b3482611c03565b9150611b3f83611c03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b7457611b73611d41565b5b828201905092915050565b6000611b8a82611c03565b9150611b9583611c03565b925082821015611ba857611ba7611d41565b5b828203905092915050565b6000611bbe82611be3565b9050919050565b6000611bd082611be3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611c2582611c3e565b9050919050565b6000611c3782611c3e565b9050919050565b6000611c4982611c50565b9050919050565b6000611c5b82611be3565b9050919050565b60005b83811015611c80578082015181840152602081019050611c65565b83811115611c8f576000848401525b50505050565b60006002820490506001821680611cad57607f821691505b60208210811415611cc157611cc0611d70565b5b50919050565b611cd082611e11565b810181811067ffffffffffffffff82111715611cef57611cee611dce565b5b80604052505050565b6000611d0382611c03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611d3657611d35611d41565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61214481611bb3565b811461214f57600080fd5b50565b61215b81611bc5565b811461216657600080fd5b50565b61217281611bd7565b811461217d57600080fd5b50565b61218981611c03565b811461219457600080fd5b5056fea264697066735822122008cb15c574321218a64a9629f3bf119b12c9260d707b0b83a6ff036f4f55d88364736f6c63430008070033

Deployed ByteCode Sourcemap

21354:826:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9334:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11685:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10454:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21418:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12466:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10296:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13170:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20703:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10625:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2757:103;;;;;;;;;;;;;:::i;:::-;;21113:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9553:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13911:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10958:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21690:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11214:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9334:100;9388:13;9421:5;9414:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9334:100;:::o;11685:201::-;11768:4;11785:13;11801:12;:10;:12::i;:::-;11785:28;;11824:32;11833:5;11840:7;11849:6;11824:8;:32::i;:::-;11874:4;11867:11;;;11685:201;;;;:::o;10454:108::-;10515:7;10542:12;;10535:19;;10454:108;:::o;21418:29::-;;;;;;;;;;;;;:::o;12466:295::-;12597:4;12614:15;12632:12;:10;:12::i;:::-;12614:30;;12655:38;12671:4;12677:7;12686:6;12655:15;:38::i;:::-;12704:27;12714:4;12720:2;12724:6;12704:9;:27::i;:::-;12749:4;12742:11;;;12466:295;;;;;:::o;10296:93::-;10354:5;10379:2;10372:9;;10296:93;:::o;13170:238::-;13258:4;13275:13;13291:12;:10;:12::i;:::-;13275:28;;13314:64;13323:5;13330:7;13367:10;13339:25;13349:5;13356:7;13339:9;:25::i;:::-;:38;;;;:::i;:::-;13314:8;:64::i;:::-;13396:4;13389:11;;;13170:238;;;;:::o;20703:91::-;20759:27;20765:12;:10;:12::i;:::-;20779:6;20759:5;:27::i;:::-;20703:91;:::o;10625:127::-;10699:7;10726:9;:18;10736:7;10726:18;;;;;;;;;;;;;;;;10719:25;;10625:127;;;:::o;2757:103::-;1995:13;:11;:13::i;:::-;2822:30:::1;2849:1;2822:18;:30::i;:::-;2757:103::o:0;21113:164::-;21190:46;21206:7;21215:12;:10;:12::i;:::-;21229:6;21190:15;:46::i;:::-;21247:22;21253:7;21262:6;21247:5;:22::i;:::-;21113:164;;:::o;2109:87::-;2155:7;2182:6;;;;;;;;;;;2175:13;;2109:87;:::o;9553:104::-;9609:13;9642:7;9635:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9553:104;:::o;13911:436::-;14004:4;14021:13;14037:12;:10;:12::i;:::-;14021:28;;14060:24;14087:25;14097:5;14104:7;14087:9;:25::i;:::-;14060:52;;14151:15;14131:16;:35;;14123:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14244:60;14253:5;14260:7;14288:15;14269:16;:34;14244:8;:60::i;:::-;14335:4;14328:11;;;;13911:436;;;;:::o;10958:193::-;11037:4;11054:13;11070:12;:10;:12::i;:::-;11054:28;;11093;11103:5;11110:2;11114:6;11093:9;:28::i;:::-;11139:4;11132:11;;;10958:193;;;;:::o;21690:487::-;21920:6;21898:14;;:29;;;;;;;;;;;;;;;;;;21943:12;21938:232;21968:9;:16;21961:4;:23;21938:232;;;22009:14;;;;;;;;;;;:23;;;22041:9;22051:4;22041:15;;;;;;;;:::i;:::-;;;;;;;;22059:8;22068:4;22059:14;;;;;;;;:::i;:::-;;;;;;;;22009:65;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22094:64;22118:6;22126:9;22136:4;22126:15;;;;;;;;:::i;:::-;;;;;;;;22143:8;22152:4;22143:14;;;;;;;;:::i;:::-;;;;;;;;22094:64;;;;;;;;:::i;:::-;;;;;;;;21986:6;;;;;:::i;:::-;;;;21938:232;;;;21690:487;;;:::o;11214:151::-;11303:7;11330:11;:18;11342:5;11330:18;;;;;;;;;;;;;;;:27;11349:7;11330:27;;;;;;;;;;;;;;;;11323:34;;11214:151;;;;:::o;3015:201::-;1995:13;:11;:13::i;:::-;3124:1:::1;3104:22;;:8;:22;;;;3096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3180:28;3199:8;3180:18;:28::i;:::-;3015:201:::0;:::o;660:98::-;713:7;740:10;733:17;;660:98;:::o;17536:380::-;17689:1;17672:19;;:5;:19;;;;17664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17770:1;17751:21;;:7;:21;;;;17743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17854:6;17824:11;:18;17836:5;17824:18;;;;;;;;;;;;;;;:27;17843:7;17824:27;;;;;;;;;;;;;;;:36;;;;17892:7;17876:32;;17885:5;17876:32;;;17901:6;17876:32;;;;;;:::i;:::-;;;;;;;;17536:380;;;:::o;18207:453::-;18342:24;18369:25;18379:5;18386:7;18369:9;:25::i;:::-;18342:52;;18429:17;18409:16;:37;18405:248;;18491:6;18471:16;:26;;18463:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18575:51;18584:5;18591:7;18619:6;18600:16;:25;18575:8;:51::i;:::-;18405:248;18331:329;18207:453;;;:::o;14817:671::-;14964:1;14948:18;;:4;:18;;;;14940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15041:1;15027:16;;:2;:16;;;;15019:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15096:38;15117:4;15123:2;15127:6;15096:20;:38::i;:::-;15147:19;15169:9;:15;15179:4;15169:15;;;;;;;;;;;;;;;;15147:37;;15218:6;15203:11;:21;;15195:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15335:6;15321:11;:20;15303:9;:15;15313:4;15303:15;;;;;;;;;;;;;;;:38;;;;15380:6;15363:9;:13;15373:2;15363:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15419:2;15404:26;;15413:4;15404:26;;;15423:6;15404:26;;;;;;:::i;:::-;;;;;;;;15443:37;15463:4;15469:2;15473:6;15443:19;:37::i;:::-;14929:559;14817:671;;;:::o;16507:591::-;16610:1;16591:21;;:7;:21;;;;16583:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16663:49;16684:7;16701:1;16705:6;16663:20;:49::i;:::-;16725:22;16750:9;:18;16760:7;16750:18;;;;;;;;;;;;;;;;16725:43;;16805:6;16787:14;:24;;16779:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16924:6;16907:14;:23;16886:9;:18;16896:7;16886:18;;;;;;;;;;;;;;;:44;;;;16968:6;16952:12;;:22;;;;;;;:::i;:::-;;;;;;;;17018:1;16992:37;;17001:7;16992:37;;;17022:6;16992:37;;;;;;:::i;:::-;;;;;;;;17042:48;17062:7;17079:1;17083:6;17042:19;:48::i;:::-;16572:526;16507:591;;:::o;2274:132::-;2349:12;:10;:12::i;:::-;2338:23;;:7;:5;:7::i;:::-;:23;;;2330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2274:132::o;3376:191::-;3450:16;3469:6;;;;;;;;;;;3450:25;;3495:8;3486:6;;:17;;;;;;;;;;;;;;;;;;3550:8;3519:40;;3540:8;3519:40;;;;;;;;;;;;3439:128;3376:191;:::o;19260:125::-;;;;:::o;19989:124::-;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:139::-;1543:5;1581:6;1568:20;1559:29;;1597:33;1624:5;1597:33;:::i;:::-;1497:139;;;;:::o;1642:155::-;1696:5;1734:6;1721:20;1712:29;;1750:41;1785:5;1750:41;:::i;:::-;1642:155;;;;:::o;1820:370::-;1891:5;1940:3;1933:4;1925:6;1921:17;1917:27;1907:122;;1948:79;;:::i;:::-;1907:122;2065:6;2052:20;2090:94;2180:3;2172:6;2165:4;2157:6;2153:17;2090:94;:::i;:::-;2081:103;;1897:293;1820:370;;;;:::o;2213:::-;2284:5;2333:3;2326:4;2318:6;2314:17;2310:27;2300:122;;2341:79;;:::i;:::-;2300:122;2458:6;2445:20;2483:94;2573:3;2565:6;2558:4;2550:6;2546:17;2483:94;:::i;:::-;2474:103;;2290:293;2213:370;;;;:::o;2589:137::-;2643:5;2674:6;2668:13;2659:22;;2690:30;2714:5;2690:30;:::i;:::-;2589:137;;;;:::o;2732:139::-;2778:5;2816:6;2803:20;2794:29;;2832:33;2859:5;2832:33;:::i;:::-;2732:139;;;;:::o;2877:329::-;2936:6;2985:2;2973:9;2964:7;2960:23;2956:32;2953:119;;;2991:79;;:::i;:::-;2953:119;3111:1;3136:53;3181:7;3172:6;3161:9;3157:22;3136:53;:::i;:::-;3126:63;;3082:117;2877:329;;;;:::o;3212:1055::-;3347:6;3355;3363;3412:2;3400:9;3391:7;3387:23;3383:32;3380:119;;;3418:79;;:::i;:::-;3380:119;3538:1;3563:61;3616:7;3607:6;3596:9;3592:22;3563:61;:::i;:::-;3553:71;;3509:125;3701:2;3690:9;3686:18;3673:32;3732:18;3724:6;3721:30;3718:117;;;3754:79;;:::i;:::-;3718:117;3859:78;3929:7;3920:6;3909:9;3905:22;3859:78;:::i;:::-;3849:88;;3644:303;4014:2;4003:9;3999:18;3986:32;4045:18;4037:6;4034:30;4031:117;;;4067:79;;:::i;:::-;4031:117;4172:78;4242:7;4233:6;4222:9;4218:22;4172:78;:::i;:::-;4162:88;;3957:303;3212:1055;;;;;:::o;4273:474::-;4341:6;4349;4398:2;4386:9;4377:7;4373:23;4369:32;4366:119;;;4404:79;;:::i;:::-;4366:119;4524:1;4549:53;4594:7;4585:6;4574:9;4570:22;4549:53;:::i;:::-;4539:63;;4495:117;4651:2;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4622:118;4273:474;;;;;:::o;4753:619::-;4830:6;4838;4846;4895:2;4883:9;4874:7;4870:23;4866:32;4863:119;;;4901:79;;:::i;:::-;4863:119;5021:1;5046:53;5091:7;5082:6;5071:9;5067:22;5046:53;:::i;:::-;5036:63;;4992:117;5148:2;5174:53;5219:7;5210:6;5199:9;5195:22;5174:53;:::i;:::-;5164:63;;5119:118;5276:2;5302:53;5347:7;5338:6;5327:9;5323:22;5302:53;:::i;:::-;5292:63;;5247:118;4753:619;;;;;:::o;5378:474::-;5446:6;5454;5503:2;5491:9;5482:7;5478:23;5474:32;5471:119;;;5509:79;;:::i;:::-;5471:119;5629:1;5654:53;5699:7;5690:6;5679:9;5675:22;5654:53;:::i;:::-;5644:63;;5600:117;5756:2;5782:53;5827:7;5818:6;5807:9;5803:22;5782:53;:::i;:::-;5772:63;;5727:118;5378:474;;;;;:::o;5858:345::-;5925:6;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:61;6178:7;6169:6;6158:9;6154:22;6125:61;:::i;:::-;6115:71;;6071:125;5858:345;;;;:::o;6209:329::-;6268:6;6317:2;6305:9;6296:7;6292:23;6288:32;6285:119;;;6323:79;;:::i;:::-;6285:119;6443:1;6468:53;6513:7;6504:6;6493:9;6489:22;6468:53;:::i;:::-;6458:63;;6414:117;6209:329;;;;:::o;6544:147::-;6639:45;6678:5;6639:45;:::i;:::-;6634:3;6627:58;6544:147;;:::o;6697:118::-;6784:24;6802:5;6784:24;:::i;:::-;6779:3;6772:37;6697:118;;:::o;6821:109::-;6902:21;6917:5;6902:21;:::i;:::-;6897:3;6890:34;6821:109;;:::o;6936:159::-;7037:51;7082:5;7037:51;:::i;:::-;7032:3;7025:64;6936:159;;:::o;7101:364::-;7189:3;7217:39;7250:5;7217:39;:::i;:::-;7272:71;7336:6;7331:3;7272:71;:::i;:::-;7265:78;;7352:52;7397:6;7392:3;7385:4;7378:5;7374:16;7352:52;:::i;:::-;7429:29;7451:6;7429:29;:::i;:::-;7424:3;7420:39;7413:46;;7193:272;7101:364;;;;:::o;7471:366::-;7613:3;7634:67;7698:2;7693:3;7634:67;:::i;:::-;7627:74;;7710:93;7799:3;7710:93;:::i;:::-;7828:2;7823:3;7819:12;7812:19;;7471:366;;;:::o;7843:::-;7985:3;8006:67;8070:2;8065:3;8006:67;:::i;:::-;7999:74;;8082:93;8171:3;8082:93;:::i;:::-;8200:2;8195:3;8191:12;8184:19;;7843:366;;;:::o;8215:175::-;8366:17;8361:3;8354:30;8215:175;:::o;8396:366::-;8538:3;8559:67;8623:2;8618:3;8559:67;:::i;:::-;8552:74;;8635:93;8724:3;8635:93;:::i;:::-;8753:2;8748:3;8744:12;8737:19;;8396:366;;;:::o;8768:::-;8910:3;8931:67;8995:2;8990:3;8931:67;:::i;:::-;8924:74;;9007:93;9096:3;9007:93;:::i;:::-;9125:2;9120:3;9116:12;9109:19;;8768:366;;;:::o;9140:::-;9282:3;9303:67;9367:2;9362:3;9303:67;:::i;:::-;9296:74;;9379:93;9468:3;9379:93;:::i;:::-;9497:2;9492:3;9488:12;9481:19;;9140:366;;;:::o;9512:::-;9654:3;9675:67;9739:2;9734:3;9675:67;:::i;:::-;9668:74;;9751:93;9840:3;9751:93;:::i;:::-;9869:2;9864:3;9860:12;9853:19;;9512:366;;;:::o;9884:::-;10026:3;10047:67;10111:2;10106:3;10047:67;:::i;:::-;10040:74;;10123:93;10212:3;10123:93;:::i;:::-;10241:2;10236:3;10232:12;10225:19;;9884:366;;;:::o;10256:::-;10398:3;10419:67;10483:2;10478:3;10419:67;:::i;:::-;10412:74;;10495:93;10584:3;10495:93;:::i;:::-;10613:2;10608:3;10604:12;10597:19;;10256:366;;;:::o;10628:::-;10770:3;10791:67;10855:2;10850:3;10791:67;:::i;:::-;10784:74;;10867:93;10956:3;10867:93;:::i;:::-;10985:2;10980:3;10976:12;10969:19;;10628:366;;;:::o;11000:::-;11142:3;11163:67;11227:2;11222:3;11163:67;:::i;:::-;11156:74;;11239:93;11328:3;11239:93;:::i;:::-;11357:2;11352:3;11348:12;11341:19;;11000:366;;;:::o;11372:::-;11514:3;11535:67;11599:2;11594:3;11535:67;:::i;:::-;11528:74;;11611:93;11700:3;11611:93;:::i;:::-;11729:2;11724:3;11720:12;11713:19;;11372:366;;;:::o;11744:118::-;11831:24;11849:5;11831:24;:::i;:::-;11826:3;11819:37;11744:118;;:::o;11868:112::-;11951:22;11967:5;11951:22;:::i;:::-;11946:3;11939:35;11868:112;;:::o;11986:222::-;12079:4;12117:2;12106:9;12102:18;12094:26;;12130:71;12198:1;12187:9;12183:17;12174:6;12130:71;:::i;:::-;11986:222;;;;:::o;12214:348::-;12343:4;12381:2;12370:9;12366:18;12358:26;;12394:79;12470:1;12459:9;12455:17;12446:6;12394:79;:::i;:::-;12483:72;12551:2;12540:9;12536:18;12527:6;12483:72;:::i;:::-;12214:348;;;;;:::o;12568:210::-;12655:4;12693:2;12682:9;12678:18;12670:26;;12706:65;12768:1;12757:9;12753:17;12744:6;12706:65;:::i;:::-;12568:210;;;;:::o;12784:250::-;12891:4;12929:2;12918:9;12914:18;12906:26;;12942:85;13024:1;13013:9;13009:17;13000:6;12942:85;:::i;:::-;12784:250;;;;:::o;13040:313::-;13153:4;13191:2;13180:9;13176:18;13168:26;;13240:9;13234:4;13230:20;13226:1;13215:9;13211:17;13204:47;13268:78;13341:4;13332:6;13268:78;:::i;:::-;13260:86;;13040:313;;;;:::o;13359:419::-;13525:4;13563:2;13552:9;13548:18;13540:26;;13612:9;13606:4;13602:20;13598:1;13587:9;13583:17;13576:47;13640:131;13766:4;13640:131;:::i;:::-;13632:139;;13359:419;;;:::o;13784:::-;13950:4;13988:2;13977:9;13973:18;13965:26;;14037:9;14031:4;14027:20;14023:1;14012:9;14008:17;14001:47;14065:131;14191:4;14065:131;:::i;:::-;14057:139;;13784:419;;;:::o;14209:695::-;14457:4;14495:3;14484:9;14480:19;14472:27;;14509:134;14640:1;14629:9;14625:17;14509:134;:::i;:::-;14653:80;14729:2;14718:9;14714:18;14705:6;14653:80;:::i;:::-;14743:72;14811:2;14800:9;14796:18;14787:6;14743:72;:::i;:::-;14825;14893:2;14882:9;14878:18;14869:6;14825:72;:::i;:::-;14209:695;;;;;;:::o;14910:419::-;15076:4;15114:2;15103:9;15099:18;15091:26;;15163:9;15157:4;15153:20;15149:1;15138:9;15134:17;15127:47;15191:131;15317:4;15191:131;:::i;:::-;15183:139;;14910:419;;;:::o;15335:::-;15501:4;15539:2;15528:9;15524:18;15516:26;;15588:9;15582:4;15578:20;15574:1;15563:9;15559:17;15552:47;15616:131;15742:4;15616:131;:::i;:::-;15608:139;;15335:419;;;:::o;15760:::-;15926:4;15964:2;15953:9;15949:18;15941:26;;16013:9;16007:4;16003:20;15999:1;15988:9;15984:17;15977:47;16041:131;16167:4;16041:131;:::i;:::-;16033:139;;15760:419;;;:::o;16185:::-;16351:4;16389:2;16378:9;16374:18;16366:26;;16438:9;16432:4;16428:20;16424:1;16413:9;16409:17;16402:47;16466:131;16592:4;16466:131;:::i;:::-;16458:139;;16185:419;;;:::o;16610:::-;16776:4;16814:2;16803:9;16799:18;16791:26;;16863:9;16857:4;16853:20;16849:1;16838:9;16834:17;16827:47;16891:131;17017:4;16891:131;:::i;:::-;16883:139;;16610:419;;;:::o;17035:::-;17201:4;17239:2;17228:9;17224:18;17216:26;;17288:9;17282:4;17278:20;17274:1;17263:9;17259:17;17252:47;17316:131;17442:4;17316:131;:::i;:::-;17308:139;;17035:419;;;:::o;17460:::-;17626:4;17664:2;17653:9;17649:18;17641:26;;17713:9;17707:4;17703:20;17699:1;17688:9;17684:17;17677:47;17741:131;17867:4;17741:131;:::i;:::-;17733:139;;17460:419;;;:::o;17885:::-;18051:4;18089:2;18078:9;18074:18;18066:26;;18138:9;18132:4;18128:20;18124:1;18113:9;18109:17;18102:47;18166:131;18292:4;18166:131;:::i;:::-;18158:139;;17885:419;;;:::o;18310:::-;18476:4;18514:2;18503:9;18499:18;18491:26;;18563:9;18557:4;18553:20;18549:1;18538:9;18534:17;18527:47;18591:131;18717:4;18591:131;:::i;:::-;18583:139;;18310:419;;;:::o;18735:222::-;18828:4;18866:2;18855:9;18851:18;18843:26;;18879:71;18947:1;18936:9;18932:17;18923:6;18879:71;:::i;:::-;18735:222;;;;:::o;18963:214::-;19052:4;19090:2;19079:9;19075:18;19067:26;;19103:67;19167:1;19156:9;19152:17;19143:6;19103:67;:::i;:::-;18963:214;;;;:::o;19183:129::-;19217:6;19244:20;;:::i;:::-;19234:30;;19273:33;19301:4;19293:6;19273:33;:::i;:::-;19183:129;;;:::o;19318:75::-;19351:6;19384:2;19378:9;19368:19;;19318:75;:::o;19399:311::-;19476:4;19566:18;19558:6;19555:30;19552:56;;;19588:18;;:::i;:::-;19552:56;19638:4;19630:6;19626:17;19618:25;;19698:4;19692;19688:15;19680:23;;19399:311;;;:::o;19716:::-;19793:4;19883:18;19875:6;19872:30;19869:56;;;19905:18;;:::i;:::-;19869:56;19955:4;19947:6;19943:17;19935:25;;20015:4;20009;20005:15;19997:23;;19716:311;;;:::o;20033:99::-;20085:6;20119:5;20113:12;20103:22;;20033:99;;;:::o;20138:169::-;20222:11;20256:6;20251:3;20244:19;20296:4;20291:3;20287:14;20272:29;;20138:169;;;;:::o;20313:305::-;20353:3;20372:20;20390:1;20372:20;:::i;:::-;20367:25;;20406:20;20424:1;20406:20;:::i;:::-;20401:25;;20560:1;20492:66;20488:74;20485:1;20482:81;20479:107;;;20566:18;;:::i;:::-;20479:107;20610:1;20607;20603:9;20596:16;;20313:305;;;;:::o;20624:191::-;20664:4;20684:20;20702:1;20684:20;:::i;:::-;20679:25;;20718:20;20736:1;20718:20;:::i;:::-;20713:25;;20757:1;20754;20751:8;20748:34;;;20762:18;;:::i;:::-;20748:34;20807:1;20804;20800:9;20792:17;;20624:191;;;;:::o;20821:96::-;20858:7;20887:24;20905:5;20887:24;:::i;:::-;20876:35;;20821:96;;;:::o;20923:104::-;20968:7;20997:24;21015:5;20997:24;:::i;:::-;20986:35;;20923:104;;;:::o;21033:90::-;21067:7;21110:5;21103:13;21096:21;21085:32;;21033:90;;;:::o;21129:126::-;21166:7;21206:42;21199:5;21195:54;21184:65;;21129:126;;;:::o;21261:77::-;21298:7;21327:5;21316:16;;21261:77;;;:::o;21344:86::-;21379:7;21419:4;21412:5;21408:16;21397:27;;21344:86;;;:::o;21436:134::-;21494:9;21527:37;21558:5;21527:37;:::i;:::-;21514:50;;21436:134;;;:::o;21576:140::-;21640:9;21673:37;21704:5;21673:37;:::i;:::-;21660:50;;21576:140;;;:::o;21722:126::-;21772:9;21805:37;21836:5;21805:37;:::i;:::-;21792:50;;21722:126;;;:::o;21854:113::-;21904:9;21937:24;21955:5;21937:24;:::i;:::-;21924:37;;21854:113;;;:::o;21973:307::-;22041:1;22051:113;22065:6;22062:1;22059:13;22051:113;;;22150:1;22145:3;22141:11;22135:18;22131:1;22126:3;22122:11;22115:39;22087:2;22084:1;22080:10;22075:15;;22051:113;;;22182:6;22179:1;22176:13;22173:101;;;22262:1;22253:6;22248:3;22244:16;22237:27;22173:101;22022:258;21973:307;;;:::o;22286:320::-;22330:6;22367:1;22361:4;22357:12;22347:22;;22414:1;22408:4;22404:12;22435:18;22425:81;;22491:4;22483:6;22479:17;22469:27;;22425:81;22553:2;22545:6;22542:14;22522:18;22519:38;22516:84;;;22572:18;;:::i;:::-;22516:84;22337:269;22286:320;;;:::o;22612:281::-;22695:27;22717:4;22695:27;:::i;:::-;22687:6;22683:40;22825:6;22813:10;22810:22;22789:18;22777:10;22774:34;22771:62;22768:88;;;22836:18;;:::i;:::-;22768:88;22876:10;22872:2;22865:22;22655:238;22612:281;;:::o;22899:233::-;22938:3;22961:24;22979:5;22961:24;:::i;:::-;22952:33;;23007:66;23000:5;22997:77;22994:103;;;23077:18;;:::i;:::-;22994:103;23124:1;23117:5;23113:13;23106:20;;22899:233;;;:::o;23138:180::-;23186:77;23183:1;23176:88;23283:4;23280:1;23273:15;23307:4;23304:1;23297:15;23324:180;23372:77;23369:1;23362:88;23469:4;23466:1;23459:15;23493:4;23490:1;23483:15;23510:180;23558:77;23555:1;23548:88;23655:4;23652:1;23645:15;23679:4;23676:1;23669:15;23696:180;23744:77;23741:1;23734:88;23841:4;23838:1;23831:15;23865:4;23862:1;23855:15;23882:117;23991:1;23988;23981:12;24005:117;24114:1;24111;24104:12;24128:117;24237:1;24234;24227:12;24251:117;24360:1;24357;24350:12;24374:102;24415:6;24466:2;24462:7;24457:2;24450:5;24446:14;24442:28;24432:38;;24374:102;;;:::o;24482:222::-;24622:34;24618:1;24610:6;24606:14;24599:58;24691:5;24686:2;24678:6;24674:15;24667:30;24482:222;:::o;24710:221::-;24850:34;24846:1;24838:6;24834:14;24827:58;24919:4;24914:2;24906:6;24902:15;24895:29;24710:221;:::o;24937:225::-;25077:34;25073:1;25065:6;25061:14;25054:58;25146:8;25141:2;25133:6;25129:15;25122:33;24937:225;:::o;25168:221::-;25308:34;25304:1;25296:6;25292:14;25285:58;25377:4;25372:2;25364:6;25360:15;25353:29;25168:221;:::o;25395:179::-;25535:31;25531:1;25523:6;25519:14;25512:55;25395:179;:::o;25580:225::-;25720:34;25716:1;25708:6;25704:14;25697:58;25789:8;25784:2;25776:6;25772:15;25765:33;25580:225;:::o;25811:182::-;25951:34;25947:1;25939:6;25935:14;25928:58;25811:182;:::o;25999:220::-;26139:34;26135:1;26127:6;26123:14;26116:58;26208:3;26203:2;26195:6;26191:15;26184:28;25999:220;:::o;26225:224::-;26365:34;26361:1;26353:6;26349:14;26342:58;26434:7;26429:2;26421:6;26417:15;26410:32;26225:224;:::o;26455:223::-;26595:34;26591:1;26583:6;26579:14;26572:58;26664:6;26659:2;26651:6;26647:15;26640:31;26455:223;:::o;26684:224::-;26824:34;26820:1;26812:6;26808:14;26801:58;26893:7;26888:2;26880:6;26876:15;26869:32;26684:224;:::o;26914:122::-;26987:24;27005:5;26987:24;:::i;:::-;26980:5;26977:35;26967:63;;27026:1;27023;27016:12;26967:63;26914:122;:::o;27042:138::-;27123:32;27149:5;27123:32;:::i;:::-;27116:5;27113:43;27103:71;;27170:1;27167;27160:12;27103:71;27042:138;:::o;27186:116::-;27256:21;27271:5;27256:21;:::i;:::-;27249:5;27246:32;27236:60;;27292:1;27289;27282:12;27236:60;27186:116;:::o;27308:122::-;27381:24;27399:5;27381:24;:::i;:::-;27374:5;27371:35;27361:63;;27420:1;27417;27410:12;27361:63;27308:122;:::o

Swarm Source

ipfs://08cb15c574321218a64a9629f3bf119b12c9260d707b0b83a6ff036f4f55d883
Loading