ETH Price: $3,154.99 (+1.14%)
Gas: 2 Gwei

Token

Project Blueyard ($BLYRD)
 

Overview

Max Total Supply

20,000,000 $BLYRD

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
obamaslastname.eth
Balance
267,923.157305937 $BLYRD

Value
$0.00
0x646b14a3a0a24038b24b4b13b66d8dfea04e801f
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:
BLUEYARD

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

/**
*/

// Telegram: https://t.me/ProjectBlueYard
// Website: https://www.blueyard.com/

// 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 BLUEYARD 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 = 20000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

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

    string private _name = "Project Blueyard";
    string private _symbol = unicode"$BLYRD";
    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(30); // 3%

    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 = 0;
    uint256 launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) public _lastTrade;

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

        buyFee.reflection = 0;
        buyFee.liquidity = 3;
        buyFee.marketing = 3;

        sellFee.reflection = 0;
        sellFee.liquidity = 3;
        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"}]

60c060405266470de4df82000060098190556200001f906000196200068c565b6200002d90600019620006b9565b600a55600c80546001600160a01b031916732a471e1d039ebcffba2a1718774c50768032ff501790556040805180820190915260108082526f141c9bda9958dd08109b1d595e585c9960821b60209092019182526200008f91600d91620005d0565b506040805180820190915260068082526509109316549160d21b6020909201918252620000bf91600e91620005d0565b50600f805460ff191660099081179091556012805460ff60201b1916640100000000179055546200011e906014906200010a906103e862000d10620004b6602090811b91909117901c565b6200050960201b62000d521790919060201c565b6013556200014560036200010a6103e8600954620004b660201b62000d101790919060201c565b6014556200016c601e6200010a6103e8600954620004b660201b62000d101790919060201c565b601555600060168190556017556018805460ff191690553480156200019057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a543360009081526002602090815260409182902092909255601080546203030062ffffff199182168117909255601180549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200025a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002809190620006d3565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f49190620006d3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000342573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003689190620006d3565b6001600160a01b0390811660a0528116608052600160056000620003946000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c805484168352848320805488168317905554909216815260089384905291822080549094168117909355620004176000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260089092529020805490911660011790556200045f3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600954604051620004a791815260200190565b60405180910390a350620007cc565b60006200050083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200059460201b60201c565b90505b92915050565b6000826200051a5750600062000503565b6000620005288385620006fe565b90508262000537858362000720565b14620005005760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005b85760405162461bcd60e51b81526004016200058b919062000737565b506000620005c7848662000720565b95945050505050565b828054620005de906200078f565b90600052602060002090601f0160209004810192826200060257600085556200064d565b82601f106200061d57805160ff19168380011785556200064d565b828001600101855582156200064d579182015b828111156200064d57825182559160200191906001019062000630565b506200065b9291506200065f565b5090565b5b808211156200065b576000815560010162000660565b634e487b7160e01b600052601260045260246000fd5b6000826200069e576200069e62000676565b500690565b634e487b7160e01b600052601160045260246000fd5b600082821015620006ce57620006ce620006a3565b500390565b600060208284031215620006e657600080fd5b81516001600160a01b03811681146200050057600080fd5b60008160001904831182151516156200071b576200071b620006a3565b500290565b60008262000732576200073262000676565b500490565b600060208083528351808285015260005b81811015620007665785810183015185820160400152820162000748565b8181111562000779576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c90821680620007a457607f821691505b60208210811415620007c657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516125e3620008316000396000818161040d015281816110e20152818161123d0152818161157f01526115f6015260008181610282015281816119af01528181611a6801528181611aa401528181611b160152611b7201526125e36000f3fe6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213a565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a7565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121d3565b610780565b005b34801561027c57600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121f0565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612246565b610840565b34801561037857600080fd5b506102cd610387366004612262565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121d3565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b34801561043b57600080fd5b5061023e61044a3660046121d3565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121d3565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121d3565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121d3565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121d3565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a7565b610a9c565b3480156105ae57600080fd5b5061026e6105bd36600461228c565b610aa9565b3480156105ce57600080fd5b5061026e6105dd366004612300565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121d3565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd61063636600461231b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121d3565b610bac565b34801561068d57600080fd5b5061026e61069c366004612262565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121d3565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e690612354565b80601f016020809104026020016040519081016040528092919081815260200182805461071290612354565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd1565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa9061238f565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef5565b610836843361083185604051806060016040528060288152602001612586602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112f7565b610dd1565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa9061238f565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611331565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa9061238f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e690612354565b6000610776338484610ef5565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa9061238f565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa9061238f565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa9061238f565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611354565b600082610d615750600061077a565b6000610d6d83856123da565b905082610d7a85836123f9565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b6000811161101d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104957506000546001600160a01b03838116911614155b156110a05760185460ff166110a05760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ab3061096f565b905060135481106110bb57506013545b601454811080159081906110d957506012546301000000900460ff16155b801561111757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561112d5750601254640100000000900460ff165b1561114057601454915061114082611382565b6001600160a01b03851660009081526005602052604090205460019060ff168061118257506001600160a01b03851660009081526005602052604090205460ff165b1561118b575060005b80156112e3576001600160a01b03861660009081526008602052604090205460ff161580156111d357506001600160a01b03851660009081526008602052604090205460ff16155b156112e35760135484111561123b5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316146112e3576015546112808661096f565b61128a908661241b565b11156112e35760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112ef86868684611566565b505050505050565b6000818484111561131b5760405162461bcd60e51b81526004016107aa919061213a565b5060006113288486612433565b95945050505050565b600080600061133e6117d6565b909250905061134d8282610d10565b9250505090565b600081836113755760405162461bcd60e51b81526004016107aa919061213a565b50600061132884866123f9565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113c892610100918290048316929190041661244a565b6113d2919061244a565b6113dc919061244a565b6113e790600261246f565b60115460105460ff9283169350600092849261141092610100918290048316929190041661244a565b61141d9060ff16856123da565b61142791906123f9565b905060006114358285612433565b90504761144182611958565b600061144d8247612433565b6011546010549192506000916114739160ff61010091829004811692919091041661244a565b6114809060ff1687612433565b61148a90836123f9565b6011546010549192506000916114b09160ff61010091829004811692919091041661244a565b6114bd9060ff16836123da565b905080156114cf576114cf8682611b10565b6011546010546000916114f29160ff62010000928390048116929091041661244a565b60ff166115008460026123da565b61150a91906123da565b9050801561154e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166b5761157d6012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156115f4576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141561166b576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ac57506001600160a01b03831660009081526006602052604090205460ff16155b156116c1576116bc848484611bf0565b6117bf565b6001600160a01b03841660009081526006602052604090205460ff1615801561170257506001600160a01b03831660009081526006602052604090205460ff165b15611712576116bc848484611d37565b6001600160a01b03841660009081526006602052604090205460ff1615801561175457506001600160a01b03831660009081526006602052604090205460ff16155b15611764576116bc848484611df2565b6001600160a01b03841660009081526006602052604090205460ff1680156117a457506001600160a01b03831660009081526006602052604090205460ff165b156117b4576116bc848484611e48565b6117bf848484611df2565b6117d06012805462ffffff19169055565b50505050565b600a546009546000918291825b6007548110156119285782600260006007848154811061180557611805612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611870575081600360006007848154811061184957611849612498565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188657600a54600954945094505050509091565b6118cc60026000600784815481106118a0576118a0612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ec9565b925061191460036000600784815481106118e8576118e8612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ec9565b915080611920816124ae565b9150506117e3565b50600954600a5461193891610d10565b82101561194f57600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198d5761198d612498565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2f91906124c9565b81600181518110611a4257611a42612498565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8d307f000000000000000000000000000000000000000000000000000000000000000084610dd1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae29085906000908690309042906004016124e6565b600060405180830381600087803b158015611afc57600080fd5b505af11580156112ef573d6000803e3d6000fd5b611b3b307f000000000000000000000000000000000000000000000000000000000000000084610dd1565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611be99190612557565b5050505050565b600080600080611bff85611f0b565b93509350935093506000806000611c2088878787611c1b611331565b611f6a565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4b9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7a9084611ec9565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611ca99083611fcc565b6001600160a01b038a16600090815260026020526040902055611ccb8561202b565b611cd48461202b565b611cde81876120b4565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2391815260200190565b60405180910390a350505050505050505050565b600080600080611d4685611f0b565b93509350935093506000806000611d6288878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8d9084611ec9565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc39088611fcc565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611ca99083611fcc565b600080600080611e0185611f0b565b93509350935093506000806000611e1d88878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7a9084611ec9565b600080600080611e5785611f0b565b93509350935093506000806000611e7388878787611c1b611331565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9e9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8d90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112f7565b6000806000806000611f1c866120d8565b90506000611f29876120f9565b90506000611f3688612119565b90506000611f4e83611f488b87611ec9565b90611ec9565b9050611f5a8183611ec9565b9993985091965094509092505050565b6000808080611f798986610d52565b90506000611f878987610d52565b90506000611f958988610d52565b90506000611fa38989610d52565b90506000611fb782611f4885818989611ec9565b949d949c50929a509298505050505050505050565b600080611fd9838561241b565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612035611331565b905060006120438383610d52565b306000908152600260205260409020549091506120609082611fcc565b3060009081526002602090815260408083209390935560069052205460ff16156120af573060009081526003602052604090205461209e9084611fcc565b306000908152600360205260409020555b505050565b600a546120c19083611ec9565b600a55600b546120d19082611fcc565b600b555050565b60125460009061077a906064906120f390859060ff16610d52565b90610d10565b60125460009061077a906064906120f3908590610100900460ff16610d52565b60125460009061077a906064906120f390859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121675785810183015185820160400152820161214b565b81811115612179576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146121a457600080fd5b50565b600080604083850312156121ba57600080fd5b82356121c58161218f565b946020939093013593505050565b6000602082840312156121e557600080fd5b813561091a8161218f565b60008060006060848603121561220557600080fd5b83356122108161218f565b925060208401356122208161218f565b929592945050506040919091013590565b8035801515811461224157600080fd5b919050565b6000806040838503121561225957600080fd5b6121c583612231565b60006020828403121561227457600080fd5b5035919050565b803560ff8116811461224157600080fd5b60008060008060008060c087890312156122a557600080fd5b6122ae8761227b565b95506122bc6020880161227b565b94506122ca6040880161227b565b93506122d86060880161227b565b92506122e66080880161227b565b91506122f460a0880161227b565b90509295509295509295565b60006020828403121561231257600080fd5b61091a82612231565b6000806040838503121561232e57600080fd5b82356123398161218f565b915060208301356123498161218f565b809150509250929050565b600181811c9082168061236857607f821691505b6020821081141561238957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123f4576123f46123c4565b500290565b60008261241657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561242e5761242e6123c4565b500190565b600082821015612445576124456123c4565b500390565b600060ff821660ff84168060ff03821115612467576124676123c4565b019392505050565b600060ff821660ff84168160ff0481118215151615612490576124906123c4565b029392505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156124c2576124c26123c4565b5060010190565b6000602082840312156124db57600080fd5b815161091a8161218f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125365784516001600160a01b031683529383019391830191600101612511565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561256c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122044f23fd69a9e8c77557396cbbc5569d1232556f520b0b2f9412861bf584f07ca64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213a565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a7565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121d3565b610780565b005b34801561027c57600080fd5b506102a47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121f0565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612246565b610840565b34801561037857600080fd5b506102cd610387366004612262565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121d3565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f0000000000000000000000000baa565ee2602cdebeaba2d79a58b6530d1bcb3081565b34801561043b57600080fd5b5061023e61044a3660046121d3565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121d3565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121d3565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121d3565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121d3565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a7565b610a9c565b3480156105ae57600080fd5b5061026e6105bd36600461228c565b610aa9565b3480156105ce57600080fd5b5061026e6105dd366004612300565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121d3565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd61063636600461231b565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121d3565b610bac565b34801561068d57600080fd5b5061026e61069c366004612262565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121d3565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e690612354565b80601f016020809104026020016040519081016040528092919081815260200182805461071290612354565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd1565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa9061238f565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef5565b610836843361083185604051806060016040528060288152602001612586602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112f7565b610dd1565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa9061238f565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611331565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa9061238f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e690612354565b6000610776338484610ef5565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa9061238f565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa9061238f565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa9061238f565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa9061238f565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611354565b600082610d615750600061077a565b6000610d6d83856123da565b905082610d7a85836123f9565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e335760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e945760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b6000811161101d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104957506000546001600160a01b03838116911614155b156110a05760185460ff166110a05760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ab3061096f565b905060135481106110bb57506013545b601454811080159081906110d957506012546301000000900460ff16155b801561111757507f0000000000000000000000000baa565ee2602cdebeaba2d79a58b6530d1bcb306001600160a01b0316856001600160a01b031614155b801561112d5750601254640100000000900460ff165b1561114057601454915061114082611382565b6001600160a01b03851660009081526005602052604090205460019060ff168061118257506001600160a01b03851660009081526005602052604090205460ff165b1561118b575060005b80156112e3576001600160a01b03861660009081526008602052604090205460ff161580156111d357506001600160a01b03851660009081526008602052604090205460ff16155b156112e35760135484111561123b5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f0000000000000000000000000baa565ee2602cdebeaba2d79a58b6530d1bcb306001600160a01b0316856001600160a01b0316146112e3576015546112808661096f565b61128a908661241b565b11156112e35760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112ef86868684611566565b505050505050565b6000818484111561131b5760405162461bcd60e51b81526004016107aa919061213a565b5060006113288486612433565b95945050505050565b600080600061133e6117d6565b909250905061134d8282610d10565b9250505090565b600081836113755760405162461bcd60e51b81526004016107aa919061213a565b50600061132884866123f9565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113c892610100918290048316929190041661244a565b6113d2919061244a565b6113dc919061244a565b6113e790600261246f565b60115460105460ff9283169350600092849261141092610100918290048316929190041661244a565b61141d9060ff16856123da565b61142791906123f9565b905060006114358285612433565b90504761144182611958565b600061144d8247612433565b6011546010549192506000916114739160ff61010091829004811692919091041661244a565b6114809060ff1687612433565b61148a90836123f9565b6011546010549192506000916114b09160ff61010091829004811692919091041661244a565b6114bd9060ff16836123da565b905080156114cf576114cf8682611b10565b6011546010546000916114f29160ff62010000928390048116929091041661244a565b60ff166115008460026123da565b61150a91906123da565b9050801561154e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154c573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166b5761157d6012805462ffffff19169055565b7f0000000000000000000000000baa565ee2602cdebeaba2d79a58b6530d1bcb306001600160a01b0316846001600160a01b031614156115f4576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f0000000000000000000000000baa565ee2602cdebeaba2d79a58b6530d1bcb306001600160a01b0316836001600160a01b0316141561166b576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ac57506001600160a01b03831660009081526006602052604090205460ff16155b156116c1576116bc848484611bf0565b6117bf565b6001600160a01b03841660009081526006602052604090205460ff1615801561170257506001600160a01b03831660009081526006602052604090205460ff165b15611712576116bc848484611d37565b6001600160a01b03841660009081526006602052604090205460ff1615801561175457506001600160a01b03831660009081526006602052604090205460ff16155b15611764576116bc848484611df2565b6001600160a01b03841660009081526006602052604090205460ff1680156117a457506001600160a01b03831660009081526006602052604090205460ff165b156117b4576116bc848484611e48565b6117bf848484611df2565b6117d06012805462ffffff19169055565b50505050565b600a546009546000918291825b6007548110156119285782600260006007848154811061180557611805612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611870575081600360006007848154811061184957611849612498565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188657600a54600954945094505050509091565b6118cc60026000600784815481106118a0576118a0612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ec9565b925061191460036000600784815481106118e8576118e8612498565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ec9565b915080611920816124ae565b9150506117e3565b50600954600a5461193891610d10565b82101561194f57600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198d5761198d612498565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2f91906124c9565b81600181518110611a4257611a42612498565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae29085906000908690309042906004016124e6565b600060405180830381600087803b158015611afc57600080fd5b505af11580156112ef573d6000803e3d6000fd5b611b3b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd1565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611be99190612557565b5050505050565b600080600080611bff85611f0b565b93509350935093506000806000611c2088878787611c1b611331565b611f6a565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4b9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7a9084611ec9565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611ca99083611fcc565b6001600160a01b038a16600090815260026020526040902055611ccb8561202b565b611cd48461202b565b611cde81876120b4565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2391815260200190565b60405180910390a350505050505050505050565b600080600080611d4685611f0b565b93509350935093506000806000611d6288878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8d9084611ec9565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc39088611fcc565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611ca99083611fcc565b600080600080611e0185611f0b565b93509350935093506000806000611e1d88878787611c1b611331565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7a9084611ec9565b600080600080611e5785611f0b565b93509350935093506000806000611e7388878787611c1b611331565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9e9089611ec9565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8d90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112f7565b6000806000806000611f1c866120d8565b90506000611f29876120f9565b90506000611f3688612119565b90506000611f4e83611f488b87611ec9565b90611ec9565b9050611f5a8183611ec9565b9993985091965094509092505050565b6000808080611f798986610d52565b90506000611f878987610d52565b90506000611f958988610d52565b90506000611fa38989610d52565b90506000611fb782611f4885818989611ec9565b949d949c50929a509298505050505050505050565b600080611fd9838561241b565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612035611331565b905060006120438383610d52565b306000908152600260205260409020549091506120609082611fcc565b3060009081526002602090815260408083209390935560069052205460ff16156120af573060009081526003602052604090205461209e9084611fcc565b306000908152600360205260409020555b505050565b600a546120c19083611ec9565b600a55600b546120d19082611fcc565b600b555050565b60125460009061077a906064906120f390859060ff16610d52565b90610d10565b60125460009061077a906064906120f3908590610100900460ff16610d52565b60125460009061077a906064906120f390859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121675785810183015185820160400152820161214b565b81811115612179576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146121a457600080fd5b50565b600080604083850312156121ba57600080fd5b82356121c58161218f565b946020939093013593505050565b6000602082840312156121e557600080fd5b813561091a8161218f565b60008060006060848603121561220557600080fd5b83356122108161218f565b925060208401356122208161218f565b929592945050506040919091013590565b8035801515811461224157600080fd5b919050565b6000806040838503121561225957600080fd5b6121c583612231565b60006020828403121561227457600080fd5b5035919050565b803560ff8116811461224157600080fd5b60008060008060008060c087890312156122a557600080fd5b6122ae8761227b565b95506122bc6020880161227b565b94506122ca6040880161227b565b93506122d86060880161227b565b92506122e66080880161227b565b91506122f460a0880161227b565b90509295509295509295565b60006020828403121561231257600080fd5b61091a82612231565b6000806040838503121561232e57600080fd5b82356123398161218f565b915060208301356123498161218f565b809150509250929050565b600181811c9082168061236857607f821691505b6020821081141561238957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123f4576123f46123c4565b500290565b60008261241657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561242e5761242e6123c4565b500190565b600082821015612445576124456123c4565b500390565b600060ff821660ff84168060ff03821115612467576124676123c4565b019392505050565b600060ff821660ff84168160ff0481118215151615612490576124906123c4565b029392505050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156124c2576124c26123c4565b5060010190565b6000602082840312156124db57600080fd5b815161091a8161218f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125365784516001600160a01b031683529383019391830191600101612511565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561256c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122044f23fd69a9e8c77557396cbbc5569d1232556f520b0b2f9412861bf584f07ca64736f6c634300080a0033

