ETH Price: $2,486.09 (-1.10%)

Token

RYOSHINJA ($RYNJA)
 

Overview

Max Total Supply

1,000,000 $RYNJA

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,047.561340637 $RYNJA

Value
$0.00
0xf46d6e90723cf72b2a6c534531e700ada0bf4ce9
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:
RYOSHINJA

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-19
*/

/*
 Web: www.ryoshinja.com
 TG: t.me/ryoshinja
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.10;

interface IERC20 {
    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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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 Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {

        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;


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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}

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 getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

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

    function allPairsLength() external view returns (uint256);

    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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

contract RYOSHINJA is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    mapping(address => bool) private _isExcludedFromLimit;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address payable _marketingAddress = payable(address(0x4834C78232aAE248D4C133a76afE722888CeA6AE));

    string private _name = "RYOSHINJA";
    string private _symbol = "$RYNJA";
    uint8 private _decimals = 9;

    struct BuyFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    struct SellFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _reflectionFee;
    uint8 private _liquidityFee;
    uint8 private _marketingFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(20); //2%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    uint256 public deadBlocks = 1;
    uint256 launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) public _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.reflection = 1;
        buyFee.liquidity = 1;
        buyFee.marketing = 1;

        sellFee.reflection = 1;
        sellFee.liquidity = 1;
        sellFee.marketing = 3;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D  );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }


    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }


    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }


    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setBothFees(
        uint8 buy_reflection,
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 sell_reflection,
        uint8 sell_liquidity,
        uint8 sell_marketing


    ) external onlyOwner {
        buyFee.reflection = buy_reflection;
        buyFee.liquidity = buy_liquidity;
        buyFee.marketing = buy_marketing;

        sellFee.reflection = sell_reflection;
        sellFee.liquidity = sell_liquidity;
        sellFee.marketing = sell_marketing;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        tTransferAmount = tTransferAmount.sub(tWallet);

        return (tTransferAmount, tFee, tLiquidity, tWallet);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tWallet,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rWallet = tWallet.mul(currentRate);
        uint256 rTransferAmount = rAmount
            .sub(rFee)
            .sub(rLiquidity)
            .sub(rWallet);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function _takeWalletFee(uint256 tWallet) private {
        uint256 currentRate = _getRate();
        uint256 rWallet = tWallet.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rWallet);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tWallet);
    }

    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_reflectionFee).div(10**2);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

   
    function removeAllFee() private {
        _reflectionFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
     
    }

    function setBuy() private {
        _reflectionFee = buyFee.reflection;
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
      
    }

    function setSell() private {
        _reflectionFee = sellFee.reflection;
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
      
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if (contractTokenBalance >= _maxTxAmount) {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

        //transfer amount, it will take reflection, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        removeAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }


    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() {
        tradingOpen = _status;
        if(tradingOpen && launchedAt == 0){
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }
}

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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","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":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_reflection","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_reflection","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"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"}]

60c060405266038d7ea4c6800060098190556200001f90600019620005dd565b6200002d906000196200060a565b600a55600c80546001600160a01b031916734834c78232aae248d4c133a76afe722888cea6ae17905560408051808201909152600981526852594f5348494e4a4160b81b6020820152600d90620000859082620006c5565b506040805180820190915260068152652452594e4a4160d01b6020820152600e90620000b29082620006c5565b50600f805460ff191660099081179091556012805460ff60201b1916640100000000179055546200011190601490620000fd906103e862000d10620004aa602090811b91909117901c565b620004fd60201b62000d521790919060201c565b601355620001386003620000fd6103e8600954620004aa60201b62000d101790919060201c565b6014556200015f6014620000fd6103e8600954620004aa60201b62000d101790919060201c565b601555600160165560006017556018805460ff191690553480156200018357600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5433600090815260026020908152604091829020929092556010805462ffffff1990811662010101179091556011805490911662030101179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000274919062000791565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000791565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000336573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035c919062000791565b6001600160a01b0390811660a0528116608052600160056000620003886000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c8054841683528483208054881683179055549092168152600893849052918220805490941681179093556200040b6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008909252902080549091166001179055620004533390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200049b91815260200190565b60405180910390a3506200083d565b6000620004f483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058b60201b60201c565b90505b92915050565b6000826000036200051157506000620004f7565b60006200051f8385620007bc565b9050826200052e8583620007d6565b14620004f45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005af5760405162461bcd60e51b8152600401620005829190620007ed565b506000620005be8486620007d6565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620005ef57620005ef620005c7565b500690565b634e487b7160e01b600052601160045260246000fd5b81810381811115620004f757620004f7620005f4565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064b57607f821691505b6020821081036200066c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006c057600081815260208120601f850160051c810160208610156200069b5750805b601f850160051c820191505b81811015620006bc57828155600101620006a7565b5050505b505050565b81516001600160401b03811115620006e157620006e162000620565b620006f981620006f2845462000636565b8462000672565b602080601f831160018114620007315760008415620007185750858301515b600019600386901b1c1916600185901b178555620006bc565b600085815260208120601f198616915b82811015620007625788860151825594840194600190910190840162000741565b5085821015620007815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007a457600080fd5b81516001600160a01b0381168114620004f457600080fd5b8082028115828204841417620004f757620004f7620005f4565b600082620007e857620007e8620005c7565b500490565b600060208083528351808285015260005b818110156200081c57858101830151858201604001528201620007fe565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a0516125b7620008a26000396000818161040d015281816110e5015281816112400152818161158201526115f8015260008181610282015281816119b001528181611a6901528181611aa501528181611b170152611b7301526125b76000f3fe6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213b565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a1565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121cd565b610780565b005b34801561027c57600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121ea565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612240565b610840565b34801561037857600080fd5b506102cd61038736600461225c565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121cd565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b34801561043b57600080fd5b5061023e61044a3660046121cd565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121cd565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121cd565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121cd565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121cd565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a1565b610a9c565b3480156105ae57600080fd5b5061026e6105bd366004612286565b610aa9565b3480156105ce57600080fd5b5061026e6105dd3660046122fa565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121cd565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd610636366004612315565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121cd565b610bac565b34801561068d57600080fd5b5061026e61069c36600461225c565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121cd565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e69061234e565b80601f01602080910402602001604051908101604052809291908181526020018280546107129061234e565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd4565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa90612388565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef8565b61083684336108318560405180606001604052806028815260200161255a602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112fa565b610dd4565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa90612388565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611334565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa90612388565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e69061234e565b6000610776338484610ef8565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa90612388565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa90612388565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa90612388565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611357565b600082600003610d645750600061077a565b6000610d7083856123d3565b905082610d7d85836123ea565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b600081116110205760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104c57506000546001600160a01b03838116911614155b156110a35760185460ff166110a35760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ae3061096f565b905060135481106110be57506013545b601454811080159081906110dc57506012546301000000900460ff16155b801561111a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156111305750601254640100000000900460ff165b1561114357601454915061114382611385565b6001600160a01b03851660009081526005602052604090205460019060ff168061118557506001600160a01b03851660009081526005602052604090205460ff165b1561118e575060005b80156112e6576001600160a01b03861660009081526008602052604090205460ff161580156111d657506001600160a01b03851660009081526008602052604090205460ff16155b156112e65760135484111561123e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316146112e6576015546112838661096f565b61128d908661240c565b11156112e65760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112f286868684611569565b505050505050565b6000818484111561131e5760405162461bcd60e51b81526004016107aa919061213b565b50600061132b848661241f565b95945050505050565b60008060006113416117d7565b90925090506113508282610d10565b9250505090565b600081836113785760405162461bcd60e51b81526004016107aa919061213b565b50600061132b84866123ea565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113cb926101009182900483169291900416612432565b6113d59190612432565b6113df9190612432565b6113ea90600261244b565b60115460105460ff92831693506000928492611413926101009182900483169291900416612432565b6114209060ff16856123d3565b61142a91906123ea565b90506000611438828561241f565b90504761144482611959565b6000611450824761241f565b6011546010549192506000916114769160ff610100918290048116929190910416612432565b6114839060ff168761241f565b61148d90836123ea565b6011546010549192506000916114b39160ff610100918290048116929190910416612432565b6114c09060ff16836123d3565b905080156114d2576114d28682611b11565b6011546010546000916114f59160ff620100009283900481169290910416612432565b60ff166115038460026123d3565b61150d91906123d3565b9050801561155157600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154f573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166c576115806012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036115f6576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361166c576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ad57506001600160a01b03831660009081526006602052604090205460ff16155b156116c2576116bd848484611bf1565b6117c0565b6001600160a01b03841660009081526006602052604090205460ff1615801561170357506001600160a01b03831660009081526006602052604090205460ff165b15611713576116bd848484611d38565b6001600160a01b03841660009081526006602052604090205460ff1615801561175557506001600160a01b03831660009081526006602052604090205460ff16155b15611765576116bd848484611df3565b6001600160a01b03841660009081526006602052604090205460ff1680156117a557506001600160a01b03831660009081526006602052604090205460ff165b156117b5576116bd848484611e49565b6117c0848484611df3565b6117d16012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015611929578260026000600784815481106118065761180661246e565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611871575081600360006007848154811061184a5761184a61246e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188757600a54600954945094505050509091565b6118cd60026000600784815481106118a1576118a161246e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611eca565b925061191560036000600784815481106118e9576118e961246e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611eca565b91508061192181612484565b9150506117e4565b50600954600a5461193991610d10565b82101561195057600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198e5761198e61246e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a30919061249d565b81600181518110611a4357611a4361246e565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8e307f000000000000000000000000000000000000000000000000000000000000000084610dd4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae39085906000908690309042906004016124ba565b600060405180830381600087803b158015611afd57600080fd5b505af11580156112f2573d6000803e3d6000fd5b611b3c307f000000000000000000000000000000000000000000000000000000000000000084610dd4565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bea919061252b565b5050505050565b600080600080611c0085611f0c565b93509350935093506000806000611c2188878787611c1c611334565b611f6b565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4c9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7b9084611eca565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611caa9083611fcd565b6001600160a01b038a16600090815260026020526040902055611ccc8561202c565b611cd58461202c565b611cdf81876120b5565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2491815260200190565b60405180910390a350505050505050505050565b600080600080611d4785611f0c565b93509350935093506000806000611d6388878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8e9084611eca565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc49088611fcd565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611caa9083611fcd565b600080600080611e0285611f0c565b93509350935093506000806000611e1e88878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7b9084611eca565b600080600080611e5885611f0c565b93509350935093506000806000611e7488878787611c1c611334565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9f9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8e90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fa565b6000806000806000611f1d866120d9565b90506000611f2a876120fa565b90506000611f378861211a565b90506000611f4f83611f498b87611eca565b90611eca565b9050611f5b8183611eca565b9993985091965094509092505050565b6000808080611f7a8986610d52565b90506000611f888987610d52565b90506000611f968988610d52565b90506000611fa48989610d52565b90506000611fb882611f4985818989611eca565b949d949c50929a509298505050505050505050565b600080611fda838561240c565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612036611334565b905060006120448383610d52565b306000908152600260205260409020549091506120619082611fcd565b3060009081526002602090815260408083209390935560069052205460ff16156120b0573060009081526003602052604090205461209f9084611fcd565b306000908152600360205260409020555b505050565b600a546120c29083611eca565b600a55600b546120d29082611fcd565b600b555050565b60125460009061077a906064906120f490859060ff16610d52565b90610d10565b60125460009061077a906064906120f4908590610100900460ff16610d52565b60125460009061077a906064906120f490859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121685785810183015185820160400152820161214c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461219e57600080fd5b50565b600080604083850312156121b457600080fd5b82356121bf81612189565b946020939093013593505050565b6000602082840312156121df57600080fd5b813561091a81612189565b6000806000606084860312156121ff57600080fd5b833561220a81612189565b9250602084013561221a81612189565b929592945050506040919091013590565b8035801515811461223b57600080fd5b919050565b6000806040838503121561225357600080fd5b6121bf8361222b565b60006020828403121561226e57600080fd5b5035919050565b803560ff8116811461223b57600080fd5b60008060008060008060c0878903121561229f57600080fd5b6122a887612275565b95506122b660208801612275565b94506122c460408801612275565b93506122d260608801612275565b92506122e060808801612275565b91506122ee60a08801612275565b90509295509295509295565b60006020828403121561230c57600080fd5b61091a8261222b565b6000806040838503121561232857600080fd5b823561233381612189565b9150602083013561234381612189565b809150509250929050565b600181811c9082168061236257607f821691505b60208210810361238257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761077a5761077a6123bd565b60008261240757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561077a5761077a6123bd565b8181038181111561077a5761077a6123bd565b60ff818116838216019081111561077a5761077a6123bd565b60ff8181168382160290811690818114612467576124676123bd565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060018201612496576124966123bd565b5060010190565b6000602082840312156124af57600080fd5b815161091a81612189565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561250a5784516001600160a01b0316835293830193918301916001016124e5565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561254057600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c01022192fdcb9575547288536a259038425f8965fd3b33ad16dd6b51307ca3a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213b565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a1565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121cd565b610780565b005b34801561027c57600080fd5b506102a47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121ea565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612240565b610840565b34801561037857600080fd5b506102cd61038736600461225c565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121cd565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f0000000000000000000000001a77ad0dbef7f5e2fee6c92968ea99b351a249f581565b34801561043b57600080fd5b5061023e61044a3660046121cd565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121cd565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121cd565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121cd565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121cd565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a1565b610a9c565b3480156105ae57600080fd5b5061026e6105bd366004612286565b610aa9565b3480156105ce57600080fd5b5061026e6105dd3660046122fa565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121cd565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd610636366004612315565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121cd565b610bac565b34801561068d57600080fd5b5061026e61069c36600461225c565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121cd565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e69061234e565b80601f01602080910402602001604051908101604052809291908181526020018280546107129061234e565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd4565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa90612388565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef8565b61083684336108318560405180606001604052806028815260200161255a602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112fa565b610dd4565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa90612388565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611334565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa90612388565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e69061234e565b6000610776338484610ef8565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa90612388565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa90612388565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa90612388565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611357565b600082600003610d645750600061077a565b6000610d7083856123d3565b905082610d7d85836123ea565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b600081116110205760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104c57506000546001600160a01b03838116911614155b156110a35760185460ff166110a35760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ae3061096f565b905060135481106110be57506013545b601454811080159081906110dc57506012546301000000900460ff16155b801561111a57507f0000000000000000000000001a77ad0dbef7f5e2fee6c92968ea99b351a249f56001600160a01b0316856001600160a01b031614155b80156111305750601254640100000000900460ff165b1561114357601454915061114382611385565b6001600160a01b03851660009081526005602052604090205460019060ff168061118557506001600160a01b03851660009081526005602052604090205460ff165b1561118e575060005b80156112e6576001600160a01b03861660009081526008602052604090205460ff161580156111d657506001600160a01b03851660009081526008602052604090205460ff16155b156112e65760135484111561123e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f0000000000000000000000001a77ad0dbef7f5e2fee6c92968ea99b351a249f56001600160a01b0316856001600160a01b0316146112e6576015546112838661096f565b61128d908661240c565b11156112e65760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112f286868684611569565b505050505050565b6000818484111561131e5760405162461bcd60e51b81526004016107aa919061213b565b50600061132b848661241f565b95945050505050565b60008060006113416117d7565b90925090506113508282610d10565b9250505090565b600081836113785760405162461bcd60e51b81526004016107aa919061213b565b50600061132b84866123ea565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113cb926101009182900483169291900416612432565b6113d59190612432565b6113df9190612432565b6113ea90600261244b565b60115460105460ff92831693506000928492611413926101009182900483169291900416612432565b6114209060ff16856123d3565b61142a91906123ea565b90506000611438828561241f565b90504761144482611959565b6000611450824761241f565b6011546010549192506000916114769160ff610100918290048116929190910416612432565b6114839060ff168761241f565b61148d90836123ea565b6011546010549192506000916114b39160ff610100918290048116929190910416612432565b6114c09060ff16836123d3565b905080156114d2576114d28682611b11565b6011546010546000916114f59160ff620100009283900481169290910416612432565b60ff166115038460026123d3565b61150d91906123d3565b9050801561155157600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154f573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166c576115806012805462ffffff19169055565b7f0000000000000000000000001a77ad0dbef7f5e2fee6c92968ea99b351a249f56001600160a01b0316846001600160a01b0316036115f6576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f0000000000000000000000001a77ad0dbef7f5e2fee6c92968ea99b351a249f56001600160a01b0316836001600160a01b03160361166c576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ad57506001600160a01b03831660009081526006602052604090205460ff16155b156116c2576116bd848484611bf1565b6117c0565b6001600160a01b03841660009081526006602052604090205460ff1615801561170357506001600160a01b03831660009081526006602052604090205460ff165b15611713576116bd848484611d38565b6001600160a01b03841660009081526006602052604090205460ff1615801561175557506001600160a01b03831660009081526006602052604090205460ff16155b15611765576116bd848484611df3565b6001600160a01b03841660009081526006602052604090205460ff1680156117a557506001600160a01b03831660009081526006602052604090205460ff165b156117b5576116bd848484611e49565b6117c0848484611df3565b6117d16012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015611929578260026000600784815481106118065761180661246e565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611871575081600360006007848154811061184a5761184a61246e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188757600a54600954945094505050509091565b6118cd60026000600784815481106118a1576118a161246e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611eca565b925061191560036000600784815481106118e9576118e961246e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611eca565b91508061192181612484565b9150506117e4565b50600954600a5461193991610d10565b82101561195057600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198e5761198e61246e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a30919061249d565b81600181518110611a4357611a4361246e565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae39085906000908690309042906004016124ba565b600060405180830381600087803b158015611afd57600080fd5b505af11580156112f2573d6000803e3d6000fd5b611b3c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd4565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bea919061252b565b5050505050565b600080600080611c0085611f0c565b93509350935093506000806000611c2188878787611c1c611334565b611f6b565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4c9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7b9084611eca565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611caa9083611fcd565b6001600160a01b038a16600090815260026020526040902055611ccc8561202c565b611cd58461202c565b611cdf81876120b5565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2491815260200190565b60405180910390a350505050505050505050565b600080600080611d4785611f0c565b93509350935093506000806000611d6388878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8e9084611eca565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc49088611fcd565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611caa9083611fcd565b600080600080611e0285611f0c565b93509350935093506000806000611e1e88878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7b9084611eca565b600080600080611e5885611f0c565b93509350935093506000806000611e7488878787611c1c611334565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9f9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8e90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fa565b6000806000806000611f1d866120d9565b90506000611f2a876120fa565b90506000611f378861211a565b90506000611f4f83611f498b87611eca565b90611eca565b9050611f5b8183611eca565b9993985091965094509092505050565b6000808080611f7a8986610d52565b90506000611f888987610d52565b90506000611f968988610d52565b90506000611fa48989610d52565b90506000611fb882611f4985818989611eca565b949d949c50929a509298505050505050505050565b600080611fda838561240c565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612036611334565b905060006120448383610d52565b306000908152600260205260409020549091506120619082611fcd565b3060009081526002602090815260408083209390935560069052205460ff16156120b0573060009081526003602052604090205461209f9084611fcd565b306000908152600360205260409020555b505050565b600a546120c29083611eca565b600a55600b546120d29082611fcd565b600b555050565b60125460009061077a906064906120f490859060ff16610d52565b90610d10565b60125460009061077a906064906120f4908590610100900460ff16610d52565b60125460009061077a906064906120f490859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121685785810183015185820160400152820161214c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461219e57600080fd5b50565b600080604083850312156121b457600080fd5b82356121bf81612189565b946020939093013593505050565b6000602082840312156121df57600080fd5b813561091a81612189565b6000806000606084860312156121ff57600080fd5b833561220a81612189565b9250602084013561221a81612189565b929592945050506040919091013590565b8035801515811461223b57600080fd5b919050565b6000806040838503121561225357600080fd5b6121bf8361222b565b60006020828403121561226e57600080fd5b5035919050565b803560ff8116811461223b57600080fd5b60008060008060008060c0878903121561229f57600080fd5b6122a887612275565b95506122b660208801612275565b94506122c460408801612275565b93506122d260608801612275565b92506122e060808801612275565b91506122ee60a08801612275565b90509295509295509295565b60006020828403121561230c57600080fd5b61091a8261222b565b6000806040838503121561232857600080fd5b823561233381612189565b9150602083013561234381612189565b809150509250929050565b600181811c9082168061236257607f821691505b60208210810361238257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761077a5761077a6123bd565b60008261240757634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561077a5761077a6123bd565b8181038181111561077a5761077a6123bd565b60ff818116838216019081111561077a5761077a6123bd565b60ff8181168382160290811690818114612467576124676123bd565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060018201612496576124966123bd565b5060010190565b6000602082840312156124af57600080fd5b815161091a81612189565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561250a5784516001600160a01b0316835293830193918301916001016124e5565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561254057600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c01022192fdcb9575547288536a259038425f8965fd3b33ad16dd6b51307ca3a64736f6c63430008110033

Deployed Bytecode Sourcemap

25184:20982:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28497:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29482:193;;;;;;;;;;-1:-1:-1;29482:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;29482:193:0;1023:187:1;30838:115:0;;;;;;;;;;-1:-1:-1;30838:115:0;;;;;:::i;:::-;;:::i;:::-;;26482:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;26482:51:0;1467:230:1;28774:95:0;;;;;;;;;;-1:-1:-1;28854:7:0;;28774:95;;;1848:25:1;;;1836:2;1821:18;28774:95:0;1702:177:1;29683:446:0;;;;;;;;;;-1:-1:-1;29683:446:0;;;;;:::i;:::-;;:::i;26346:22::-;;;;;;;;;;-1:-1:-1;26346:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;2565:4:1;2553:17;;;2535:36;;2607:17;;;2602:2;2587:18;;2580:45;2661:17;;2641:18;;;2634:45;;;;2523:2;2508:18;26346:22:0;2345:340:1;45912:251:0;;;;;;;;;;-1:-1:-1;45912:251:0;;;;;:::i;:::-;;:::i;30269:322::-;;;;;;;;;;-1:-1:-1;30269:322:0;;;;;:::i;:::-;;:::i;28683:83::-;;;;;;;;;;-1:-1:-1;28749:9:0;;28683:83;;28749:9;;;;3435:36:1;;3423:2;3408:18;28683:83:0;3293:184:1;30601:111:0;;;;;;;;;;-1:-1:-1;30601:111:0;;;;;:::i;:::-;;:::i;26319:20::-;;;;;;;;;;-1:-1:-1;26319:20:0;;;;;;;;;;;;;;;;;;;;;;26540:38;;;;;;;;;;;;;;;35976:124;;;;;;;;;;-1:-1:-1;35976:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;36065:27:0;36041:4;36065:27;;;:18;:27;;;;;;;;;35976:124;28877:198;;;;;;;;;;-1:-1:-1;28877:198:0;;;;;:::i;:::-;;:::i;15248:148::-;;;;;;;;;;;;;:::i;26657:55::-;;;;;;;;;;;;;;;;30139:120;;;;;;;;;;-1:-1:-1;30139:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30231:20:0;30207:4;30231:20;;;:11;:20;;;;;;;;;30139:120;14606:79;;;;;;;;;;-1:-1:-1;14644:7:0;14671:6;-1:-1:-1;;;;;14671:6:0;14606:79;;26810:57;;;;;;;;;;;;;;;;30961:114;;;;;;;;;;-1:-1:-1;30961:114:0;;;;;:::i;:::-;;:::i;28588:87::-;;;;;;;;;;;;;:::i;27358:46::-;;;;;;;;;;-1:-1:-1;27358:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29083:199;;;;;;;;;;-1:-1:-1;29083:199:0;;;;;:::i;:::-;;:::i;31083:514::-;;;;;;;;;;-1:-1:-1;31083:514:0;;;;;:::i;:::-;;:::i;31753:171::-;;;;;;;;;;-1:-1:-1;31753:171:0;;;;;:::i;:::-;;:::i;36108:128::-;;;;;;;;;;-1:-1:-1;36108:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;36199:29:0;36175:4;36199:29;;;:20;:29;;;;;;;;;36108:128;29290:184;;;;;;;;;;-1:-1:-1;29290:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29439:18:0;;;29407:7;29439:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29290:184;30720:110;;;;;;;;;;-1:-1:-1;30720:110:0;;;;;:::i;:::-;;:::i;31605:140::-;;;;;;;;;;-1:-1:-1;31605:140:0;;;;;:::i;:::-;;:::i;15551:281::-;;;;;;;;;;-1:-1:-1;15551:281:0;;;;;:::i;:::-;;:::i;27260:29::-;;;;;;;;;;;;;;;;28497:83;28534:13;28567:5;28560:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28497:83;:::o;29482:193::-;29584:4;29606:39;7450:10;29629:7;29638:6;29606:8;:39::i;:::-;-1:-1:-1;29663:4:0;29482:193;;;;;:::o;30838:115::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;30909:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;30909:36:0::1;30941:4;30909:36;::::0;;30838:115::o;29683:446::-;29815:4;29832:36;29842:6;29850:9;29861:6;29832:9;:36::i;:::-;29879:220;29902:6;7450:10;29950:138;30006:6;29950:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29950:19:0;;;;;;:11;:19;;;;;;;;7450:10;29950:33;;;;;;;;;;:37;:138::i;:::-;29879:8;:220::i;:::-;-1:-1:-1;30117:4:0;29683:446;;;;;:::o;45912:251::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;45999:11:::1;:21:::0;;-1:-1:-1;;45999:21:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;46034:11:::0;:30;::::1;;;-1:-1:-1::0;46049:10:0::1;::::0;:15;46034:30:::1;46031:125;;;46093:12;46080:10;:25:::0;46120:10:::1;:24:::0;;;46031:125:::1;45912:251:::0;;:::o;30269:322::-;30363:7;30421;;30410;:18;;30388:110;;;;-1:-1:-1;;;30388:110:0;;5917:2:1;30388:110:0;;;5899:21:1;5956:2;5936:18;;;5929:30;5995:34;5975:18;;;5968:62;-1:-1:-1;;;6046:18:1;;;6039:40;6096:19;;30388:110:0;5715:406:1;30388:110:0;30509:19;30531:10;:8;:10::i;:::-;30509:32;-1:-1:-1;30559:24:0;:7;30509:32;30559:11;:24::i;:::-;30552:31;30269:322;-1:-1:-1;;;30269:322:0:o;30601:111::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30670:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;30670:34:0::1;30700:4;30670:34;::::0;;30601:111::o;28877:198::-;-1:-1:-1;;;;;28967:20:0;;28943:7;28967:20;;;:11;:20;;;;;;;;28963:49;;;-1:-1:-1;;;;;;28996:16:0;;;;;:7;:16;;;;;;;28877:198::o;28963:49::-;-1:-1:-1;;;;;29050:16:0;;;;;;:7;:16;;;;;;29030:37;;:19;:37::i;15248:148::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;15355:1:::1;15339:6:::0;;15318:40:::1;::::0;-1:-1:-1;;;;;15339:6:0;;::::1;::::0;15318:40:::1;::::0;15355:1;;15318:40:::1;15386:1;15369:19:::0;;-1:-1:-1;;;;;;15369:19:0::1;::::0;;15248:148::o;30961:114::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31030:29:0::1;31062:5;31030:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;31030:37:0::1;::::0;;30961:114::o;28588:87::-;28627:13;28660:7;28653:14;;;;;:::i;29083:199::-;29188:4;29210:42;7450:10;29234:9;29245:6;29210:9;:42::i;31083:514::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;31330:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;31375:32:0;;;;31330:34:::1;31375:32:::0;;::::1;::::0;::::1;;-1:-1:-1::0;;31418:32:0;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;31463:7:::1;:36:::0;;;;::::1;31510:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;31555::::0;;::::1;::::0;;;::::1;;;::::0;;31083:514::o;31753:171::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;31830:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;31830:32:0;;::::1;;::::0;;31878:38:::1;::::0;::::1;::::0;::::1;::::0;31854:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;31878:38:0::1;;;;;;;;31753:171:::0;:::o;30720:110::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30787:27:0::1;30817:5;30787:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;30787:35:0::1;::::0;;30720:110::o;31605:140::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;31696:29:::1;:41:::0;31605:140::o;15551:281::-;14818:6;;-1:-1:-1;;;;;14818:6:0;7450:10;14818:22;14810:67;;;;-1:-1:-1;;;14810:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15654:22:0;::::1;15632:110;;;::::0;-1:-1:-1;;;15632:110:0;;6328:2:1;15632:110:0::1;::::0;::::1;6310:21:1::0;6367:2;6347:18;;;6340:30;6406:34;6386:18;;;6379:62;-1:-1:-1;;;6457:18:1;;;6450:36;6503:19;;15632:110:0::1;6126:402:1::0;15632:110:0::1;15779:6;::::0;;15758:38:::1;::::0;-1:-1:-1;;;;;15758:38:0;;::::1;::::0;15779:6;::::1;::::0;15758:38:::1;::::0;::::1;15807:6;:17:::0;;-1:-1:-1;;;;;;15807:17:0::1;-1:-1:-1::0;;;;;15807:17:0;;;::::1;::::0;;;::::1;::::0;;15551:281::o;5094:132::-;5152:7;5179:39;5183:1;5186;5179:39;;;;;;;;;;;;;;;;;:3;:39::i;4599:252::-;4657:7;4683:1;4688;4683:6;4679:47;;-1:-1:-1;4713:1:0;4706:8;;4679:47;4738:9;4750:5;4754:1;4750;:5;:::i;:::-;4738:17;-1:-1:-1;4783:1:0;4774:5;4778:1;4738:17;4774:5;:::i;:::-;:10;4766:56;;;;-1:-1:-1;;;4766:56:0;;7262:2:1;4766:56:0;;;7244:21:1;7301:2;7281:18;;;7274:30;7340:34;7320:18;;;7313:62;-1:-1:-1;;;7391:18:1;;;7384:31;7432:19;;4766:56:0;7060:397:1;36244:371:0;-1:-1:-1;;;;;36371:19:0;;36363:68;;;;-1:-1:-1;;;36363:68:0;;7664:2:1;36363:68:0;;;7646:21:1;7703:2;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;-1:-1:-1;;;7793:18:1;;;7786:34;7837:19;;36363:68:0;7462:400:1;36363:68:0;-1:-1:-1;;;;;36450:21:0;;36442:68;;;;-1:-1:-1;;;36442:68:0;;8069:2:1;36442:68:0;;;8051:21:1;8108:2;8088:18;;;8081:30;8147:34;8127:18;;;8120:62;-1:-1:-1;;;8198:18:1;;;8191:32;8240:19;;36442:68:0;7867:398:1;36442:68:0;-1:-1:-1;;;;;36523:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36575:32;;1848:25:1;;;36575:32:0;;1821:18:1;36575:32:0;;;;;;;36244:371;;;:::o;36623:2343::-;-1:-1:-1;;;;;36745:18:0;;36737:68;;;;-1:-1:-1;;;36737:68:0;;8472:2:1;36737:68:0;;;8454:21:1;8511:2;8491:18;;;8484:30;8550:34;8530:18;;;8523:62;-1:-1:-1;;;8601:18:1;;;8594:35;8646:19;;36737:68:0;8270:401:1;36737:68:0;-1:-1:-1;;;;;36824:16:0;;36816:64;;;;-1:-1:-1;;;36816:64:0;;8878:2:1;36816:64:0;;;8860:21:1;8917:2;8897:18;;;8890:30;8956:34;8936:18;;;8929:62;-1:-1:-1;;;9007:18:1;;;9000:33;9050:19;;36816:64:0;8676:399:1;36816:64:0;36908:1;36899:6;:10;36891:64;;;;-1:-1:-1;;;36891:64:0;;9282:2:1;36891:64:0;;;9264:21:1;9321:2;9301:18;;;9294:30;9360:34;9340:18;;;9333:62;-1:-1:-1;;;9411:18:1;;;9404:39;9460:19;;36891:64:0;9080:405:1;36891:64:0;14644:7;14671:6;-1:-1:-1;;;;;36981:15:0;;;14671:6;;36981:15;;;;:32;;-1:-1:-1;14644:7:0;14671:6;-1:-1:-1;;;;;37000:13:0;;;14671:6;;37000:13;;36981:32;36976:88;;;37024:11;;;;37016:48;;;;-1:-1:-1;;;37016:48:0;;9692:2:1;37016:48:0;;;9674:21:1;9731:2;9711:18;;;9704:30;9770:26;9750:18;;;9743:54;9814:18;;37016:48:0;9490:348:1;37016:48:0;37399:28;37430:24;37448:4;37430:9;:24::i;:::-;37399:55;;37495:12;;37471:20;:36;37467:104;;-1:-1:-1;37547:12:0;;37467:104;37647:29;;37610:66;;;;;;;37705:53;;-1:-1:-1;37742:16:0;;;;;;;37741:17;37705:53;:91;;;;;37783:13;-1:-1:-1;;;;;37775:21:0;:4;-1:-1:-1;;;;;37775:21:0;;;37705:91;:129;;;;-1:-1:-1;37813:21:0;;;;;;;37705:129;37687:318;;;37884:29;;37861:52;;37957:36;37972:20;37957:14;:36::i;:::-;-1:-1:-1;;;;;38198:24:0;;38078:12;38198:24;;;:18;:24;;;;;;38093:4;;38198:24;;;:50;;-1:-1:-1;;;;;;38226:22:0;;;;;;:18;:22;;;;;;;;38198:50;38194:98;;;-1:-1:-1;38275:5:0;38194:98;38306:7;38302:536;;;-1:-1:-1;;;;;38335:26:0;;;;;;:20;:26;;;;;;;;38334:27;:56;;;;-1:-1:-1;;;;;;38366:24:0;;;;;;:20;:24;;;;;;;;38365:25;38334:56;38330:497;;;38451:12;;38441:6;:22;;38411:136;;;;-1:-1:-1;;;38411:136:0;;10045:2:1;38411:136:0;;;10027:21:1;10084:2;10064:18;;;10057:30;10123:34;10103:18;;;10096:62;-1:-1:-1;;;10174:18:1;;;10167:38;10222:19;;38411:136:0;9843:404:1;38411:136:0;38576:13;-1:-1:-1;;;;;38570:19:0;:2;-1:-1:-1;;;;;38570:19:0;;38566:228;;38674:14;;38657:13;38667:2;38657:9;:13::i;:::-;38648:22;;:6;:22;:::i;:::-;:40;;38614:160;;;;-1:-1:-1;;;38614:160:0;;10584:2:1;38614:160:0;;;10566:21:1;10623:2;10603:18;;;10596:30;10662:34;10642:18;;;10635:62;-1:-1:-1;;;10713:18:1;;;10706:32;10755:19;;38614:160:0;10382:398:1;38614:160:0;38917:41;38932:4;38938:2;38942:6;38950:7;38917:14;:41::i;:::-;36726:2240;;;36623:2343;;;:::o;4114:226::-;4234:7;4270:12;4262:6;;;;4254:29;;;;-1:-1:-1;;;4254:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4294:9:0;4306:5;4310:1;4306;:5;:::i;:::-;4294:17;4114:226;-1:-1:-1;;;;;4114:226:0:o;33453:164::-;33495:7;33516:15;33533;33552:19;:17;:19::i;:::-;33515:56;;-1:-1:-1;33515:56:0;-1:-1:-1;33589:20:0;33515:56;;33589:11;:20::i;:::-;33582:27;;;;33453:164;:::o;5722:312::-;5842:7;5877:12;5870:5;5862:28;;;;-1:-1:-1;;;5862:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5901:9:0;5913:5;5917:1;5913;:5;:::i;38974:1195::-;27174:16;:23;;-1:-1:-1;;27174:23:0;;;;;39177:7:::1;:17:::0;39158:6:::1;:16:::0;27174:23;;39177:17;;;::::1;27174:23:::0;39177:17;;::::1;::::0;39158:16;;::::1;::::0;::::1;::::0;39119:36:::1;::::0;27174:23;39138:17;;;::::1;::::0;::::1;::::0;39119:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;39118:81;::::0;39198:1:::1;39118:81;:::i;:::-;39275:7;:17:::0;39256:6:::1;:16:::0;39096:103:::1;::::0;;::::1;::::0;-1:-1:-1;39210:32:0::1;::::0;39096:103;;39256:36:::1;::::0;39275:17:::1;::::0;;;::::1;::::0;::::1;::::0;39256:16;;::::1;;:36;:::i;:::-;39246:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;39245:63;;;;:::i;:::-;39210:98:::0;-1:-1:-1;39319:14:0::1;39336:33;39210:98:::0;39336:6;:33:::1;:::i;:::-;39319:50:::0;-1:-1:-1;39407:21:0::1;39441:24;39319:50:::0;39441:16:::1;:24::i;:::-;39478:20;39501:38;39525:14:::0;39501:21:::1;:38;:::i;:::-;39622:7;:17:::0;39603:6:::1;:16:::0;39478:61;;-1:-1:-1;39550:19:0::1;::::0;39603:36:::1;::::0;39622:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39603:16;;;::::1;;:36;:::i;:::-;39588:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39572:69;::::0;:12;:69:::1;:::i;:::-;39718:7;:17:::0;39699:6:::1;:16:::0;39550:91;;-1:-1:-1;39652:29:0::1;::::0;39699:36:::1;::::0;39718:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39699:16;;;::::1;;:36;:::i;:::-;39684:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39652:84:::0;-1:-1:-1;39753:25:0;;39749:160:::1;;39836:61;39849:24;39875:21;39836:12;:61::i;:::-;40016:7;:17:::0;39997:6:::1;:16:::0;39955:20:::1;::::0;39997:36:::1;::::0;40016:17:::1;::::0;;;;::::1;::::0;::::1;::::0;39997:16;;::::1;;:36;:::i;:::-;39978:56;;:15;:11:::0;39992:1:::1;39978:15;:::i;:::-;:56;;;;:::i;:::-;39955:79:::0;-1:-1:-1;40060:16:0;;40056:98:::1;;40101:17;::::0;40093:49:::1;::::0;-1:-1:-1;;;;;40101:17:0;;::::1;::::0;40093:49;::::1;;;::::0;40129:12;;40101:17:::1;40093:49:::0;40101:17;40093:49;40129:12;40101:17;40093:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40056:98;-1:-1:-1::0;;27220:16:0;:24;;-1:-1:-1;;27220:24:0;;;-1:-1:-1;;;;;;;38974:1195:0:o;41374:1022::-;41529:7;41525:230;;;41553:14;35513;:18;;-1:-1:-1;;35570:17:0;;;35470:132;41553:14;41596:13;-1:-1:-1;;;;;41586:23:0;:6;-1:-1:-1;;;;;41586:23:0;;41582:72;;35664:6;:17;35647:14;:34;;35664:17;;;;-1:-1:-1;;35692:32:0;;;;;;;35664:17;35708:16;;;;;35692:32;;-1:-1:-1;;35735:32:0;35751:16;;;;;;;;;35735:32;;;;;;;;;41630:8;41685:13;-1:-1:-1;;;;;41672:26:0;:9;-1:-1:-1;;;;;41672:26:0;;41668:76;;35846:7;:18;35829:14;:35;;35846:18;;;;-1:-1:-1;;35875:33:0;;;;;;;35846:18;35891:17;;;;;35875:33;;-1:-1:-1;;35919:33:0;35935:17;;;;;;;;;35919:33;;;;;;;;;41719:9;-1:-1:-1;;;;;41771:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41795:22:0;;;;;;:11;:22;;;;;;;;41794:23;41771:46;41767:597;;;41834:48;41856:6;41864:9;41875:6;41834:21;:48::i;:::-;41767:597;;;-1:-1:-1;;;;;41905:19:0;;;;;;:11;:19;;;;;;;;41904:20;:46;;;;-1:-1:-1;;;;;;41928:22:0;;;;;;:11;:22;;;;;;;;41904:46;41900:464;;;41967:46;41987:6;41995:9;42006:6;41967:19;:46::i;41900:464::-;-1:-1:-1;;;;;42036:19:0;;;;;;:11;:19;;;;;;;;42035:20;:47;;;;-1:-1:-1;;;;;;42060:22:0;;;;;;:11;:22;;;;;;;;42059:23;42035:47;42031:333;;;42099:44;42117:6;42125:9;42136:6;42099:17;:44::i;42031:333::-;-1:-1:-1;;;;;42165:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42188:22:0;;;;;;:11;:22;;;;;;;;42165:45;42161:203;;;42227:48;42249:6;42257:9;42268:6;42227:21;:48::i;42161:203::-;42308:44;42326:6;42334:9;42345:6;42308:17;:44::i;:::-;42374:14;35513;:18;;-1:-1:-1;;35570:17:0;;;35470:132;42374:14;41374:1022;;;;:::o;33625:605::-;33723:7;;33759;;33676;;;;;33777:338;33801:9;:16;33797:20;;33777:338;;;33885:7;33861;:21;33869:9;33879:1;33869:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33869:12:0;33861:21;;;;;;;;;;;;;:31;;:83;;;33937:7;33913;:21;33921:9;33931:1;33921:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33921:12:0;33913:21;;;;;;;;;;;;;:31;33861:83;33839:146;;;33968:7;;33977;;33960:25;;;;;;;33625:605;;:::o;33839:146::-;34010:34;34022:7;:21;34030:9;34040:1;34030:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34030:12:0;34022:21;;;;;;;;;;;;;34010:7;;:11;:34::i;:::-;34000:44;;34069:34;34081:7;:21;34089:9;34099:1;34089:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34089:12:0;34081:21;;;;;;;;;;;;;34069:7;;:11;:34::i;:::-;34059:44;-1:-1:-1;33819:3:0;;;;:::i;:::-;;;;33777:338;;;-1:-1:-1;34151:7:0;;34139;;:20;;:11;:20::i;:::-;34129:7;:30;34125:61;;;34169:7;;34178;;34161:25;;;;;;33625:605;;:::o;34125:61::-;34205:7;;34214;;-1:-1:-1;33625:605:0;-1:-1:-1;33625:605:0:o;40177:589::-;40327:16;;;40341:1;40327:16;;;;;;;;40303:21;;40327:16;;;;;;;;;;-1:-1:-1;40327:16:0;40303:40;;40372:4;40354;40359:1;40354:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40354:23:0;;;-1:-1:-1;;;;;40354:23:0;;;;;40398:15;-1:-1:-1;;;;;40398:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40388:4;40393:1;40388:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40388:32:0;;;-1:-1:-1;;;;;40388:32:0;;;;;40433:62;40450:4;40465:15;40483:11;40433:8;:62::i;:::-;40534:224;;-1:-1:-1;;;40534:224:0;;-1:-1:-1;;;;;40534:15:0;:66;;;;:224;;40615:11;;40641:1;;40685:4;;40712;;40732:15;;40534:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40774:519;40922:62;40939:4;40954:15;40972:11;40922:8;:62::i;:::-;41027:258;;-1:-1:-1;;;41027:258:0;;41099:4;41027:258;;;13287:34:1;;;13337:18;;;13330:34;;;41145:1:0;13380:18:1;;;13373:34;;;13423:18;;;13416:34;13466:19;;;13459:44;41259:15:0;13519:19:1;;;13512:35;41027:15:0;-1:-1:-1;;;;;41027:31:0;;;;41066:9;;13221:19:1;;41027:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40774:519;;:::o;44099:863::-;44250:23;44288:12;44315:18;44348:15;44377:20;44389:7;44377:11;:20::i;:::-;44235:162;;;;;;;;44409:15;44426:23;44451:12;44467:135;44493:7;44515:4;44534:10;44559:7;44581:10;:8;:10::i;:::-;44467:11;:135::i;:::-;-1:-1:-1;;;;;44633:15:0;;;;;;:7;:15;;;;;;44408:194;;-1:-1:-1;44408:194:0;;-1:-1:-1;44408:194:0;-1:-1:-1;44633:28:0;;44653:7;44633:19;:28::i;:::-;-1:-1:-1;;;;;44615:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44690:7;:15;;;;:28;;44710:7;44690:19;:28::i;:::-;-1:-1:-1;;;;;44672:15:0;;;;;;;:7;:15;;;;;;:46;;;;44750:18;;;;;;;:39;;44773:15;44750:22;:39::i;:::-;-1:-1:-1;;;;;44729:18:0;;;;;;:7;:18;;;;;:60;44800:26;44815:10;44800:14;:26::i;:::-;44837:23;44852:7;44837:14;:23::i;:::-;44871;44883:4;44889;44871:11;:23::i;:::-;44927:9;-1:-1:-1;;;;;44910:44:0;44919:6;-1:-1:-1;;;;;44910:44:0;;44938:15;44910:44;;;;1848:25:1;;1836:2;1821:18;;1702:177;44910:44:0;;;;;;;;44224:738;;;;;;;44099:863;;;:::o;43216:875::-;43365:23;43403:12;43430:18;43463:15;43492:20;43504:7;43492:11;:20::i;:::-;43350:162;;;;;;;;43524:15;43541:23;43566:12;43582:135;43608:7;43630:4;43649:10;43674:7;43696:10;:8;:10::i;43582:135::-;-1:-1:-1;;;;;43748:15:0;;;;;;:7;:15;;;;;;43523:194;;-1:-1:-1;43523:194:0;;-1:-1:-1;43523:194:0;-1:-1:-1;43748:28:0;;43523:194;43748:19;:28::i;:::-;-1:-1:-1;;;;;43730:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43808:18;;;;;:7;:18;;;;;:39;;43831:15;43808:22;:39::i;:::-;-1:-1:-1;;;;;43787:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43879:7;:18;;;;:39;;43902:15;43879:22;:39::i;42404:802::-;42551:23;42589:12;42616:18;42649:15;42678:20;42690:7;42678:11;:20::i;:::-;42536:162;;;;;;;;42710:15;42727:23;42752:12;42768:135;42794:7;42816:4;42835:10;42860:7;42882:10;:8;:10::i;42768:135::-;-1:-1:-1;;;;;42934:15:0;;;;;;:7;:15;;;;;;42709:194;;-1:-1:-1;42709:194:0;;-1:-1:-1;42709:194:0;-1:-1:-1;42934:28:0;;42709:194;42934:19;:28::i;44970:934::-;45121:23;45159:12;45186:18;45219:15;45248:20;45260:7;45248:11;:20::i;:::-;45106:162;;;;;;;;45280:15;45297:23;45322:12;45338:135;45364:7;45386:4;45405:10;45430:7;45452:10;:8;:10::i;45338:135::-;-1:-1:-1;;;;;45504:15:0;;;;;;:7;:15;;;;;;45279:194;;-1:-1:-1;45279:194:0;;-1:-1:-1;45279:194:0;-1:-1:-1;45504:28:0;;45524:7;45504:19;:28::i;:::-;-1:-1:-1;;;;;45486:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45561:7;:15;;;;:28;;45581:7;3675:136;3733:7;3760:43;3764:1;3767;3760:43;;;;;;;;;;;;;;;;;:3;:43::i;32181:568::-;32282:7;32304;32326;32348;32383:12;32398:31;32421:7;32398:22;:31::i;:::-;32383:46;;32440:18;32461:30;32483:7;32461:21;:30::i;:::-;32440:51;;32502:15;32520:30;32542:7;32520:21;:30::i;:::-;32502:48;-1:-1:-1;32561:23:0;32587:33;32609:10;32587:17;:7;32599:4;32587:11;:17::i;:::-;:21;;:33::i;:::-;32561:59;-1:-1:-1;32649:28:0;32561:59;32669:7;32649:19;:28::i;:::-;32631:46;32715:4;;-1:-1:-1;32721:10:0;;-1:-1:-1;32721:10:0;-1:-1:-1;32181:568:0;;-1:-1:-1;;;32181:568:0:o;32757:688::-;32982:7;;;;33079:24;:7;33091:11;33079;:24::i;:::-;33061:42;-1:-1:-1;33114:12:0;33129:21;:4;33138:11;33129:8;:21::i;:::-;33114:36;-1:-1:-1;33161:18:0;33182:27;:10;33197:11;33182:14;:27::i;:::-;33161:48;-1:-1:-1;33220:15:0;33238:24;:7;33250:11;33238;:24::i;:::-;33220:42;-1:-1:-1;33273:23:0;33299:88;33220:42;33299:61;33349:10;33299:61;:7;33325:4;33299:25;:31::i;:88::-;33406:7;;;;-1:-1:-1;33432:4:0;;-1:-1:-1;32757:688:0;;-1:-1:-1;;;;;;;;;32757:688:0:o;3211:181::-;3269:7;;3301:5;3305:1;3301;:5;:::i;:::-;3289:17;;3330:1;3325;:6;;3317:46;;;;-1:-1:-1;;;3317:46:0;;14071:2:1;3317:46:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:29;14129:18;;;14122:57;14196:18;;3317:46:0;13869:351:1;34238:355:0;34301:19;34323:10;:8;:10::i;:::-;34301:32;-1:-1:-1;34344:18:0;34365:27;:10;34301:32;34365:14;:27::i;:::-;34444:4;34428:22;;;;:7;:22;;;;;;34344:48;;-1:-1:-1;34428:38:0;;34344:48;34428:26;:38::i;:::-;34419:4;34403:22;;;;:7;:22;;;;;;;;:63;;;;34481:11;:26;;;;;;34477:108;;;34563:4;34547:22;;;;:7;:22;;;;;;:38;;34574:10;34547:26;:38::i;:::-;34538:4;34522:22;;;;:7;:22;;;;;:63;34477:108;34290:303;;34238:355;:::o;32026:147::-;32104:7;;:17;;32116:4;32104:11;:17::i;:::-;32094:7;:27;32145:10;;:20;;32160:4;32145:14;:20::i;:::-;32132:10;:33;-1:-1:-1;;32026:147:0:o;34949:144::-;35059:14;;35020:7;;35047:38;;35079:5;;35047:27;;:7;;35059:14;;35047:11;:27::i;:::-;:31;;:38::i;35101:174::-;35242:13;;35198:7;;35230:37;;35261:5;;35230:26;;:7;;35242:13;;;;;35230:11;:26::i;35283:174::-;35424:13;;35380:7;;35412:37;;35443:5;;35412:26;;:7;;35424:13;;;;;35412:11;:26::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2690:160::-;2755:20;;2811:13;;2804:21;2794:32;;2784:60;;2840:1;2837;2830:12;2784:60;2690:160;;;:::o;2855:248::-;2920:6;2928;2981:2;2969:9;2960:7;2956:23;2952:32;2949:52;;;2997:1;2994;2987:12;2949:52;3020:26;3036:9;3020:26;:::i;3108:180::-;3167:6;3220:2;3208:9;3199:7;3195:23;3191:32;3188:52;;;3236:1;3233;3226:12;3188:52;-1:-1:-1;3259:23:1;;3108:180;-1:-1:-1;3108:180:1:o;3690:156::-;3756:20;;3816:4;3805:16;;3795:27;;3785:55;;3836:1;3833;3826:12;3851:535;3943:6;3951;3959;3967;3975;3983;4036:3;4024:9;4015:7;4011:23;4007:33;4004:53;;;4053:1;4050;4043:12;4004:53;4076:27;4093:9;4076:27;:::i;:::-;4066:37;;4122:36;4154:2;4143:9;4139:18;4122:36;:::i;:::-;4112:46;;4177:36;4209:2;4198:9;4194:18;4177:36;:::i;:::-;4167:46;;4232:36;4264:2;4253:9;4249:18;4232:36;:::i;:::-;4222:46;;4287:37;4319:3;4308:9;4304:19;4287:37;:::i;:::-;4277:47;;4343:37;4375:3;4364:9;4360:19;4343:37;:::i;:::-;4333:47;;3851:535;;;;;;;;:::o;4391:180::-;4447:6;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:26;4555:9;4539:26;:::i;4576:388::-;4644:6;4652;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4760:9;4747:23;4779:31;4804:5;4779:31;:::i;:::-;4829:5;-1:-1:-1;4886:2:1;4871:18;;4858:32;4899:33;4858:32;4899:33;:::i;:::-;4951:7;4941:17;;;4576:388;;;;;:::o;4969:380::-;5048:1;5044:12;;;;5091;;;5112:61;;5166:4;5158:6;5154:17;5144:27;;5112:61;5219:2;5211:6;5208:14;5188:18;5185:38;5182:161;;5265:10;5260:3;5256:20;5253:1;5246:31;5300:4;5297:1;5290:15;5328:4;5325:1;5318:15;5182:161;;4969:380;;;:::o;5354:356::-;5556:2;5538:21;;;5575:18;;;5568:30;5634:34;5629:2;5614:18;;5607:62;5701:2;5686:18;;5354:356::o;6533:127::-;6594:10;6589:3;6585:20;6582:1;6575:31;6625:4;6622:1;6615:15;6649:4;6646:1;6639:15;6665:168;6738:9;;;6769;;6786:15;;;6780:22;;6766:37;6756:71;;6807:18;;:::i;6838:217::-;6878:1;6904;6894:132;;6948:10;6943:3;6939:20;6936:1;6929:31;6983:4;6980:1;6973:15;7011:4;7008:1;7001:15;6894:132;-1:-1:-1;7040:9:1;;6838:217::o;10252:125::-;10317:9;;;10338:10;;;10335:36;;;10351:18;;:::i;10785:128::-;10852:9;;;10873:11;;;10870:37;;;10887:18;;:::i;10918:148::-;11006:4;10985:12;;;10999;;;10981:31;;11024:13;;11021:39;;;11040:18;;:::i;11071:225::-;11175:4;11154:12;;;11168;;;11150:31;11201:22;;;;11242:24;;;11232:58;;11270:18;;:::i;:::-;11232:58;11071:225;;;;:::o;11301:127::-;11362:10;11357:3;11353:20;11350:1;11343:31;11393:4;11390:1;11383:15;11417:4;11414:1;11407:15;11433:135;11472:3;11493:17;;;11490:43;;11513:18;;:::i;:::-;-1:-1:-1;11560:1:1;11549:13;;11433:135::o;11705:251::-;11775:6;11828:2;11816:9;11807:7;11803:23;11799:32;11796:52;;;11844:1;11841;11834:12;11796:52;11876:9;11870:16;11895:31;11920:5;11895:31;:::i;11961:980::-;12223:4;12271:3;12260:9;12256:19;12302:6;12291:9;12284:25;12328:2;12366:6;12361:2;12350:9;12346:18;12339:34;12409:3;12404:2;12393:9;12389:18;12382:31;12433:6;12468;12462:13;12499:6;12491;12484:22;12537:3;12526:9;12522:19;12515:26;;12576:2;12568:6;12564:15;12550:29;;12597:1;12607:195;12621:6;12618:1;12615:13;12607:195;;;12686:13;;-1:-1:-1;;;;;12682:39:1;12670:52;;12777:15;;;;12742:12;;;;12718:1;12636:9;12607:195;;;-1:-1:-1;;;;;;;12858:32:1;;;;12853:2;12838:18;;12831:60;-1:-1:-1;;;12922:3:1;12907:19;12900:35;12819:3;11961:980;-1:-1:-1;;;11961:980:1:o;13558:306::-;13646:6;13654;13662;13715:2;13703:9;13694:7;13690:23;13686:32;13683:52;;;13731:1;13728;13721:12;13683:52;13760:9;13754:16;13744:26;;13810:2;13799:9;13795:18;13789:25;13779:35;;13854:2;13843:9;13839:18;13833:25;13823:35;;13558:306;;;;;:::o

Swarm Source

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