ETH Price: $3,123.55 (+2.10%)
Gas: 2 Gwei

Token

FRENSCHAD (FRENSCHAD)
 

Overview

Max Total Supply

10,000,000 FRENSCHAD

Holders

157

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,823.701894621591388243 FRENSCHAD

Value
$0.00
0x1d27685d57260c697918a0b2fd81230c920827ea
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:
FRENSCHAD

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-13
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.16;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

/**
 * @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 Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @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() external view virtual override returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @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
    ) external virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

/**
 * @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 FRENSCHAD is ERC20, Ownable {
    
    uint8 private _decimals = 18;
    uint256 public taxFee;
    uint256 public maxTxAmount;
    uint256 public maxWalletAmount;
    address public marketingWallet;
    address public treasuryWallet;
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;


    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 public _numTokensSellToAddToETH = 1_000 * 10 ** _decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = 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() ERC20("FRENSCHAD", "FRENSCHAD") {
        
        address router;
        if (block.chainid == 56) {
            router = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // BSC Pancake Mainnet Router
        } else if (block.chainid == 97) {
            router = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // BSC Pancake Testnet Router
        } else if (block.chainid == 1 || block.chainid == 5) {
            router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH Uniswap Mainnet % Testnet
        } else {
            revert();
        }

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            router
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        taxFee = 5;
        maxTxAmount = 200_000 * 10 ** _decimals;
        maxWalletAmount = 200_000 * 10 ** _decimals;
        marketingWallet = 0x37402F3630F908A330c75F7F3B108E9fCDd5F9D6;
        treasuryWallet = 0x2f9Fd7BC9B9BD609C8931962fCfd4A61fFC37373;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = true;
        _isExcludedFromFee[treasuryWallet] = true;

        _mint(msg.sender, (10_000_000 * 10 ** _decimals));
    }

    /**
     * @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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            balanceOf(from) >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        if (
            (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify
        ) {
            if (from != uniswapV2Pair) {
                if (balanceOf(address(this)) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(balanceOf(address(this)));
                    uint256 marketingPart = ((40*address(this).balance)/100);
                    uint256 treasuryPart = ((60*address(this).balance)/100);
                    bool sentM = payable(marketingWallet).send(
                        marketingPart
                    );
                    bool sentT = payable(marketingWallet).send(
                        treasuryPart
                    );
                    require(sentM && sentT , "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } else {
                require(
                    amount <= maxTxAmount,
                    "ERC20: transfer amount exceeds the max transaction amount"
                );
                if (from == uniswapV2Pair) {
                    require(
                        (amount + balanceOf(to)) <= maxWalletAmount,
                        "ERC20: balance amount exceeded max wallet amount limit"
                    );
                }

                uint256 marketingShare = ((amount * taxFee) / 100);
                transferAmount = amount - marketingShare;
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), marketingShare);
            }
            super._transfer(from, to, transferAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(
        uint256 tokenAmount,
        uint256 ethAmount
    ) private lockTheSwap {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet) public onlyOwner {
        marketingWallet = newWallet;
    }

    function changeTaxFee(uint256 _taxFee) public onlyOwner {
        require(
            _taxFee <= 10,
            "ERC20: total tax must not be greater than 100"
        );

        taxFee = _taxFee;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount) public onlyOwner {
        maxTxAmount = _maxTxAmount;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
        maxWalletAmount = _maxWalletAmount;
    }

    function changeNumberTokenSellToAddToETH(uint256 _num) public onlyOwner {
        _numTokensSellToAddToETH = _num;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"changeNumberTokenSellToAddToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxFee","type":"uint256"}],"name":"changeTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526012600560146101000a81548160ff021916908360ff1602179055506000600b55600560149054906101000a900460ff16600a62000043919062000a22565b6103e862000052919062000a73565b600d553480156200006257600080fd5b506040518060400160405280600981526020017f4652454e534348414400000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4652454e534348414400000000000000000000000000000000000000000000008152508160039081620000e0919062000d2e565b508060049081620000f2919062000d2e565b50505062000115620001096200067560201b60201c565b6200067d60201b60201c565b6000603846036200013d577310ed43c718714eb63d5aa57b78b54704e256024e90506200019d565b60614603620001635773d99d1c33f9fc3444f8101754abc46c52416550d190506200019c565b6001461480620001735750600546145b156200019657737a250d5630b4cf539739df2c5dacb4c659f2488d90506200019b565b600080fd5b5b5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000214919062000e7f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a2919062000e7f565b6040518363ffffffff1660e01b8152600401620002c192919062000ec2565b6020604051808303816000875af1158015620002e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000307919062000e7f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506005600681905550600560149054906101000a900460ff16600a62000394919062000a22565b62030d40620003a4919062000a73565b600781905550600560149054906101000a900460ff16600a620003c8919062000a22565b62030d40620003d8919062000a73565b6008819055507337402f3630f908a330c75f7f3b108e9fcdd5f9d6600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732f9fd7bc9b9bd609c8931962fcfd4a61ffc37373600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200066d33600560149054906101000a900460ff16600a62000651919062000a22565b6298968062000661919062000a73565b6200074360201b60201c565b505062000fdb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ac9062000f50565b60405180910390fd5b8060026000828254620007c9919062000f72565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200087c919062000fbe565b60405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200091657808604811115620008ee57620008ed62000888565b5b6001851615620008fe5780820291505b80810290506200090e85620008b7565b9450620008ce565b94509492505050565b60008262000931576001905062000a04565b8162000941576000905062000a04565b81600181146200095a576002811462000965576200099b565b600191505062000a04565b60ff8411156200097a576200097962000888565b5b8360020a91508482111562000994576200099362000888565b5b5062000a04565b5060208310610133831016604e8410600b8410161715620009d55782820a905083811115620009cf57620009ce62000888565b5b62000a04565b620009e48484846001620008c4565b92509050818404811115620009fe57620009fd62000888565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000a2f8262000a0b565b915062000a3c8362000a15565b925062000a6b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200091f565b905092915050565b600062000a808262000a0b565b915062000a8d8362000a0b565b925082820262000a9d8162000a0b565b9150828204841483151762000ab75762000ab662000888565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4057607f821691505b60208210810362000b565762000b5562000af8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bc07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b81565b62000bcc868362000b81565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000c0f62000c0962000c038462000a0b565b62000be4565b62000a0b565b9050919050565b6000819050919050565b62000c2b8362000bee565b62000c4362000c3a8262000c16565b84845462000b8e565b825550505050565b600090565b62000c5a62000c4b565b62000c6781848462000c20565b505050565b5b8181101562000c8f5762000c8360008262000c50565b60018101905062000c6d565b5050565b601f82111562000cde5762000ca88162000b5c565b62000cb38462000b71565b8101602085101562000cc3578190505b62000cdb62000cd28562000b71565b83018262000c6c565b50505b505050565b600082821c905092915050565b600062000d036000198460080262000ce3565b1980831691505092915050565b600062000d1e838362000cf0565b9150826002028217905092915050565b62000d398262000abe565b67ffffffffffffffff81111562000d555762000d5462000ac9565b5b62000d61825462000b27565b62000d6e82828562000c93565b600060209050601f83116001811462000da6576000841562000d91578287015190505b62000d9d858262000d10565b86555062000e0d565b601f19841662000db68662000b5c565b60005b8281101562000de05784890151825560018201915060208501945060208101905062000db9565b8683101562000e00578489015162000dfc601f89168262000cf0565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e478262000e1a565b9050919050565b62000e598162000e3a565b811462000e6557600080fd5b50565b60008151905062000e798162000e4e565b92915050565b60006020828403121562000e985762000e9762000e15565b5b600062000ea88482850162000e68565b91505092915050565b62000ebc8162000e3a565b82525050565b600060408201905062000ed9600083018562000eb1565b62000ee8602083018462000eb1565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f38601f8362000eef565b915062000f458262000f00565b602082019050919050565b6000602082019050818103600083015262000f6b8162000f29565b9050919050565b600062000f7f8262000a0b565b915062000f8c8362000a0b565b925082820190508082111562000fa75762000fa662000888565b5b92915050565b62000fb88162000a0b565b82525050565b600060208201905062000fd5600083018462000fad565b92915050565b60805160a0516128a4620010326000396000818161080d01528181610f8901528181610fde0152818161104c01526112f501526000818161074a01528181611611015281816116f2015261171901526128a46000f3fe6080604052600436106101a05760003560e01c806375f0a874116100ec578063a9059cbb1161008a578063d7fdd19f11610064578063d7fdd19f146105d9578063dd62ed3e14610602578063eac05ab51461063f578063f2fde38b1461066a576101a7565b8063a9059cbb14610548578063aa4bde2814610585578063bb85c6d1146105b0576101a7565b80638da5cb5b116100c65780638da5cb5b1461048a57806395d89b41146104b5578063a071dcf4146104e0578063a457c2d71461050b576101a7565b806375f0a8741461040b57806381bfdcca146104365780638c0b5e221461045f576101a7565b80633950935111610159578063584e8d2a11610133578063584e8d2a14610365578063677daa571461038e57806370a08231146103b7578063715018a6146103f4576101a7565b806339509351146102d25780634626402b1461030f57806349bd5a5e1461033a576101a7565b806306fdde03146101ac578063095ea7b3146101d75780631694505e1461021457806318160ddd1461023f57806323b872dd1461026a578063313ce567146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610693565b6040516101ce9190611ac7565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611b82565b610725565b60405161020b9190611bdd565b60405180910390f35b34801561022057600080fd5b50610229610748565b6040516102369190611c57565b60405180910390f35b34801561024b57600080fd5b5061025461076c565b6040516102619190611c81565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611c9c565b610776565b60405161029e9190611bdd565b60405180910390f35b3480156102b357600080fd5b506102bc6107a5565b6040516102c99190611d0b565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190611b82565b6107ae565b6040516103069190611bdd565b60405180910390f35b34801561031b57600080fd5b506103246107e5565b6040516103319190611d35565b60405180910390f35b34801561034657600080fd5b5061034f61080b565b60405161035c9190611d35565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190611d50565b61082f565b005b34801561039a57600080fd5b506103b560048036038101906103b09190611d50565b610885565b005b3480156103c357600080fd5b506103de60048036038101906103d99190611d7d565b610897565b6040516103eb9190611c81565b60405180910390f35b34801561040057600080fd5b506104096108df565b005b34801561041757600080fd5b506104206108f3565b60405161042d9190611d35565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611d50565b610919565b005b34801561046b57600080fd5b5061047461092b565b6040516104819190611c81565b60405180910390f35b34801561049657600080fd5b5061049f610931565b6040516104ac9190611d35565b60405180910390f35b3480156104c157600080fd5b506104ca61095b565b6040516104d79190611ac7565b60405180910390f35b3480156104ec57600080fd5b506104f56109ed565b6040516105029190611c81565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190611b82565b6109f3565b60405161053f9190611bdd565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190611b82565b610a6a565b60405161057c9190611bdd565b60405180910390f35b34801561059157600080fd5b5061059a610a8d565b6040516105a79190611c81565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190611d7d565b610a93565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190611d50565b610adf565b005b34801561060e57600080fd5b5061062960048036038101906106249190611daa565b610af1565b6040516106369190611c81565b60405180910390f35b34801561064b57600080fd5b50610654610b78565b6040516106619190611c81565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190611d7d565b610b7e565b005b6060600380546106a290611e19565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90611e19565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610c01565b905061073d818585610c09565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610781610c01565b905061078e858285610dd2565b610799858585610e5e565b60019150509392505050565b60006012905090565b6000806107b9610c01565b90506107da8185856107cb8589610af1565b6107d59190611e79565b610c09565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b610837611413565b600a81111561087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290611f1f565b60405180910390fd5b8060068190555050565b61088d611413565b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e7611413565b6108f16000611491565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610921611413565b8060088190555050565b60075481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461096a90611e19565b80601f016020809104026020016040519081016040528092919081815260200182805461099690611e19565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b60065481565b6000806109fe610c01565b90506000610a0c8286610af1565b905083811015610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890611fb1565b60405180910390fd5b610a5e8286868403610c09565b60019250505092915050565b600080610a75610c01565b9050610a82818585610e5e565b600191505092915050565b60085481565b610a9b611413565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ae7611413565b80600d8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b610b86611413565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90612043565b60405180910390fd5b610bfe81611491565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f906120d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90612167565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc59190611c81565b60405180910390a3505050565b6000610dde8484610af1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e585781811015610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906121d3565b60405180910390fd5b610e578484848403610c09565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612265565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f33906122f7565b60405180910390fd5b80610f4684610897565b1015610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612389565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061102c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110455750600e60009054906101000a900460ff16155b15611402577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111fe57600d546110a930610897565b106111fd576110bf6110ba30610897565b611557565b600060644760286110d091906123a9565b6110da919061241a565b90506000606447603c6110ed91906123a9565b6110f7919061241a565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505090506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505090508180156111b95750805b6111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90612497565b60405180910390fd5b505050505b5b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112a15750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112ae578190506113f1565b6007548211156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612529565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361139f5760085461135284610897565b8361135d9190611e79565b111561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906125bb565b60405180910390fd5b5b60006064600654846113b191906123a9565b6113bb919061241a565b905080836113c991906125db565b915080600b60008282546113dd9190611e79565b925050819055506113ef8530836117d7565b505b6113fc8484836117d7565b5061140e565b61140d8383836117d7565b5b505050565b61141b610c01565b73ffffffffffffffffffffffffffffffffffffffff16611439610931565b73ffffffffffffffffffffffffffffffffffffffff161461148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061265b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600e60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561158f5761158e61267b565b5b6040519080825280602002602001820160405280156115bd5781602001602082028036833780820191505090505b50905030816000815181106115d5576115d46126aa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561167a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169e91906126ee565b816001815181106116b2576116b16126aa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611717307f000000000000000000000000000000000000000000000000000000000000000084610c09565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426117669190611e79565b6040518663ffffffff1660e01b8152600401611786959493929190612814565b600060405180830381600087803b1580156117a057600080fd5b505af11580156117b4573d6000803e3d6000fd5b50505050506000600e60006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90612265565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac906122f7565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290612389565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a299190611c81565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a71578082015181840152602081019050611a56565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a9982611a37565b611aa38185611a42565b9350611ab3818560208601611a53565b611abc81611a7d565b840191505092915050565b60006020820190508181036000830152611ae18184611a8e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b1982611aee565b9050919050565b611b2981611b0e565b8114611b3457600080fd5b50565b600081359050611b4681611b20565b92915050565b6000819050919050565b611b5f81611b4c565b8114611b6a57600080fd5b50565b600081359050611b7c81611b56565b92915050565b60008060408385031215611b9957611b98611ae9565b5b6000611ba785828601611b37565b9250506020611bb885828601611b6d565b9150509250929050565b60008115159050919050565b611bd781611bc2565b82525050565b6000602082019050611bf26000830184611bce565b92915050565b6000819050919050565b6000611c1d611c18611c1384611aee565b611bf8565b611aee565b9050919050565b6000611c2f82611c02565b9050919050565b6000611c4182611c24565b9050919050565b611c5181611c36565b82525050565b6000602082019050611c6c6000830184611c48565b92915050565b611c7b81611b4c565b82525050565b6000602082019050611c966000830184611c72565b92915050565b600080600060608486031215611cb557611cb4611ae9565b5b6000611cc386828701611b37565b9350506020611cd486828701611b37565b9250506040611ce586828701611b6d565b9150509250925092565b600060ff82169050919050565b611d0581611cef565b82525050565b6000602082019050611d206000830184611cfc565b92915050565b611d2f81611b0e565b82525050565b6000602082019050611d4a6000830184611d26565b92915050565b600060208284031215611d6657611d65611ae9565b5b6000611d7484828501611b6d565b91505092915050565b600060208284031215611d9357611d92611ae9565b5b6000611da184828501611b37565b91505092915050565b60008060408385031215611dc157611dc0611ae9565b5b6000611dcf85828601611b37565b9250506020611de085828601611b37565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e3157607f821691505b602082108103611e4457611e43611dea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e8482611b4c565b9150611e8f83611b4c565b9250828201905080821115611ea757611ea6611e4a565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611f09602d83611a42565b9150611f1482611ead565b604082019050919050565b60006020820190508181036000830152611f3881611efc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f9b602583611a42565b9150611fa682611f3f565b604082019050919050565b60006020820190508181036000830152611fca81611f8e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061202d602683611a42565b915061203882611fd1565b604082019050919050565b6000602082019050818103600083015261205c81612020565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120bf602483611a42565b91506120ca82612063565b604082019050919050565b600060208201905081810360008301526120ee816120b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612151602283611a42565b915061215c826120f5565b604082019050919050565b6000602082019050818103600083015261218081612144565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006121bd601d83611a42565b91506121c882612187565b602082019050919050565b600060208201905081810360008301526121ec816121b0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061224f602583611a42565b915061225a826121f3565b604082019050919050565b6000602082019050818103600083015261227e81612242565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122e1602383611a42565b91506122ec82612285565b604082019050919050565b60006020820190508181036000830152612310816122d4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612373602683611a42565b915061237e82612317565b604082019050919050565b600060208201905081810360008301526123a281612366565b9050919050565b60006123b482611b4c565b91506123bf83611b4c565b92508282026123cd81611b4c565b915082820484148315176123e4576123e3611e4a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061242582611b4c565b915061243083611b4c565b9250826124405761243f6123eb565b5b828204905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612481601283611a42565b915061248c8261244b565b602082019050919050565b600060208201905081810360008301526124b081612474565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612513603983611a42565b915061251e826124b7565b604082019050919050565b6000602082019050818103600083015261254281612506565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006125a5603683611a42565b91506125b082612549565b604082019050919050565b600060208201905081810360008301526125d481612598565b9050919050565b60006125e682611b4c565b91506125f183611b4c565b925082820390508181111561260957612608611e4a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612645602083611a42565b91506126508261260f565b602082019050919050565b6000602082019050818103600083015261267481612638565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506126e881611b20565b92915050565b60006020828403121561270457612703611ae9565b5b6000612712848285016126d9565b91505092915050565b6000819050919050565b600061274061273b6127368461271b565b611bf8565b611b4c565b9050919050565b61275081612725565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61278b81611b0e565b82525050565b600061279d8383612782565b60208301905092915050565b6000602082019050919050565b60006127c182612756565b6127cb8185612761565b93506127d683612772565b8060005b838110156128075781516127ee8882612791565b97506127f9836127a9565b9250506001810190506127da565b5085935050505092915050565b600060a0820190506128296000830188611c72565b6128366020830187612747565b818103604083015261284881866127b6565b90506128576060830185611d26565b6128646080830184611c72565b969550505050505056fea264697066735822122073290634627634e10125f379340d8e195e62e4776e67b17cc2320ccae25d79c164736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806375f0a874116100ec578063a9059cbb1161008a578063d7fdd19f11610064578063d7fdd19f146105d9578063dd62ed3e14610602578063eac05ab51461063f578063f2fde38b1461066a576101a7565b8063a9059cbb14610548578063aa4bde2814610585578063bb85c6d1146105b0576101a7565b80638da5cb5b116100c65780638da5cb5b1461048a57806395d89b41146104b5578063a071dcf4146104e0578063a457c2d71461050b576101a7565b806375f0a8741461040b57806381bfdcca146104365780638c0b5e221461045f576101a7565b80633950935111610159578063584e8d2a11610133578063584e8d2a14610365578063677daa571461038e57806370a08231146103b7578063715018a6146103f4576101a7565b806339509351146102d25780634626402b1461030f57806349bd5a5e1461033a576101a7565b806306fdde03146101ac578063095ea7b3146101d75780631694505e1461021457806318160ddd1461023f57806323b872dd1461026a578063313ce567146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610693565b6040516101ce9190611ac7565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611b82565b610725565b60405161020b9190611bdd565b60405180910390f35b34801561022057600080fd5b50610229610748565b6040516102369190611c57565b60405180910390f35b34801561024b57600080fd5b5061025461076c565b6040516102619190611c81565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611c9c565b610776565b60405161029e9190611bdd565b60405180910390f35b3480156102b357600080fd5b506102bc6107a5565b6040516102c99190611d0b565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190611b82565b6107ae565b6040516103069190611bdd565b60405180910390f35b34801561031b57600080fd5b506103246107e5565b6040516103319190611d35565b60405180910390f35b34801561034657600080fd5b5061034f61080b565b60405161035c9190611d35565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190611d50565b61082f565b005b34801561039a57600080fd5b506103b560048036038101906103b09190611d50565b610885565b005b3480156103c357600080fd5b506103de60048036038101906103d99190611d7d565b610897565b6040516103eb9190611c81565b60405180910390f35b34801561040057600080fd5b506104096108df565b005b34801561041757600080fd5b506104206108f3565b60405161042d9190611d35565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611d50565b610919565b005b34801561046b57600080fd5b5061047461092b565b6040516104819190611c81565b60405180910390f35b34801561049657600080fd5b5061049f610931565b6040516104ac9190611d35565b60405180910390f35b3480156104c157600080fd5b506104ca61095b565b6040516104d79190611ac7565b60405180910390f35b3480156104ec57600080fd5b506104f56109ed565b6040516105029190611c81565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190611b82565b6109f3565b60405161053f9190611bdd565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190611b82565b610a6a565b60405161057c9190611bdd565b60405180910390f35b34801561059157600080fd5b5061059a610a8d565b6040516105a79190611c81565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190611d7d565b610a93565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190611d50565b610adf565b005b34801561060e57600080fd5b5061062960048036038101906106249190611daa565b610af1565b6040516106369190611c81565b60405180910390f35b34801561064b57600080fd5b50610654610b78565b6040516106619190611c81565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190611d7d565b610b7e565b005b6060600380546106a290611e19565b80601f01602080910402602001604051908101604052809291908181526020018280546106ce90611e19565b801561071b5780601f106106f05761010080835404028352916020019161071b565b820191906000526020600020905b8154815290600101906020018083116106fe57829003601f168201915b5050505050905090565b600080610730610c01565b905061073d818585610c09565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610781610c01565b905061078e858285610dd2565b610799858585610e5e565b60019150509392505050565b60006012905090565b6000806107b9610c01565b90506107da8185856107cb8589610af1565b6107d59190611e79565b610c09565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f00000000000000000000000079b2a7d42d4f35922cd6819a893a733d82d76efe81565b610837611413565b600a81111561087b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087290611f1f565b60405180910390fd5b8060068190555050565b61088d611413565b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e7611413565b6108f16000611491565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610921611413565b8060088190555050565b60075481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461096a90611e19565b80601f016020809104026020016040519081016040528092919081815260200182805461099690611e19565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b60065481565b6000806109fe610c01565b90506000610a0c8286610af1565b905083811015610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890611fb1565b60405180910390fd5b610a5e8286868403610c09565b60019250505092915050565b600080610a75610c01565b9050610a82818585610e5e565b600191505092915050565b60085481565b610a9b611413565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ae7611413565b80600d8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b610b86611413565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90612043565b60405180910390fd5b610bfe81611491565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f906120d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90612167565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc59190611c81565b60405180910390a3505050565b6000610dde8484610af1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e585781811015610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906121d3565b60405180910390fd5b610e578484848403610c09565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490612265565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f33906122f7565b60405180910390fd5b80610f4684610897565b1015610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612389565b60405180910390fd5b7f00000000000000000000000079b2a7d42d4f35922cd6819a893a733d82d76efe73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061102c57507f00000000000000000000000079b2a7d42d4f35922cd6819a893a733d82d76efe73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110455750600e60009054906101000a900460ff16155b15611402577f00000000000000000000000079b2a7d42d4f35922cd6819a893a733d82d76efe73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111fe57600d546110a930610897565b106111fd576110bf6110ba30610897565b611557565b600060644760286110d091906123a9565b6110da919061241a565b90506000606447603c6110ed91906123a9565b6110f7919061241a565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505090506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f1935050505090508180156111b95750805b6111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90612497565b60405180910390fd5b505050505b5b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112a15750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112ae578190506113f1565b6007548211156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612529565b60405180910390fd5b7f00000000000000000000000079b2a7d42d4f35922cd6819a893a733d82d76efe73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361139f5760085461135284610897565b8361135d9190611e79565b111561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906125bb565b60405180910390fd5b5b60006064600654846113b191906123a9565b6113bb919061241a565b905080836113c991906125db565b915080600b60008282546113dd9190611e79565b925050819055506113ef8530836117d7565b505b6113fc8484836117d7565b5061140e565b61140d8383836117d7565b5b505050565b61141b610c01565b73ffffffffffffffffffffffffffffffffffffffff16611439610931565b73ffffffffffffffffffffffffffffffffffffffff161461148f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114869061265b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600e60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561158f5761158e61267b565b5b6040519080825280602002602001820160405280156115bd5781602001602082028036833780820191505090505b50905030816000815181106115d5576115d46126aa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561167a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169e91906126ee565b816001815181106116b2576116b16126aa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611717307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c09565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426117669190611e79565b6040518663ffffffff1660e01b8152600401611786959493929190612814565b600060405180830381600087803b1580156117a057600080fd5b505af11580156117b4573d6000803e3d6000fd5b50505050506000600e60006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d90612265565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac906122f7565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290612389565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a299190611c81565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a71578082015181840152602081019050611a56565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a9982611a37565b611aa38185611a42565b9350611ab3818560208601611a53565b611abc81611a7d565b840191505092915050565b60006020820190508181036000830152611ae18184611a8e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b1982611aee565b9050919050565b611b2981611b0e565b8114611b3457600080fd5b50565b600081359050611b4681611b20565b92915050565b6000819050919050565b611b5f81611b4c565b8114611b6a57600080fd5b50565b600081359050611b7c81611b56565b92915050565b60008060408385031215611b9957611b98611ae9565b5b6000611ba785828601611b37565b9250506020611bb885828601611b6d565b9150509250929050565b60008115159050919050565b611bd781611bc2565b82525050565b6000602082019050611bf26000830184611bce565b92915050565b6000819050919050565b6000611c1d611c18611c1384611aee565b611bf8565b611aee565b9050919050565b6000611c2f82611c02565b9050919050565b6000611c4182611c24565b9050919050565b611c5181611c36565b82525050565b6000602082019050611c6c6000830184611c48565b92915050565b611c7b81611b4c565b82525050565b6000602082019050611c966000830184611c72565b92915050565b600080600060608486031215611cb557611cb4611ae9565b5b6000611cc386828701611b37565b9350506020611cd486828701611b37565b9250506040611ce586828701611b6d565b9150509250925092565b600060ff82169050919050565b611d0581611cef565b82525050565b6000602082019050611d206000830184611cfc565b92915050565b611d2f81611b0e565b82525050565b6000602082019050611d4a6000830184611d26565b92915050565b600060208284031215611d6657611d65611ae9565b5b6000611d7484828501611b6d565b91505092915050565b600060208284031215611d9357611d92611ae9565b5b6000611da184828501611b37565b91505092915050565b60008060408385031215611dc157611dc0611ae9565b5b6000611dcf85828601611b37565b9250506020611de085828601611b37565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e3157607f821691505b602082108103611e4457611e43611dea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e8482611b4c565b9150611e8f83611b4c565b9250828201905080821115611ea757611ea6611e4a565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611f09602d83611a42565b9150611f1482611ead565b604082019050919050565b60006020820190508181036000830152611f3881611efc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f9b602583611a42565b9150611fa682611f3f565b604082019050919050565b60006020820190508181036000830152611fca81611f8e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061202d602683611a42565b915061203882611fd1565b604082019050919050565b6000602082019050818103600083015261205c81612020565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120bf602483611a42565b91506120ca82612063565b604082019050919050565b600060208201905081810360008301526120ee816120b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612151602283611a42565b915061215c826120f5565b604082019050919050565b6000602082019050818103600083015261218081612144565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006121bd601d83611a42565b91506121c882612187565b602082019050919050565b600060208201905081810360008301526121ec816121b0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061224f602583611a42565b915061225a826121f3565b604082019050919050565b6000602082019050818103600083015261227e81612242565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122e1602383611a42565b91506122ec82612285565b604082019050919050565b60006020820190508181036000830152612310816122d4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612373602683611a42565b915061237e82612317565b604082019050919050565b600060208201905081810360008301526123a281612366565b9050919050565b60006123b482611b4c565b91506123bf83611b4c565b92508282026123cd81611b4c565b915082820484148315176123e4576123e3611e4a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061242582611b4c565b915061243083611b4c565b9250826124405761243f6123eb565b5b828204905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612481601283611a42565b915061248c8261244b565b602082019050919050565b600060208201905081810360008301526124b081612474565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612513603983611a42565b915061251e826124b7565b604082019050919050565b6000602082019050818103600083015261254281612506565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006125a5603683611a42565b91506125b082612549565b604082019050919050565b600060208201905081810360008301526125d481612598565b9050919050565b60006125e682611b4c565b91506125f183611b4c565b925082820390508181111561260957612608611e4a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612645602083611a42565b91506126508261260f565b602082019050919050565b6000602082019050818103600083015261267481612638565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506126e881611b20565b92915050565b60006020828403121561270457612703611ae9565b5b6000612712848285016126d9565b91505092915050565b6000819050919050565b600061274061273b6127368461271b565b611bf8565b611b4c565b9050919050565b61275081612725565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61278b81611b0e565b82525050565b600061279d8383612782565b60208301905092915050565b6000602082019050919050565b60006127c182612756565b6127cb8185612761565b93506127d683612772565b8060005b838110156128075781516127ee8882612791565b97506127f9836127a9565b9250506001810190506127da565b5085935050505092915050565b600060a0820190506128296000830188611c72565b6128366020830187612747565b818103604083015261284881866127b6565b90506128576060830185611d26565b6128646080830184611c72565b969550505050505056fea264697066735822122073290634627634e10125f379340d8e195e62e4776e67b17cc2320ccae25d79c164736f6c63430008130033

Deployed Bytecode Sourcemap

27868:7410:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17691:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19891:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28124:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18796:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20699:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18638:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22408:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28088:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28182:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34642:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34862:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17856:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14950:103;;;;;;;;;;;;;:::i;:::-;;28051:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34981:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27981:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14302:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17515:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27953:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21499:500;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19351:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28014:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34521:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35116:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18969:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28334:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15208:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17691:102;17747:13;17780:5;17773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17691:102;:::o;19891:228::-;20001:4;20018:13;20034:12;:10;:12::i;:::-;20018:28;;20057:32;20066:5;20073:7;20082:6;20057:8;:32::i;:::-;20107:4;20100:11;;;19891:228;;;;:::o;28124:51::-;;;:::o;18796:110::-;18859:7;18886:12;;18879:19;;18796:110;:::o;20699:297::-;20832:4;20849:15;20867:12;:10;:12::i;:::-;20849:30;;20890:38;20906:4;20912:7;20921:6;20890:15;:38::i;:::-;20939:27;20949:4;20955:2;20959:6;20939:9;:27::i;:::-;20984:4;20977:11;;;20699:297;;;;;:::o;18638:93::-;18696:5;18721:2;18714:9;;18638:93;:::o;22408:265::-;22523:4;22540:13;22556:12;:10;:12::i;:::-;22540:28;;22579:64;22588:5;22595:7;22632:10;22604:25;22614:5;22621:7;22604:9;:25::i;:::-;:38;;;;:::i;:::-;22579:8;:64::i;:::-;22661:4;22654:11;;;22408:265;;;;:::o;28088:29::-;;;;;;;;;;;;;:::o;28182:38::-;;;:::o;34642:212::-;14188:13;:11;:13::i;:::-;34742:2:::1;34731:7;:13;;34709:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;34839:7;34830:6;:16;;;;34642:212:::0;:::o;34862:111::-;14188:13;:11;:13::i;:::-;34953:12:::1;34939:11;:26;;;;34862:111:::0;:::o;17856:143::-;17946:7;17973:9;:18;17983:7;17973:18;;;;;;;;;;;;;;;;17966:25;;17856:143;;;:::o;14950:103::-;14188:13;:11;:13::i;:::-;15015:30:::1;15042:1;15015:18;:30::i;:::-;14950:103::o:0;28051:30::-;;;;;;;;;;;;;:::o;34981:127::-;14188:13;:11;:13::i;:::-;35084:16:::1;35066:15;:34;;;;34981:127:::0;:::o;27981:26::-;;;;:::o;14302:87::-;14348:7;14375:6;;;;;;;;;;;14368:13;;14302:87;:::o;17515:106::-;17573:13;17606:7;17599:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17515:106;:::o;27953:21::-;;;;:::o;21499:500::-;21619:4;21636:13;21652:12;:10;:12::i;:::-;21636:28;;21675:24;21702:25;21712:5;21719:7;21702:9;:25::i;:::-;21675:52;;21780:15;21760:16;:35;;21738:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;21896:60;21905:5;21912:7;21940:15;21921:16;:34;21896:8;:60::i;:::-;21987:4;21980:11;;;;21499:500;;;;:::o;19351:220::-;19457:4;19474:13;19490:12;:10;:12::i;:::-;19474:28;;19513;19523:5;19530:2;19534:6;19513:9;:28::i;:::-;19559:4;19552:11;;;19351:220;;;;:::o;28014:30::-;;;;:::o;34521:113::-;14188:13;:11;:13::i;:::-;34617:9:::1;34599:15;;:27;;;;;;;;;;;;;;;;;;34521:113:::0;:::o;35116:122::-;14188:13;:11;:13::i;:::-;35226:4:::1;35199:24;:31;;;;35116:122:::0;:::o;18969:176::-;19083:7;19110:11;:18;19122:5;19110:18;;;;;;;;;;;;;;;:27;19129:7;19110:27;;;;;;;;;;;;;;;;19103:34;;18969:176;;;;:::o;28334:65::-;;;;:::o;15208:238::-;14188:13;:11;:13::i;:::-;15331:1:::1;15311:22;;:8;:22;;::::0;15289:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15410:28;15429:8;15410:18;:28::i;:::-;15208:238:::0;:::o;13095:98::-;13148:7;13175:10;13168:17;;13095:98;:::o;24708:380::-;24861:1;24844:19;;:5;:19;;;24836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24942:1;24923:21;;:7;:21;;;24915:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25026:6;24996:11;:18;25008:5;24996:18;;;;;;;;;;;;;;;:27;25015:7;24996:27;;;;;;;;;;;;;;;:36;;;;25064:7;25048:32;;25057:5;25048:32;;;25073:6;25048:32;;;;;;:::i;:::-;;;;;;;;24708:380;;;:::o;25379:502::-;25514:24;25541:25;25551:5;25558:7;25541:9;:25::i;:::-;25514:52;;25601:17;25581:16;:37;25577:297;;25681:6;25661:16;:26;;25635:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25796:51;25805:5;25812:7;25840:6;25821:16;:25;25796:8;:51::i;:::-;25577:297;25503:378;25379:502;;;:::o;30888:2231::-;31036:1;31020:18;;:4;:18;;;31012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31113:1;31099:16;;:2;:16;;;31091:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31207:6;31188:15;31198:4;31188:9;:15::i;:::-;:25;;31166:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;31319:13;31311:21;;:4;:21;;;:44;;;;31342:13;31336:19;;:2;:19;;;31311:44;31310:67;;;;;31361:16;;;;;;;;;;;31360:17;31310:67;31292:1820;;;31416:13;31408:21;;:4;:21;;;31404:686;;31482:24;;31454;31472:4;31454:9;:24::i;:::-;:52;31450:625;;31531:43;31549:24;31567:4;31549:9;:24::i;:::-;31531:17;:43::i;:::-;31597:21;31649:3;31626:21;31623:2;:24;;;;:::i;:::-;31622:30;;;;:::i;:::-;31597:56;;31676:20;31727:3;31704:21;31701:2;:24;;;;:::i;:::-;31700:30;;;;:::i;:::-;31676:55;;31754:10;31775:15;;;;;;;;;;;31767:29;;:92;31823:13;31767:92;;;;;;;;;;;;;;;;;;;;;;;31754:105;;31882:10;31903:15;;;;;;;;;;;31895:29;;:91;31951:12;31895:91;;;;;;;;;;;;;;;;;;;;;;;31882:104;;32017:5;:14;;;;;32026:5;32017:14;32009:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;31508:567;;;;31450:625;31404:686;32106:22;32147:18;:24;32166:4;32147:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32175:18;:22;32194:2;32175:22;;;;;;;;;;;;;;;;;;;;;;;;;32147:50;32143:836;;;32235:6;32218:23;;32143:836;;;32322:11;;32312:6;:21;;32282:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;32465:13;32457:21;;:4;:21;;;32453:253;;32565:15;;32547:13;32557:2;32547:9;:13::i;:::-;32538:6;:22;;;;:::i;:::-;32537:43;;32503:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;32453:253;32726:22;32772:3;32762:6;;32753;:15;;;;:::i;:::-;32752:23;;;;:::i;:::-;32726:50;;32821:14;32812:6;:23;;;;:::i;:::-;32795:40;;32876:14;32854:18;;:36;;;;;;;:::i;:::-;;;;;;;;32911:52;32927:4;32941;32948:14;32911:15;:52::i;:::-;32263:716;32143:836;32993:41;33009:4;33015:2;33019:14;32993:15;:41::i;:::-;31389:1657;31292:1820;;;33067:33;33083:4;33089:2;33093:6;33067:15;:33::i;:::-;31292:1820;30888:2231;;;:::o;14467:132::-;14542:12;:10;:12::i;:::-;14531:23;;:7;:5;:7::i;:::-;:23;;;14523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14467:132::o;15606:191::-;15680:16;15699:6;;;;;;;;;;;15680:25;;15725:8;15716:6;;:17;;;;;;;;;;;;;;;;;;15780:8;15749:40;;15770:8;15749:40;;;;;;;;;;;;15669:128;15606:191;:::o;33609:496::-;28624:4;28605:16;;:23;;;;;;;;;;;;;;;;;;33688:21:::1;33726:1;33712:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33688:40;;33757:4;33739;33744:1;33739:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33783:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33773:4;33778:1;33773:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33818:62;33835:4;33850:15;33868:11;33818:8;:62::i;:::-;33893:15;:66;;;33974:11;34000:1;34016:4;34043;34082:3;34064:15;:21;;;;:::i;:::-;33893:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33677:428;28670:5:::0;28651:16;;:24;;;;;;;;;;;;;;;;;;33609:496;:::o;25889:776::-;26036:1;26020:18;;:4;:18;;;26012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26113:1;26099:16;;:2;:16;;;26091:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26168:19;26190:9;:15;26200:4;26190:15;;;;;;;;;;;;;;;;26168:37;;26253:6;26238:11;:21;;26216:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26393:6;26379:11;:20;26361:9;:15;26371:4;26361:15;;;;;;;;;;;;;;;:38;;;;26596:6;26579:9;:13;26589:2;26579:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26646:2;26631:26;;26640:4;26631:26;;;26650:6;26631:26;;;;;;:::i;:::-;;;;;;;;26001:664;25889:776;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:::-;6572:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:119;;;6627:79;;:::i;:::-;6589:119;6747:1;6772:53;6817:7;6808:6;6797:9;6793:22;6772:53;:::i;:::-;6762:63;;6718:117;6513:329;;;;:::o;6848:474::-;6916:6;6924;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;7226:2;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7197:118;6848:474;;;;;:::o;7328:180::-;7376:77;7373:1;7366:88;7473:4;7470:1;7463:15;7497:4;7494:1;7487:15;7514:320;7558:6;7595:1;7589:4;7585:12;7575:22;;7642:1;7636:4;7632:12;7663:18;7653:81;;7719:4;7711:6;7707:17;7697:27;;7653:81;7781:2;7773:6;7770:14;7750:18;7747:38;7744:84;;7800:18;;:::i;:::-;7744:84;7565:269;7514:320;;;:::o;7840:180::-;7888:77;7885:1;7878:88;7985:4;7982:1;7975:15;8009:4;8006:1;7999:15;8026:191;8066:3;8085:20;8103:1;8085:20;:::i;:::-;8080:25;;8119:20;8137:1;8119:20;:::i;:::-;8114:25;;8162:1;8159;8155:9;8148:16;;8183:3;8180:1;8177:10;8174:36;;;8190:18;;:::i;:::-;8174:36;8026:191;;;;:::o;8223:232::-;8363:34;8359:1;8351:6;8347:14;8340:58;8432:15;8427:2;8419:6;8415:15;8408:40;8223:232;:::o;8461:366::-;8603:3;8624:67;8688:2;8683:3;8624:67;:::i;:::-;8617:74;;8700:93;8789:3;8700:93;:::i;:::-;8818:2;8813:3;8809:12;8802:19;;8461:366;;;:::o;8833:419::-;8999:4;9037:2;9026:9;9022:18;9014:26;;9086:9;9080:4;9076:20;9072:1;9061:9;9057:17;9050:47;9114:131;9240:4;9114:131;:::i;:::-;9106:139;;8833:419;;;:::o;9258:224::-;9398:34;9394:1;9386:6;9382:14;9375:58;9467:7;9462:2;9454:6;9450:15;9443:32;9258:224;:::o;9488:366::-;9630:3;9651:67;9715:2;9710:3;9651:67;:::i;:::-;9644:74;;9727:93;9816:3;9727:93;:::i;:::-;9845:2;9840:3;9836:12;9829:19;;9488:366;;;:::o;9860:419::-;10026:4;10064:2;10053:9;10049:18;10041:26;;10113:9;10107:4;10103:20;10099:1;10088:9;10084:17;10077:47;10141:131;10267:4;10141:131;:::i;:::-;10133:139;;9860:419;;;:::o;10285:225::-;10425:34;10421:1;10413:6;10409:14;10402:58;10494:8;10489:2;10481:6;10477:15;10470:33;10285:225;:::o;10516:366::-;10658:3;10679:67;10743:2;10738:3;10679:67;:::i;:::-;10672:74;;10755:93;10844:3;10755:93;:::i;:::-;10873:2;10868:3;10864:12;10857:19;;10516:366;;;:::o;10888:419::-;11054:4;11092:2;11081:9;11077:18;11069:26;;11141:9;11135:4;11131:20;11127:1;11116:9;11112:17;11105:47;11169:131;11295:4;11169:131;:::i;:::-;11161:139;;10888:419;;;:::o;11313:223::-;11453:34;11449:1;11441:6;11437:14;11430:58;11522:6;11517:2;11509:6;11505:15;11498:31;11313:223;:::o;11542:366::-;11684:3;11705:67;11769:2;11764:3;11705:67;:::i;:::-;11698:74;;11781:93;11870:3;11781:93;:::i;:::-;11899:2;11894:3;11890:12;11883:19;;11542:366;;;:::o;11914:419::-;12080:4;12118:2;12107:9;12103:18;12095:26;;12167:9;12161:4;12157:20;12153:1;12142:9;12138:17;12131:47;12195:131;12321:4;12195:131;:::i;:::-;12187:139;;11914:419;;;:::o;12339:221::-;12479:34;12475:1;12467:6;12463:14;12456:58;12548:4;12543:2;12535:6;12531:15;12524:29;12339:221;:::o;12566:366::-;12708:3;12729:67;12793:2;12788:3;12729:67;:::i;:::-;12722:74;;12805:93;12894:3;12805:93;:::i;:::-;12923:2;12918:3;12914:12;12907:19;;12566:366;;;:::o;12938:419::-;13104:4;13142:2;13131:9;13127:18;13119:26;;13191:9;13185:4;13181:20;13177:1;13166:9;13162:17;13155:47;13219:131;13345:4;13219:131;:::i;:::-;13211:139;;12938:419;;;:::o;13363:179::-;13503:31;13499:1;13491:6;13487:14;13480:55;13363:179;:::o;13548:366::-;13690:3;13711:67;13775:2;13770:3;13711:67;:::i;:::-;13704:74;;13787:93;13876:3;13787:93;:::i;:::-;13905:2;13900:3;13896:12;13889:19;;13548:366;;;:::o;13920:419::-;14086:4;14124:2;14113:9;14109:18;14101:26;;14173:9;14167:4;14163:20;14159:1;14148:9;14144:17;14137:47;14201:131;14327:4;14201:131;:::i;:::-;14193:139;;13920:419;;;:::o;14345:224::-;14485:34;14481:1;14473:6;14469:14;14462:58;14554:7;14549:2;14541:6;14537:15;14530:32;14345:224;:::o;14575:366::-;14717:3;14738:67;14802:2;14797:3;14738:67;:::i;:::-;14731:74;;14814:93;14903:3;14814:93;:::i;:::-;14932:2;14927:3;14923:12;14916:19;;14575:366;;;:::o;14947:419::-;15113:4;15151:2;15140:9;15136:18;15128:26;;15200:9;15194:4;15190:20;15186:1;15175:9;15171:17;15164:47;15228:131;15354:4;15228:131;:::i;:::-;15220:139;;14947:419;;;:::o;15372:222::-;15512:34;15508:1;15500:6;15496:14;15489:58;15581:5;15576:2;15568:6;15564:15;15557:30;15372:222;:::o;15600:366::-;15742:3;15763:67;15827:2;15822:3;15763:67;:::i;:::-;15756:74;;15839:93;15928:3;15839:93;:::i;:::-;15957:2;15952:3;15948:12;15941:19;;15600:366;;;:::o;15972:419::-;16138:4;16176:2;16165:9;16161:18;16153:26;;16225:9;16219:4;16215:20;16211:1;16200:9;16196:17;16189:47;16253:131;16379:4;16253:131;:::i;:::-;16245:139;;15972:419;;;:::o;16397:225::-;16537:34;16533:1;16525:6;16521:14;16514:58;16606:8;16601:2;16593:6;16589:15;16582:33;16397:225;:::o;16628:366::-;16770:3;16791:67;16855:2;16850:3;16791:67;:::i;:::-;16784:74;;16867:93;16956:3;16867:93;:::i;:::-;16985:2;16980:3;16976:12;16969:19;;16628:366;;;:::o;17000:419::-;17166:4;17204:2;17193:9;17189:18;17181:26;;17253:9;17247:4;17243:20;17239:1;17228:9;17224:17;17217:47;17281:131;17407:4;17281:131;:::i;:::-;17273:139;;17000:419;;;:::o;17425:410::-;17465:7;17488:20;17506:1;17488:20;:::i;:::-;17483:25;;17522:20;17540:1;17522:20;:::i;:::-;17517:25;;17577:1;17574;17570:9;17599:30;17617:11;17599:30;:::i;:::-;17588:41;;17778:1;17769:7;17765:15;17762:1;17759:22;17739:1;17732:9;17712:83;17689:139;;17808:18;;:::i;:::-;17689:139;17473:362;17425:410;;;;:::o;17841:180::-;17889:77;17886:1;17879:88;17986:4;17983:1;17976:15;18010:4;18007:1;18000:15;18027:185;18067:1;18084:20;18102:1;18084:20;:::i;:::-;18079:25;;18118:20;18136:1;18118:20;:::i;:::-;18113:25;;18157:1;18147:35;;18162:18;;:::i;:::-;18147:35;18204:1;18201;18197:9;18192:14;;18027:185;;;;:::o;18218:168::-;18358:20;18354:1;18346:6;18342:14;18335:44;18218:168;:::o;18392:366::-;18534:3;18555:67;18619:2;18614:3;18555:67;:::i;:::-;18548:74;;18631:93;18720:3;18631:93;:::i;:::-;18749:2;18744:3;18740:12;18733:19;;18392:366;;;:::o;18764:419::-;18930:4;18968:2;18957:9;18953:18;18945:26;;19017:9;19011:4;19007:20;19003:1;18992:9;18988:17;18981:47;19045:131;19171:4;19045:131;:::i;:::-;19037:139;;18764:419;;;:::o;19189:244::-;19329:34;19325:1;19317:6;19313:14;19306:58;19398:27;19393:2;19385:6;19381:15;19374:52;19189:244;:::o;19439:366::-;19581:3;19602:67;19666:2;19661:3;19602:67;:::i;:::-;19595:74;;19678:93;19767:3;19678:93;:::i;:::-;19796:2;19791:3;19787:12;19780:19;;19439:366;;;:::o;19811:419::-;19977:4;20015:2;20004:9;20000:18;19992:26;;20064:9;20058:4;20054:20;20050:1;20039:9;20035:17;20028:47;20092:131;20218:4;20092:131;:::i;:::-;20084:139;;19811:419;;;:::o;20236:241::-;20376:34;20372:1;20364:6;20360:14;20353:58;20445:24;20440:2;20432:6;20428:15;20421:49;20236:241;:::o;20483:366::-;20625:3;20646:67;20710:2;20705:3;20646:67;:::i;:::-;20639:74;;20722:93;20811:3;20722:93;:::i;:::-;20840:2;20835:3;20831:12;20824:19;;20483:366;;;:::o;20855:419::-;21021:4;21059:2;21048:9;21044:18;21036:26;;21108:9;21102:4;21098:20;21094:1;21083:9;21079:17;21072:47;21136:131;21262:4;21136:131;:::i;:::-;21128:139;;20855:419;;;:::o;21280:194::-;21320:4;21340:20;21358:1;21340:20;:::i;:::-;21335:25;;21374:20;21392:1;21374:20;:::i;:::-;21369:25;;21418:1;21415;21411:9;21403:17;;21442:1;21436:4;21433:11;21430:37;;;21447:18;;:::i;:::-;21430:37;21280:194;;;;:::o;21480:182::-;21620:34;21616:1;21608:6;21604:14;21597:58;21480:182;:::o;21668:366::-;21810:3;21831:67;21895:2;21890:3;21831:67;:::i;:::-;21824:74;;21907:93;21996:3;21907:93;:::i;:::-;22025:2;22020:3;22016:12;22009:19;;21668:366;;;:::o;22040:419::-;22206:4;22244:2;22233:9;22229:18;22221:26;;22293:9;22287:4;22283:20;22279:1;22268:9;22264:17;22257:47;22321:131;22447:4;22321:131;:::i;:::-;22313:139;;22040:419;;;:::o;22465:180::-;22513:77;22510:1;22503:88;22610:4;22607:1;22600:15;22634:4;22631:1;22624:15;22651:180;22699:77;22696:1;22689:88;22796:4;22793:1;22786:15;22820:4;22817:1;22810:15;22837:143;22894:5;22925:6;22919:13;22910:22;;22941:33;22968:5;22941:33;:::i;:::-;22837:143;;;;:::o;22986:351::-;23056:6;23105:2;23093:9;23084:7;23080:23;23076:32;23073:119;;;23111:79;;:::i;:::-;23073:119;23231:1;23256:64;23312:7;23303:6;23292:9;23288:22;23256:64;:::i;:::-;23246:74;;23202:128;22986:351;;;;:::o;23343:85::-;23388:7;23417:5;23406:16;;23343:85;;;:::o;23434:158::-;23492:9;23525:61;23543:42;23552:32;23578:5;23552:32;:::i;:::-;23543:42;:::i;:::-;23525:61;:::i;:::-;23512:74;;23434:158;;;:::o;23598:147::-;23693:45;23732:5;23693:45;:::i;:::-;23688:3;23681:58;23598:147;;:::o;23751:114::-;23818:6;23852:5;23846:12;23836:22;;23751:114;;;:::o;23871:184::-;23970:11;24004:6;23999:3;23992:19;24044:4;24039:3;24035:14;24020:29;;23871:184;;;;:::o;24061:132::-;24128:4;24151:3;24143:11;;24181:4;24176:3;24172:14;24164:22;;24061:132;;;:::o;24199:108::-;24276:24;24294:5;24276:24;:::i;:::-;24271:3;24264:37;24199:108;;:::o;24313:179::-;24382:10;24403:46;24445:3;24437:6;24403:46;:::i;:::-;24481:4;24476:3;24472:14;24458:28;;24313:179;;;;:::o;24498:113::-;24568:4;24600;24595:3;24591:14;24583:22;;24498:113;;;:::o;24647:732::-;24766:3;24795:54;24843:5;24795:54;:::i;:::-;24865:86;24944:6;24939:3;24865:86;:::i;:::-;24858:93;;24975:56;25025:5;24975:56;:::i;:::-;25054:7;25085:1;25070:284;25095:6;25092:1;25089:13;25070:284;;;25171:6;25165:13;25198:63;25257:3;25242:13;25198:63;:::i;:::-;25191:70;;25284:60;25337:6;25284:60;:::i;:::-;25274:70;;25130:224;25117:1;25114;25110:9;25105:14;;25070:284;;;25074:14;25370:3;25363:10;;24771:608;;;24647:732;;;;:::o;25385:831::-;25648:4;25686:3;25675:9;25671:19;25663:27;;25700:71;25768:1;25757:9;25753:17;25744:6;25700:71;:::i;:::-;25781:80;25857:2;25846:9;25842:18;25833:6;25781:80;:::i;:::-;25908:9;25902:4;25898:20;25893:2;25882:9;25878:18;25871:48;25936:108;26039:4;26030:6;25936:108;:::i;:::-;25928:116;;26054:72;26122:2;26111:9;26107:18;26098:6;26054:72;:::i;:::-;26136:73;26204:3;26193:9;26189:19;26180:6;26136:73;:::i;:::-;25385:831;;;;;;;;:::o

Swarm Source

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