Deployed Bytecode Sourcemap

25223:20996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28550:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29535:193;;;;;;;;;;-1:-1:-1;29535:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;29535:193:0;1072:187:1;30891:115:0;;;;;;;;;;-1:-1:-1;30891:115:0;;;;;:::i;:::-;;:::i;:::-;;26535:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;26535:51:0;1516:230:1;28827:95:0;;;;;;;;;;-1:-1:-1;28907:7:0;;28827:95;;;1897:25:1;;;1885:2;1870:18;28827:95:0;1751:177:1;29736:446:0;;;;;;;;;;-1:-1:-1;29736:446:0;;;;;:::i;:::-;;:::i;26399:22::-;;;;;;;;;;-1:-1:-1;26399:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;2614:4:1;2602:17;;;2584:36;;2656:17;;;2651:2;2636:18;;2629:45;2710:17;;2690:18;;;2683:45;;;;2572:2;2557:18;26399:22:0;2394:340:1;45965:251:0;;;;;;;;;;-1:-1:-1;45965:251:0;;;;;:::i;:::-;;:::i;30322:322::-;;;;;;;;;;-1:-1:-1;30322:322:0;;;;;:::i;:::-;;:::i;28736:83::-;;;;;;;;;;-1:-1:-1;28802:9:0;;28736:83;;28802:9;;;;3484:36:1;;3472:2;3457:18;28736:83:0;3342:184:1;30654:111:0;;;;;;;;;;-1:-1:-1;30654:111:0;;;;;:::i;:::-;;:::i;26372:20::-;;;;;;;;;;-1:-1:-1;26372:20:0;;;;;;;;;;;;;;;;;;;;;;26593:38;;;;;;;;;;;;;;;36029:124;;;;;;;;;;-1:-1:-1;36029:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;36118:27:0;36094:4;36118:27;;;:18;:27;;;;;;;;;36029:124;28930:198;;;;;;;;;;-1:-1:-1;28930:198:0;;;;;:::i;:::-;;:::i;15287:148::-;;;;;;;;;;;;;:::i;26710:55::-;;;;;;;;;;;;;;;;30192:120;;;;;;;;;;-1:-1:-1;30192:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30284:20:0;30260:4;30284:20;;;:11;:20;;;;;;;;;30192:120;14645:79;;;;;;;;;;-1:-1:-1;14683:7:0;14710:6;-1:-1:-1;;;;;14710:6:0;14645:79;;26863:57;;;;;;;;;;;;;;;;31014:114;;;;;;;;;;-1:-1:-1;31014:114:0;;;;;:::i;:::-;;:::i;28641:87::-;;;;;;;;;;;;;:::i;27411:46::-;;;;;;;;;;-1:-1:-1;27411:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29136:199;;;;;;;;;;-1:-1:-1;29136:199:0;;;;;:::i;:::-;;:::i;31136:514::-;;;;;;;;;;-1:-1:-1;31136:514:0;;;;;:::i;:::-;;:::i;31806:171::-;;;;;;;;;;-1:-1:-1;31806:171:0;;;;;:::i;:::-;;:::i;36161:128::-;;;;;;;;;;-1:-1:-1;36161:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;36252:29:0;36228:4;36252:29;;;:20;:29;;;;;;;;;36161:128;29343:184;;;;;;;;;;-1:-1:-1;29343:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29492:18:0;;;29460:7;29492:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29343:184;30773:110;;;;;;;;;;-1:-1:-1;30773:110:0;;;;;:::i;:::-;;:::i;31658:140::-;;;;;;;;;;-1:-1:-1;31658:140:0;;;;;:::i;:::-;;:::i;15590:281::-;;;;;;;;;;-1:-1:-1;15590:281:0;;;;;:::i;:::-;;:::i;27313:29::-;;;;;;;;;;;;;;;;28550:83;28587:13;28620:5;28613:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28550:83;:::o;29535:193::-;29637:4;29659:39;7489:10;29682:7;29691:6;29659:8;:39::i;:::-;-1:-1:-1;29716:4:0;29535:193;;;;;:::o;30891:115::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;30962:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;30962:36:0::1;30994:4;30962:36;::::0;;30891:115::o;29736:446::-;29868:4;29885:36;29895:6;29903:9;29914:6;29885:9;:36::i;:::-;29932:220;29955:6;7489:10;30003:138;30059:6;30003:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30003:19:0;;;;;;:11;:19;;;;;;;;7489:10;30003:33;;;;;;;;;;:37;:138::i;:::-;29932:8;:220::i;:::-;-1:-1:-1;30170:4:0;29736:446;;;;;:::o;45965:251::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;46052:11:::1;:21:::0;;-1:-1:-1;;46052:21:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;46087:11:::0;:30;::::1;;;-1:-1:-1::0;46102:10:0::1;::::0;:15;46087:30:::1;46084:125;;;46146:12;46133:10;:25:::0;46173:10:::1;:24:::0;;;46084:125:::1;45965:251:::0;;:::o;30322:322::-;30416:7;30474;;30463;:18;;30441:110;;;;-1:-1:-1;;;30441:110:0;;5966:2:1;30441:110:0;;;5948:21:1;6005:2;5985:18;;;5978:30;6044:34;6024:18;;;6017:62;-1:-1:-1;;;6095:18:1;;;6088:40;6145:19;;30441:110:0;5764:406:1;30441:110:0;30562:19;30584:10;:8;:10::i;:::-;30562:32;-1:-1:-1;30612:24:0;:7;30562:32;30612:11;:24::i;:::-;30605:31;30322:322;-1:-1:-1;;;30322:322:0:o;30654:111::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30723:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;30723:34:0::1;30753:4;30723:34;::::0;;30654:111::o;28930:198::-;-1:-1:-1;;;;;29020:20:0;;28996:7;29020:20;;;:11;:20;;;;;;;;29016:49;;;-1:-1:-1;;;;;;29049:16:0;;;;;:7;:16;;;;;;;28930:198::o;29016:49::-;-1:-1:-1;;;;;29103:16:0;;;;;;:7;:16;;;;;;29083:37;;:19;:37::i;15287:148::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;15394:1:::1;15378:6:::0;;15357:40:::1;::::0;-1:-1:-1;;;;;15378:6:0;;::::1;::::0;15357:40:::1;::::0;15394:1;;15357:40:::1;15425:1;15408:19:::0;;-1:-1:-1;;;;;;15408:19:0::1;::::0;;15287:148::o;31014:114::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31083:29:0::1;31115:5;31083:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;31083:37:0::1;::::0;;31014:114::o;28641:87::-;28680:13;28713:7;28706:14;;;;;:::i;29136:199::-;29241:4;29263:42;7489:10;29287:9;29298:6;29263:9;:42::i;31136:514::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;31383:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;31428:32:0;;;;31383:34:::1;31428:32:::0;;::::1;::::0;::::1;;-1:-1:-1::0;;31471:32:0;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;31516:7:::1;:36:::0;;;;::::1;31563:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;31608::::0;;::::1;::::0;;;::::1;;;::::0;;31136:514::o;31806:171::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;31883:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;31883:32:0;;::::1;;::::0;;31931:38:::1;::::0;::::1;::::0;::::1;::::0;31907:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;31931:38:0::1;;;;;;;;31806:171:::0;:::o;30773:110::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30840:27:0::1;30870:5;30840:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;30840:35:0::1;::::0;;30773:110::o;31658:140::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;31749:29:::1;:41:::0;31658:140::o;15590:281::-;14857:6;;-1:-1:-1;;;;;14857:6:0;7489:10;14857:22;14849:67;;;;-1:-1:-1;;;14849:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15693:22:0;::::1;15671:110;;;::::0;-1:-1:-1;;;15671:110:0;;6377:2:1;15671:110:0::1;::::0;::::1;6359:21:1::0;6416:2;6396:18;;;6389:30;6455:34;6435:18;;;6428:62;-1:-1:-1;;;6506:18:1;;;6499:36;6552:19;;15671:110:0::1;6175:402:1::0;15671:110:0::1;15818:6;::::0;;15797:38:::1;::::0;-1:-1:-1;;;;;15797:38:0;;::::1;::::0;15818:6;::::1;::::0;15797:38:::1;::::0;::::1;15846:6;:17:::0;;-1:-1:-1;;;;;;15846:17:0::1;-1:-1:-1::0;;;;;15846:17:0;;;::::1;::::0;;;::::1;::::0;;15590:281::o;5133:132::-;5191:7;5218:39;5222:1;5225;5218:39;;;;;;;;;;;;;;;;;:3;:39::i;4638:252::-;4696:7;4722:6;4718:47;;-1:-1:-1;4752:1:0;4745:8;;4718:47;4777:9;4789:5;4793:1;4789;:5;:::i;:::-;4777:17;-1:-1:-1;4822:1:0;4813:5;4817:1;4777:17;4813:5;:::i;:::-;:10;4805:56;;;;-1:-1:-1;;;4805:56:0;;7311:2:1;4805:56:0;;;7293:21:1;7350:2;7330:18;;;7323:30;7389:34;7369:18;;;7362:62;-1:-1:-1;;;7440:18:1;;;7433:31;7481:19;;4805:56:0;7109:397:1;36297:371:0;-1:-1:-1;;;;;36424:19:0;;36416:68;;;;-1:-1:-1;;;36416:68:0;;7713:2:1;36416:68:0;;;7695:21:1;7752:2;7732:18;;;7725:30;7791:34;7771:18;;;7764:62;-1:-1:-1;;;7842:18:1;;;7835:34;7886:19;;36416:68:0;7511:400:1;36416:68:0;-1:-1:-1;;;;;36503:21:0;;36495:68;;;;-1:-1:-1;;;36495:68:0;;8118:2:1;36495:68:0;;;8100:21:1;8157:2;8137:18;;;8130:30;8196:34;8176:18;;;8169:62;-1:-1:-1;;;8247:18:1;;;8240:32;8289:19;;36495:68:0;7916:398:1;36495:68:0;-1:-1:-1;;;;;36576:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36628:32;;1897:25:1;;;36628:32:0;;1870:18:1;36628:32:0;;;;;;;36297:371;;;:::o;36676:2343::-;-1:-1:-1;;;;;36798:18:0;;36790:68;;;;-1:-1:-1;;;36790:68:0;;8521:2:1;36790:68:0;;;8503:21:1;8560:2;8540:18;;;8533:30;8599:34;8579:18;;;8572:62;-1:-1:-1;;;8650:18:1;;;8643:35;8695:19;;36790:68:0;8319:401:1;36790:68:0;-1:-1:-1;;;;;36877:16:0;;36869:64;;;;-1:-1:-1;;;36869:64:0;;8927:2:1;36869:64:0;;;8909:21:1;8966:2;8946:18;;;8939:30;9005:34;8985:18;;;8978:62;-1:-1:-1;;;9056:18:1;;;9049:33;9099:19;;36869:64:0;8725:399:1;36869:64:0;36961:1;36952:6;:10;36944:64;;;;-1:-1:-1;;;36944:64:0;;9331:2:1;36944:64:0;;;9313:21:1;9370:2;9350:18;;;9343:30;9409:34;9389:18;;;9382:62;-1:-1:-1;;;9460:18:1;;;9453:39;9509:19;;36944:64:0;9129:405:1;36944:64:0;14683:7;14710:6;-1:-1:-1;;;;;37034:15:0;;;14710:6;;37034:15;;;;:32;;-1:-1:-1;14683:7:0;14710:6;-1:-1:-1;;;;;37053:13:0;;;14710:6;;37053:13;;37034:32;37029:88;;;37077:11;;;;37069:48;;;;-1:-1:-1;;;37069:48:0;;9741:2:1;37069:48:0;;;9723:21:1;9780:2;9760:18;;;9753:30;9819:26;9799:18;;;9792:54;9863:18;;37069:48:0;9539:348:1;37069:48:0;37452:28;37483:24;37501:4;37483:9;:24::i;:::-;37452:55;;37548:12;;37524:20;:36;37520:104;;-1:-1:-1;37600:12:0;;37520:104;37700:29;;37663:66;;;;;;;37758:53;;-1:-1:-1;37795:16:0;;;;;;;37794:17;37758:53;:91;;;;;37836:13;-1:-1:-1;;;;;37828:21:0;:4;-1:-1:-1;;;;;37828:21:0;;;37758:91;:129;;;;-1:-1:-1;37866:21:0;;;;;;;37758:129;37740:318;;;37937:29;;37914:52;;38010:36;38025:20;38010:14;:36::i;:::-;-1:-1:-1;;;;;38251:24:0;;38131:12;38251:24;;;:18;:24;;;;;;38146:4;;38251:24;;;:50;;-1:-1:-1;;;;;;38279:22:0;;;;;;:18;:22;;;;;;;;38251:50;38247:98;;;-1:-1:-1;38328:5:0;38247:98;38359:7;38355:536;;;-1:-1:-1;;;;;38388:26:0;;;;;;:20;:26;;;;;;;;38387:27;:56;;;;-1:-1:-1;;;;;;38419:24:0;;;;;;:20;:24;;;;;;;;38418:25;38387:56;38383:497;;;38504:12;;38494:6;:22;;38464:136;;;;-1:-1:-1;;;38464:136:0;;10094:2:1;38464:136:0;;;10076:21:1;10133:2;10113:18;;;10106:30;10172:34;10152:18;;;10145:62;-1:-1:-1;;;10223:18:1;;;10216:38;10271:19;;38464:136:0;9892:404:1;38464:136:0;38629:13;-1:-1:-1;;;;;38623:19:0;:2;-1:-1:-1;;;;;38623:19:0;;38619:228;;38727:14;;38710:13;38720:2;38710:9;:13::i;:::-;38701:22;;:6;:22;:::i;:::-;:40;;38667:160;;;;-1:-1:-1;;;38667:160:0;;10636:2:1;38667:160:0;;;10618:21:1;10675:2;10655:18;;;10648:30;10714:34;10694:18;;;10687:62;-1:-1:-1;;;10765:18:1;;;10758:32;10807:19;;38667:160:0;10434:398:1;38667:160:0;38970:41;38985:4;38991:2;38995:6;39003:7;38970:14;:41::i;:::-;36779:2240;;;36676:2343;;;:::o;4153:226::-;4273:7;4309:12;4301:6;;;;4293:29;;;;-1:-1:-1;;;4293:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4333:9:0;4345:5;4349:1;4345;:5;:::i;:::-;4333:17;4153:226;-1:-1:-1;;;;;4153:226:0:o;33506:164::-;33548:7;33569:15;33586;33605:19;:17;:19::i;:::-;33568:56;;-1:-1:-1;33568:56:0;-1:-1:-1;33642:20:0;33568:56;;33642:11;:20::i;:::-;33635:27;;;;33506:164;:::o;5761:312::-;5881:7;5916:12;5909:5;5901:28;;;;-1:-1:-1;;;5901:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5940:9:0;5952:5;5956:1;5952;:5;:::i;39027:1195::-;27227:16;:23;;-1:-1:-1;;27227:23:0;;;;;39230:7:::1;:17:::0;39211:6:::1;:16:::0;27227:23;;39230:17;;;::::1;27227:23:::0;39230:17;;::::1;::::0;39211:16;;::::1;::::0;::::1;::::0;39172:36:::1;::::0;27227:23;39191:17;;;::::1;::::0;::::1;::::0;39172:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;39171:81;::::0;39251:1:::1;39171:81;:::i;:::-;39328:7;:17:::0;39309:6:::1;:16:::0;39149:103:::1;::::0;;::::1;::::0;-1:-1:-1;39263:32:0::1;::::0;39149:103;;39309:36:::1;::::0;39328:17:::1;::::0;;;::::1;::::0;::::1;::::0;39309:16;;::::1;;:36;:::i;:::-;39299:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;39298:63;;;;:::i;:::-;39263:98:::0;-1:-1:-1;39372:14:0::1;39389:33;39263:98:::0;39389:6;:33:::1;:::i;:::-;39372:50:::0;-1:-1:-1;39460:21:0::1;39494:24;39372:50:::0;39494:16:::1;:24::i;:::-;39531:20;39554:38;39578:14:::0;39554:21:::1;:38;:::i;:::-;39675:7;:17:::0;39656:6:::1;:16:::0;39531:61;;-1:-1:-1;39603:19:0::1;::::0;39656:36:::1;::::0;39675:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39656:16;;;::::1;;:36;:::i;:::-;39641:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39625:69;::::0;:12;:69:::1;:::i;:::-;39771:7;:17:::0;39752:6:::1;:16:::0;39603:91;;-1:-1:-1;39705:29:0::1;::::0;39752:36:::1;::::0;39771:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39752:16;;;::::1;;:36;:::i;:::-;39737:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39705:84:::0;-1:-1:-1;39806:25:0;;39802:160:::1;;39889:61;39902:24;39928:21;39889:12;:61::i;:::-;40069:7;:17:::0;40050:6:::1;:16:::0;40008:20:::1;::::0;40050:36:::1;::::0;40069:17:::1;::::0;;;;::::1;::::0;::::1;::::0;40050:16;;::::1;;:36;:::i;:::-;40031:56;;:15;:11:::0;40045:1:::1;40031:15;:::i;:::-;:56;;;;:::i;:::-;40008:79:::0;-1:-1:-1;40113:16:0;;40109:98:::1;;40154:17;::::0;40146:49:::1;::::0;-1:-1:-1;;;;;40154:17:0;;::::1;::::0;40146:49;::::1;;;::::0;40182:12;;40154:17:::1;40146:49:::0;40154:17;40146:49;40182:12;40154:17;40146:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40109:98;-1:-1:-1::0;;27273:16:0;:24;;-1:-1:-1;;27273:24:0;;;-1:-1:-1;;;;;;;39027:1195:0:o;41427:1022::-;41582:7;41578:230;;;41606:14;35566;:18;;-1:-1:-1;;35623:17:0;;;35523:132;41606:14;41649:13;-1:-1:-1;;;;;41639:23:0;:6;-1:-1:-1;;;;;41639:23:0;;41635:72;;;35717:6;:17;35700:14;:34;;35717:17;;;;-1:-1:-1;;35745:32:0;;;;;;;35717:17;35761:16;;;;;35745:32;;-1:-1:-1;;35788:32:0;35804:16;;;;;;;;;35788:32;;;;;;;;;41683:8;41738:13;-1:-1:-1;;;;;41725:26:0;:9;-1:-1:-1;;;;;41725:26:0;;41721:76;;;35899:7;:18;35882:14;:35;;35899:18;;;;-1:-1:-1;;35928:33:0;;;;;;;35899:18;35944:17;;;;;35928:33;;-1:-1:-1;;35972:33:0;35988:17;;;;;;;;;35972:33;;;;;;;;;41772:9;-1:-1:-1;;;;;41824:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41848:22:0;;;;;;:11;:22;;;;;;;;41847:23;41824:46;41820:597;;;41887:48;41909:6;41917:9;41928:6;41887:21;:48::i;:::-;41820:597;;;-1:-1:-1;;;;;41958:19:0;;;;;;:11;:19;;;;;;;;41957:20;:46;;;;-1:-1:-1;;;;;;41981:22:0;;;;;;:11;:22;;;;;;;;41957:46;41953:464;;;42020:46;42040:6;42048:9;42059:6;42020:19;:46::i;41953:464::-;-1:-1:-1;;;;;42089:19:0;;;;;;:11;:19;;;;;;;;42088:20;:47;;;;-1:-1:-1;;;;;;42113:22:0;;;;;;:11;:22;;;;;;;;42112:23;42088:47;42084:333;;;42152:44;42170:6;42178:9;42189:6;42152:17;:44::i;42084:333::-;-1:-1:-1;;;;;42218:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42241:22:0;;;;;;:11;:22;;;;;;;;42218:45;42214:203;;;42280:48;42302:6;42310:9;42321:6;42280:21;:48::i;42214:203::-;42361:44;42379:6;42387:9;42398:6;42361:17;:44::i;:::-;42427:14;35566;:18;;-1:-1:-1;;35623:17:0;;;35523:132;42427:14;41427:1022;;;;:::o;33678:605::-;33776:7;;33812;;33729;;;;;33830:338;33854:9;:16;33850:20;;33830:338;;;33938:7;33914;:21;33922:9;33932:1;33922:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33922:12:0;33914:21;;;;;;;;;;;;;:31;;:83;;;33990:7;33966;:21;33974:9;33984:1;33974:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33974:12:0;33966:21;;;;;;;;;;;;;:31;33914:83;33892:146;;;34021:7;;34030;;34013:25;;;;;;;33678:605;;:::o;33892:146::-;34063:34;34075:7;:21;34083:9;34093:1;34083:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34083:12:0;34075:21;;;;;;;;;;;;;34063:7;;:11;:34::i;:::-;34053:44;;34122:34;34134:7;:21;34142:9;34152:1;34142:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34142:12:0;34134:21;;;;;;;;;;;;;34122:7;;:11;:34::i;:::-;34112:44;-1:-1:-1;33872:3:0;;;;:::i;:::-;;;;33830:338;;;-1:-1:-1;34204:7:0;;34192;;:20;;:11;:20::i;:::-;34182:7;:30;34178:61;;;34222:7;;34231;;34214:25;;;;;;33678:605;;:::o;34178:61::-;34258:7;;34267;;-1:-1:-1;33678:605:0;-1:-1:-1;33678:605:0:o;40230:589::-;40380:16;;;40394:1;40380:16;;;;;;;;40356:21;;40380:16;;;;;;;;;;-1:-1:-1;40380:16:0;40356:40;;40425:4;40407;40412:1;40407:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40407:23:0;;;-1:-1:-1;;;;;40407:23:0;;;;;40451:15;-1:-1:-1;;;;;40451:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40441:4;40446:1;40441:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40441:32:0;;;-1:-1:-1;;;;;40441:32:0;;;;;40486:62;40503:4;40518:15;40536:11;40486:8;:62::i;:::-;40587:224;;-1:-1:-1;;;40587:224:0;;-1:-1:-1;;;;;40587:15:0;:66;;;;:224;;40668:11;;40694:1;;40738:4;;40765;;40785:15;;40587:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40827:519;40975:62;40992:4;41007:15;41025:11;40975:8;:62::i;:::-;41080:258;;-1:-1:-1;;;41080:258:0;;41152:4;41080:258;;;13405:34:1;;;13455:18;;;13448:34;;;41198:1:0;13498:18:1;;;13491:34;;;13541:18;;;13534:34;13584:19;;;13577:44;41312:15:0;13637:19:1;;;13630:35;41080:15:0;-1:-1:-1;;;;;41080:31:0;;;;41119:9;;13339:19:1;;41080:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40827:519;;:::o;44152:863::-;44303:23;44341:12;44368:18;44401:15;44430:20;44442:7;44430:11;:20::i;:::-;44288:162;;;;;;;;44462:15;44479:23;44504:12;44520:135;44546:7;44568:4;44587:10;44612:7;44634:10;:8;:10::i;:::-;44520:11;:135::i;:::-;-1:-1:-1;;;;;44686:15:0;;;;;;:7;:15;;;;;;44461:194;;-1:-1:-1;44461:194:0;;-1:-1:-1;44461:194:0;-1:-1:-1;44686:28:0;;44706:7;44686:19;:28::i;:::-;-1:-1:-1;;;;;44668:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44743:7;:15;;;;:28;;44763:7;44743:19;:28::i;:::-;-1:-1:-1;;;;;44725:15:0;;;;;;;:7;:15;;;;;;:46;;;;44803:18;;;;;;;:39;;44826:15;44803:22;:39::i;:::-;-1:-1:-1;;;;;44782:18:0;;;;;;:7;:18;;;;;:60;44853:26;44868:10;44853:14;:26::i;:::-;44890:23;44905:7;44890:14;:23::i;:::-;44924;44936:4;44942;44924:11;:23::i;:::-;44980:9;-1:-1:-1;;;;;44963:44:0;44972:6;-1:-1:-1;;;;;44963:44:0;;44991:15;44963:44;;;;1897:25:1;;1885:2;1870:18;;1751:177;44963:44:0;;;;;;;;44277:738;;;;;;;44152:863;;;:::o;43269:875::-;43418:23;43456:12;43483:18;43516:15;43545:20;43557:7;43545:11;:20::i;:::-;43403:162;;;;;;;;43577:15;43594:23;43619:12;43635:135;43661:7;43683:4;43702:10;43727:7;43749:10;:8;:10::i;43635:135::-;-1:-1:-1;;;;;43801:15:0;;;;;;:7;:15;;;;;;43576:194;;-1:-1:-1;43576:194:0;;-1:-1:-1;43576:194:0;-1:-1:-1;43801:28:0;;43576:194;43801:19;:28::i;:::-;-1:-1:-1;;;;;43783:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43861:18;;;;;:7;:18;;;;;:39;;43884:15;43861:22;:39::i;:::-;-1:-1:-1;;;;;43840:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43932:7;:18;;;;:39;;43955:15;43932:22;:39::i;42457:802::-;42604:23;42642:12;42669:18;42702:15;42731:20;42743:7;42731:11;:20::i;:::-;42589:162;;;;;;;;42763:15;42780:23;42805:12;42821:135;42847:7;42869:4;42888:10;42913:7;42935:10;:8;:10::i;42821:135::-;-1:-1:-1;;;;;42987:15:0;;;;;;:7;:15;;;;;;42762:194;;-1:-1:-1;42762:194:0;;-1:-1:-1;42762:194:0;-1:-1:-1;42987:28:0;;42762:194;42987:19;:28::i;45023:934::-;45174:23;45212:12;45239:18;45272:15;45301:20;45313:7;45301:11;:20::i;:::-;45159:162;;;;;;;;45333:15;45350:23;45375:12;45391:135;45417:7;45439:4;45458:10;45483:7;45505:10;:8;:10::i;45391:135::-;-1:-1:-1;;;;;45557:15:0;;;;;;:7;:15;;;;;;45332:194;;-1:-1:-1;45332:194:0;;-1:-1:-1;45332:194:0;-1:-1:-1;45557:28:0;;45577:7;45557:19;:28::i;:::-;-1:-1:-1;;;;;45539:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45614:7;:15;;;;:28;;45634:7;3714:136;3772:7;3799:43;3803:1;3806;3799:43;;;;;;;;;;;;;;;;;:3;:43::i;32234:568::-;32335:7;32357;32379;32401;32436:12;32451:31;32474:7;32451:22;:31::i;:::-;32436:46;;32493:18;32514:30;32536:7;32514:21;:30::i;:::-;32493:51;;32555:15;32573:30;32595:7;32573:21;:30::i;:::-;32555:48;-1:-1:-1;32614:23:0;32640:33;32662:10;32640:17;:7;32652:4;32640:11;:17::i;:::-;:21;;:33::i;:::-;32614:59;-1:-1:-1;32702:28:0;32614:59;32722:7;32702:19;:28::i;:::-;32684:46;32768:4;;-1:-1:-1;32774:10:0;;-1:-1:-1;32774:10:0;-1:-1:-1;32234:568:0;;-1:-1:-1;;;32234:568:0:o;32810:688::-;33035:7;;;;33132:24;:7;33144:11;33132;:24::i;:::-;33114:42;-1:-1:-1;33167:12:0;33182:21;:4;33191:11;33182:8;:21::i;:::-;33167:36;-1:-1:-1;33214:18:0;33235:27;:10;33250:11;33235:14;:27::i;:::-;33214:48;-1:-1:-1;33273:15:0;33291:24;:7;33303:11;33291;:24::i;:::-;33273:42;-1:-1:-1;33326:23:0;33352:88;33273:42;33352:61;33402:10;33352:61;:7;33378:4;33352:25;:31::i;:88::-;33459:7;;;;-1:-1:-1;33485:4:0;;-1:-1:-1;32810:688:0;;-1:-1:-1;;;;;;;;;32810:688:0:o;3250:181::-;3308:7;;3340:5;3344:1;3340;:5;:::i;:::-;3328:17;;3369:1;3364;:6;;3356:46;;;;-1:-1:-1;;;3356:46:0;;14189:2:1;3356:46:0;;;14171:21:1;14228:2;14208:18;;;14201:30;14267:29;14247:18;;;14240:57;14314:18;;3356:46:0;13987:351:1;34291:355:0;34354:19;34376:10;:8;:10::i;:::-;34354:32;-1:-1:-1;34397:18:0;34418:27;:10;34354:32;34418:14;:27::i;:::-;34497:4;34481:22;;;;:7;:22;;;;;;34397:48;;-1:-1:-1;34481:38:0;;34397:48;34481:26;:38::i;:::-;34472:4;34456:22;;;;:7;:22;;;;;;;;:63;;;;34534:11;:26;;;;;;34530:108;;;34616:4;34600:22;;;;:7;:22;;;;;;:38;;34627:10;34600:26;:38::i;:::-;34591:4;34575:22;;;;:7;:22;;;;;:63;34530:108;34343:303;;34291:355;:::o;32079:147::-;32157:7;;:17;;32169:4;32157:11;:17::i;:::-;32147:7;:27;32198:10;;:20;;32213:4;32198:14;:20::i;:::-;32185:10;:33;-1:-1:-1;;32079:147:0:o;35002:144::-;35112:14;;35073:7;;35100:38;;35132:5;;35100:27;;:7;;35112:14;;35100:11;:27::i;:::-;:31;;:38::i;35154:174::-;35295:13;;35251:7;;35283:37;;35314:5;;35283:26;;:7;;35295:13;;;;;35283:11;:26::i;35336:174::-;35477:13;;35433:7;;35465:37;;35496:5;;35465:26;;:7;;35477:13;;;;;35465:11;:26::i;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2739:160::-;2804:20;;2860:13;;2853:21;2843:32;;2833:60;;2889:1;2886;2879:12;2833:60;2739:160;;;:::o;2904:248::-;2969:6;2977;3030:2;3018:9;3009:7;3005:23;3001:32;2998:52;;;3046:1;3043;3036:12;2998:52;3069:26;3085:9;3069:26;:::i;3157:180::-;3216:6;3269:2;3257:9;3248:7;3244:23;3240:32;3237:52;;;3285:1;3282;3275:12;3237:52;-1:-1:-1;3308:23:1;;3157:180;-1:-1:-1;3157:180:1:o;3739:156::-;3805:20;;3865:4;3854:16;;3844:27;;3834:55;;3885:1;3882;3875:12;3900:535;3992:6;4000;4008;4016;4024;4032;4085:3;4073:9;4064:7;4060:23;4056:33;4053:53;;;4102:1;4099;4092:12;4053:53;4125:27;4142:9;4125:27;:::i;:::-;4115:37;;4171:36;4203:2;4192:9;4188:18;4171:36;:::i;:::-;4161:46;;4226:36;4258:2;4247:9;4243:18;4226:36;:::i;:::-;4216:46;;4281:36;4313:2;4302:9;4298:18;4281:36;:::i;:::-;4271:46;;4336:37;4368:3;4357:9;4353:19;4336:37;:::i;:::-;4326:47;;4392:37;4424:3;4413:9;4409:19;4392:37;:::i;:::-;4382:47;;3900:535;;;;;;;;:::o;4440:180::-;4496:6;4549:2;4537:9;4528:7;4524:23;4520:32;4517:52;;;4565:1;4562;4555:12;4517:52;4588:26;4604:9;4588:26;:::i;4625:388::-;4693:6;4701;4754:2;4742:9;4733:7;4729:23;4725:32;4722:52;;;4770:1;4767;4760:12;4722:52;4809:9;4796:23;4828:31;4853:5;4828:31;:::i;:::-;4878:5;-1:-1:-1;4935:2:1;4920:18;;4907:32;4948:33;4907:32;4948:33;:::i;:::-;5000:7;4990:17;;;4625:388;;;;;:::o;5018:380::-;5097:1;5093:12;;;;5140;;;5161:61;;5215:4;5207:6;5203:17;5193:27;;5161:61;5268:2;5260:6;5257:14;5237:18;5234:38;5231:161;;;5314:10;5309:3;5305:20;5302:1;5295:31;5349:4;5346:1;5339:15;5377:4;5374:1;5367:15;5231:161;;5018:380;;;:::o;5403:356::-;5605:2;5587:21;;;5624:18;;;5617:30;5683:34;5678:2;5663:18;;5656:62;5750:2;5735:18;;5403:356::o;6582:127::-;6643:10;6638:3;6634:20;6631:1;6624:31;6674:4;6671:1;6664:15;6698:4;6695:1;6688:15;6714:168;6754:7;6820:1;6816;6812:6;6808:14;6805:1;6802:21;6797:1;6790:9;6783:17;6779:45;6776:71;;;6827:18;;:::i;:::-;-1:-1:-1;6867:9:1;;6714:168::o;6887:217::-;6927:1;6953;6943:132;;6997:10;6992:3;6988:20;6985:1;6978:31;7032:4;7029:1;7022:15;7060:4;7057:1;7050:15;6943:132;-1:-1:-1;7089:9:1;;6887:217::o;10301:128::-;10341:3;10372:1;10368:6;10365:1;10362:13;10359:39;;;10378:18;;:::i;:::-;-1:-1:-1;10414:9:1;;10301:128::o;10837:125::-;10877:4;10905:1;10902;10899:8;10896:34;;;10910:18;;:::i;:::-;-1:-1:-1;10947:9:1;;10837:125::o;10967:204::-;11005:3;11041:4;11038:1;11034:12;11073:4;11070:1;11066:12;11108:3;11102:4;11098:14;11093:3;11090:23;11087:49;;;11116:18;;:::i;:::-;11152:13;;10967:204;-1:-1:-1;;;10967:204:1:o;11176:238::-;11214:7;11254:4;11251:1;11247:12;11286:4;11283:1;11279:12;11346:3;11340:4;11336:14;11331:3;11328:23;11321:3;11314:11;11307:19;11303:49;11300:75;;;11355:18;;:::i;:::-;11395:13;;11176:238;-1:-1:-1;;;11176:238:1:o;11419:127::-;11480:10;11475:3;11471:20;11468:1;11461:31;11511:4;11508:1;11501:15;11535:4;11532:1;11525:15;11551:135;11590:3;-1:-1:-1;;11611:17:1;;11608:43;;;11631:18;;:::i;:::-;-1:-1:-1;11678:1:1;11667:13;;11551:135::o;11823:251::-;11893:6;11946:2;11934:9;11925:7;11921:23;11917:32;11914:52;;;11962:1;11959;11952:12;11914:52;11994:9;11988:16;12013:31;12038:5;12013:31;:::i;12079:980::-;12341:4;12389:3;12378:9;12374:19;12420:6;12409:9;12402:25;12446:2;12484:6;12479:2;12468:9;12464:18;12457:34;12527:3;12522:2;12511:9;12507:18;12500:31;12551:6;12586;12580:13;12617:6;12609;12602:22;12655:3;12644:9;12640:19;12633:26;;12694:2;12686:6;12682:15;12668:29;;12715:1;12725:195;12739:6;12736:1;12733:13;12725:195;;;12804:13;;-1:-1:-1;;;;;12800:39:1;12788:52;;12895:15;;;;12860:12;;;;12836:1;12754:9;12725:195;;;-1:-1:-1;;;;;;;12976:32:1;;;;12971:2;12956:18;;12949:60;-1:-1:-1;;;13040:3:1;13025:19;13018:35;12937:3;12079:980;-1:-1:-1;;;12079:980:1:o;13676:306::-;13764:6;13772;13780;13833:2;13821:9;13812:7;13808:23;13804:32;13801:52;;;13849:1;13846;13839:12;13801:52;13878:9;13872:16;13862:26;;13928:2;13917:9;13913:18;13907:25;13897:35;;13972:2;13961:9;13957:18;13951:25;13941:35;;13676:306;;;;;:::o

Swarm Source

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