ETH Price: $3,422.01 (-2.17%)
Gas: 6 Gwei

Token

split protocol (SPLIT)
 

Overview

Max Total Supply

935.142288397756306141 SPLIT

Holders

224

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000082402057264518 SPLIT

Value
$0.00
0x92048db9d572f3d153d415a41502ad20e9756904
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:
SPLIT

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-21
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return 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 Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `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.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `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) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        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.
     *
     * 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) 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;
    }
}

/**
 * @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.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    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;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        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;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}



// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


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

     struct TValues{
        uint256 tTransferAmount;
        uint256 tFee;
        uint256 tBurn;
        uint256 tLpReward;
        uint256 tDevReward;
    }
    
    struct RValues{
        uint256 rate;
        uint256 rAmount;
        uint256 rTransferAmount;
        uint256 tTransferAmount;
        uint256 rFee;
        uint256 tFee;
        uint256 rBurn;
        uint256 rLpReward;
        uint256 rDevReward;
    }

    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;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;

    string private _name = "split protocol";
    string private _symbol = "SPLIT";
    uint8 private _decimals = 18;
    
    //2%
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    //3%
    uint256 public _burnFee = 2;
    uint256 private _previousBurnFee = _burnFee;
    
    //4%
    uint256 public _lpRewardFee = 2;
    uint256 private _previousLpRewardFee = _lpRewardFee;
    
    uint256 public _devRewardFee = 1;
    uint256 private _previousDevRewardFee = _devRewardFee;
    
    //No limit
    uint256 public _maxTxAmount = _tTotal;
    
    //tracks the total amount of token rewarded to liquidity providers
    uint256 public totalLiquidityProviderRewards;
    
    //locks the contract for any transfers
    bool public isTransferLocked = true;
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool public lpRewardEnabled = true;
    uint256 private minTokensBeforeReward = 10;

    event LiquidityProvidersRewarded(uint256 tokenAmount);
    event LpRewardEnabledUpdated(bool enabled);
    event MinTokensBeforeRewardUpdated(uint256 tokenAmount);

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        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;
        
        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 increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
         (,RValues memory values) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(values.rAmount);
        _rTotal = _rTotal.sub(values.rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        (,RValues memory values) = _getValues(tAmount);
        if (!deductTransferFee) {
            return values.rAmount;
        } else {
            return values.rTransferAmount;
        }
    }

    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 excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    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(!isTransferLocked || _isExcludedFromFee[from], "Transfer is locked before presale is completed.");
        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(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // 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));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeReward;
        if (
            overMinTokenBalance &&
            lpRewardEnabled
        ) {
            //distribute rewards
            _rewardLiquidityProviders(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;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    //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 (_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);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (TValues memory tValues, RValues memory rValues) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount);
        _takeLpAndDevRewards(tValues.tLpReward,tValues.tDevReward);
        _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn);
        emit Transfer(sender, recipient, tValues.tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (TValues memory tValues, RValues memory rValues) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tValues.tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount);           
        _takeLpAndDevRewards(tValues.tLpReward,tValues.tDevReward);
        _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn);
        emit Transfer(sender, recipient, tValues.tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (TValues memory tValues, RValues memory rValues) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount);   
        _takeLpAndDevRewards(tValues.tLpReward,tValues.tDevReward);
        _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn);
        emit Transfer(sender, recipient, tValues.tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (TValues memory tValues, RValues memory rValues) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tValues.tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount);        
        _takeLpAndDevRewards(tValues.tLpReward,tValues.tDevReward);
        _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn);
        emit Transfer(sender, recipient, tValues.tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tTotal = _tTotal.sub(tBurn);
    }
    
    function _getValues(uint256 tAmount) private view returns (TValues memory tValues, RValues memory rValues) {
        tValues = _getTValues(tAmount);
        rValues = _getRValues(tAmount,tValues);
    }

    function _getTValues(uint256 tAmount) private view returns (TValues memory values) {
        values.tFee = calculateTaxFee(tAmount);
        values.tBurn = calculateBurnFee(tAmount);
        values.tLpReward = calculateLpRewardFee(tAmount);
        values.tDevReward = calculateDevRewardFee(tAmount);
        values.tTransferAmount = tAmount.sub(values.tFee).sub(values.tBurn).sub(values.tLpReward).sub(values.tDevReward);
    }

    function _getRValues(uint256 tAmount, TValues memory tValues) private view returns (RValues memory values) {
        values.rate = _getRate();
        values.rAmount = tAmount.mul(values.rate);
        values.rFee = tValues.tFee.mul(values.rate);
        values.rBurn = tValues.tBurn.mul(values.rate);
        values.rLpReward = tValues.tLpReward.mul(values.rate);
        values.rDevReward = tValues.tDevReward.mul(values.rate);
        values.rTransferAmount = values.rAmount.sub(values.rFee).sub(values.rBurn).sub(values.rLpReward).sub(values.rDevReward);
    }

    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 _takeLpAndDevRewards(uint256 tLiquidity,uint256 tDevRewards) private {
        uint256 currentRate =  _getRate();
        
        //take lp providers reward
        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);
        
        //take dev rewards
        uint256 rDevRewards = tDevRewards.mul(currentRate);
        _rOwned[owner()] = _rOwned[owner()].add(rDevRewards);
        if(_isExcluded[owner()])
            _tOwned[owner()] = _tOwned[owner()].add(tDevRewards);
    }
    
    function _rewardLiquidityProviders(uint256 liquidityRewards) private {
        // avoid fee calling _tokenTransfer with false
        _tokenTransfer(address(this), uniswapV2Pair, liquidityRewards,false);
        IUniswapV2Pair(uniswapV2Pair).sync();
        totalLiquidityProviderRewards = totalLiquidityProviderRewards.add(liquidityRewards);
        emit LiquidityProvidersRewarded(liquidityRewards);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }
    
    function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(
            10**2
        );
    }
    
    function calculateLpRewardFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_lpRewardFee).div(
            10**2
        );
    }
    
    function calculateDevRewardFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_devRewardFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _burnFee == 0 && _lpRewardFee == 0 && _devRewardFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousBurnFee = _burnFee;
        _previousLpRewardFee = _lpRewardFee;
        _previousDevRewardFee = _devRewardFee;
        
        _taxFee = 0;
        _burnFee = 0;
        _lpRewardFee = 0;
        _devRewardFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _burnFee = _previousBurnFee;
        _lpRewardFee = _previousLpRewardFee;
        _devRewardFee = _previousDevRewardFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setBurnFeePercent(uint256 burnFee) external onlyOwner() {
        _burnFee = burnFee;
    }
    
    function setLpRewardFeePercent(uint256 lpRewardFee) external onlyOwner() {
        _lpRewardFee = lpRewardFee;
    }
    
    function setDevRewardFeePercent(uint256 devRewardFee) external onlyOwner() {
        _devRewardFee = devRewardFee;
    }
    
    function setMaxTxPercent(uint256 maxTxPercent, uint256 maxTxDecimals) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**(uint256(maxTxDecimals) + 2)
        );
    }
    
    function setMinTokensBeforeSwapPercent(uint256 _minTokensBeforeRewardPercent, uint256 _minTokensBeforeRewardDecimal) public onlyOwner{
        minTokensBeforeReward = _tTotal.mul(_minTokensBeforeRewardPercent).div(
            10**(uint256(_minTokensBeforeRewardDecimal) + 2)
        );
        emit MinTokensBeforeRewardUpdated(minTokensBeforeReward);
    }

    function setLpRewardEnabled(bool _enabled) public onlyOwner {
        lpRewardEnabled = _enabled;
        emit LpRewardEnabledUpdated(_enabled);
    }
    
    function setIsTransferLocked(bool enabled) public onlyOwner {
        isTransferLocked = enabled;
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"LiquidityProvidersRewarded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"LpRewardEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"MinTokensBeforeRewardUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lpRewardFee","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":"_taxFee","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTransferLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpRewardEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devRewardFee","type":"uint256"}],"name":"setDevRewardFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setIsTransferLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setLpRewardEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpRewardFee","type":"uint256"}],"name":"setLpRewardFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"},{"internalType":"uint256","name":"maxTxDecimals","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTokensBeforeRewardPercent","type":"uint256"},{"internalType":"uint256","name":"_minTokensBeforeRewardDecimal","type":"uint256"}],"name":"setMinTokensBeforeSwapPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","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":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLiquidityProviderRewards","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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052683635c9adc5dea00000600955600954600019816200001f57fe5b0660001903600a556040518060400160405280600e81526020017f73706c69742070726f746f636f6c000000000000000000000000000000000000815250600d9080519060200190620000749291906200061e565b506040518060400160405280600581526020017f53504c4954000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000c29291906200061e565b506012600f60006101000a81548160ff021916908360ff16021790555060016010556010546011556002601255601254601355600260145560145460155560016016556016546017556009546018556001601a60006101000a81548160ff0219169083151502179055506001601a60016101000a81548160ff021916908315150217905550600a601b553480156200015957600080fd5b5060006200016c620005ed60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a546003600062000221620005ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002bf57600080fd5b505afa158015620002d4573d6000803e3d6000fd5b505050506040513d6020811015620002eb57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035f57600080fd5b505afa15801562000374573d6000803e3d6000fd5b505050506040513d60208110156200038b57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200040657600080fd5b505af11580156200041b573d6000803e3d6000fd5b505050506040513d60208110156200043257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004c6620005f560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200057f620005ed60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a350620006c4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200066157805160ff191683800117855562000692565b8280016001018555821562000692579182015b828111156200069157825182559160200191906001019062000674565b5b509050620006a19190620006a5565b5090565b5b80821115620006c0576000816000905550600101620006a6565b5090565b60805160601c60a05160601c615583620006f860003980611e5a5280613a085280613a3152508061132752506155836000f3fe6080604052600436106102815760003560e01c80635342acb41161014f578063a9059cbb116100c1578063d26edfe31161007a578063d26edfe314610dbe578063dd46706414610df9578063dd62ed3e14610e34578063e7db06cc14610eb9578063ea2f0b3714610ee4578063f2fde38b14610f3557610288565b8063a9059cbb14610c4c578063b6c5232414610cbd578063c0b0fda214610ce8578063c365c69014610d13578063cb5fac4814610d3e578063cea2695814610d8357610288565b806388f820201161011357806388f8202014610a5f5780638da5cb5b14610ac657806395d89b4114610b07578063a01c62f714610b97578063a457c2d714610bc4578063a69df4b514610c3557610288565b80635342acb41461092457806369b5c07e1461098b57806370a08231146109b8578063715018a614610a1d5780637d1db4a514610a3457610288565b80633685d419116101f35780633f3cf56c116101ac5780633f3cf56c14610766578063437823ec146107ab5780634549b039146107fc578063466a7abc1461085757806349bd5a5e1461089257806352390c02146108d357610288565b80633685d419146105e857806339509351146106395780633b124fe7146106aa5780633b2ae941146106d55780633bd5d173146107005780633c9f861d1461073b57610288565b806313114a9d1161024557806313114a9d146104435780631694505e1461046e57806318160ddd146104af57806323b872dd146104da5780632d8381191461056b578063313ce567146105ba57610288565b80630118b7a51461028d578063061c82d0146102ca57806306fdde0314610305578063095ea7b314610395578063101310231461040657610288565b3661028857005b600080fd5b34801561029957600080fd5b506102c8600480360360208110156102b057600080fd5b81019080803515159060200190929190505050610f86565b005b3480156102d657600080fd5b50610303600480360360208110156102ed57600080fd5b810190808035906020019092919050505061106b565b005b34801561031157600080fd5b5061031a61113d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035a57808201518184015260208101905061033f565b50505050905090810190601f1680156103875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a157600080fd5b506103ee600480360360408110156103b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111df565b60405180821515815260200191505060405180910390f35b34801561041257600080fd5b506104416004803603602081101561042957600080fd5b810190808035151590602001909291905050506111fd565b005b34801561044f57600080fd5b5061045861131b565b6040518082815260200191505060405180910390f35b34801561047a57600080fd5b50610483611325565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104bb57600080fd5b506104c4611349565b6040518082815260200191505060405180910390f35b3480156104e657600080fd5b50610553600480360360608110156104fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611353565b60405180821515815260200191505060405180910390f35b34801561057757600080fd5b506105a46004803603602081101561058e57600080fd5b810190808035906020019092919050505061142c565b6040518082815260200191505060405180910390f35b3480156105c657600080fd5b506105cf6114b0565b604051808260ff16815260200191505060405180910390f35b3480156105f457600080fd5b506106376004803603602081101561060b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114c7565b005b34801561064557600080fd5b506106926004803603604081101561065c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611851565b60405180821515815260200191505060405180910390f35b3480156106b657600080fd5b506106bf611904565b6040518082815260200191505060405180910390f35b3480156106e157600080fd5b506106ea61190a565b6040518082815260200191505060405180910390f35b34801561070c57600080fd5b506107396004803603602081101561072357600080fd5b8101908080359060200190929190505050611910565b005b34801561074757600080fd5b50610750611aab565b6040518082815260200191505060405180910390f35b34801561077257600080fd5b506107a96004803603604081101561078957600080fd5b810190808035906020019092919080359060200190929190505050611ab5565b005b3480156107b757600080fd5b506107fa600480360360208110156107ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bb4565b005b34801561080857600080fd5b506108416004803603604081101561081f57600080fd5b8101908080359060200190929190803515159060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b34801561086357600080fd5b506108906004803603602081101561087a57600080fd5b8101908080359060200190929190505050611d86565b005b34801561089e57600080fd5b506108a7611e58565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108df57600080fd5b50610922600480360360208110156108f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7c565b005b34801561093057600080fd5b506109736004803603602081101561094757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612196565b60405180821515815260200191505060405180910390f35b34801561099757600080fd5b506109a06121ec565b60405180821515815260200191505060405180910390f35b3480156109c457600080fd5b50610a07600480360360208110156109db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121ff565b6040518082815260200191505060405180910390f35b348015610a2957600080fd5b50610a326122ea565b005b348015610a4057600080fd5b50610a49612470565b6040518082815260200191505060405180910390f35b348015610a6b57600080fd5b50610aae60048036036020811015610a8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612476565b60405180821515815260200191505060405180910390f35b348015610ad257600080fd5b50610adb6124cc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b1357600080fd5b50610b1c6124f5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b5c578082015181840152602081019050610b41565b50505050905090810190601f168015610b895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ba357600080fd5b50610bac612597565b60405180821515815260200191505060405180910390f35b348015610bd057600080fd5b50610c1d60048036036040811015610be757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506125aa565b60405180821515815260200191505060405180910390f35b348015610c4157600080fd5b50610c4a612677565b005b348015610c5857600080fd5b50610ca560048036036040811015610c6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612894565b60405180821515815260200191505060405180910390f35b348015610cc957600080fd5b50610cd26128b2565b6040518082815260200191505060405180910390f35b348015610cf457600080fd5b50610cfd6128bc565b6040518082815260200191505060405180910390f35b348015610d1f57600080fd5b50610d286128c2565b6040518082815260200191505060405180910390f35b348015610d4a57600080fd5b50610d8160048036036040811015610d6157600080fd5b8101908080359060200190929190803590602001909291905050506128c8565b005b348015610d8f57600080fd5b50610dbc60048036036020811015610da657600080fd5b8101908080359060200190929190505050612a00565b005b348015610dca57600080fd5b50610df760048036036020811015610de157600080fd5b8101908080359060200190929190505050612ad2565b005b348015610e0557600080fd5b50610e3260048036036020811015610e1c57600080fd5b8101908080359060200190929190505050612ba4565b005b348015610e4057600080fd5b50610ea360048036036040811015610e5757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d95565b6040518082815260200191505060405180910390f35b348015610ec557600080fd5b50610ece612e1c565b6040518082815260200191505060405180910390f35b348015610ef057600080fd5b50610f3360048036036020811015610f0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e22565b005b348015610f4157600080fd5b50610f8460048036036020811015610f5857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f45565b005b610f8e613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b611073613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050905090565b60006111f36111ec613150565b8484613158565b6001905092915050565b611205613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60016101000a81548160ff0219169083151502179055507f0ef8e9b9ffd57542540755631d2d4d23625d2b4d0ed11ccdc8f68a5f12b1345f8160405180821515815260200191505060405180910390a150565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b600061136084848461334f565b6114218461136c613150565b61141c8560405180606001604052806028815260200161544060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113d2613150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137499092919063ffffffff16565b613158565b600190509392505050565b6000600a54821115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615385602a913960400191505060405180910390fd5b6000611493613809565b90506114a8818461383490919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b6114cf613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561184d578173ffffffffffffffffffffffffffffffffffffffff166008828154811061168257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611840576008600160088054905003815481106116de57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061171657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061180657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561184d565b8080600101915050611651565b5050565b60006118fa61185e613150565b846118f5856005600061186f613150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b613158565b6001905092915050565b60105481565b60145481565b600061191a613150565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806154da602c913960400191505060405180910390fd5b6119c76152b7565b6119d083613906565b915050611a298160200151600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a858160200151600a5461393290919063ffffffff16565b600a81905550611aa083600b5461387e90919063ffffffff16565b600b81905550505050565b6000600c54905090565b611abd613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611baa60028201600a0a611b9c8460095461397c90919063ffffffff16565b61383490919063ffffffff16565b6018819055505050565b611bbc613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611d51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b611d596152b7565b611d6284613906565b91505082611d77578060200151915050611d80565b80604001519150505b92915050565b611d8e613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611e84613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612004576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120d857612094600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601a60019054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561229a57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122e5565b6122e2600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142c565b90505b919050565b6122f2613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561258d5780601f106125625761010080835404028352916020019161258d565b820191906000526020600020905b81548152906001019060200180831161257057829003601f168201915b5050505050905090565b601a60009054906101000a900460ff1681565b600061266d6125b7613150565b846126688560405180606001604052806025815260200161552960259139600560006125e1613150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137499092919063ffffffff16565b613158565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461271d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155066023913960400191505060405180910390fd5b6002544211612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006128a86128a1613150565b848461334f565b6001905092915050565b6000600254905090565b60125481565b60195481565b6128d0613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6129bd60028201600a0a6129af8460095461397c90919063ffffffff16565b61383490919063ffffffff16565b601b819055507f5e02c6b966b7b245b58dd1cd5f67e91d8ea94d045ca03e5977eae1b6acbd9c1d601b546040518082815260200191505060405180910390a15050565b612a08613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ac8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b612ada613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060168190555050565b612bac613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60165481565b612e2a613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612f4d613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461300d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613093576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153af6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806154b66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613264576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153d56022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b601a60009054906101000a900460ff1615806133b45750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615356602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561348f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154916025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613515576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153336023913960400191505060405180910390fd5b6000811161356e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806154686029913960400191505060405180910390fd5b6135766124cc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156135e457506135b46124cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561364557601854811115613644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806153f76028913960400191505060405180910390fd5b5b6000613650306121ff565b90506000601b5482101590508080156136755750601a60019054906101000a900460ff165b156136845761368382613a02565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061372b5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561373557600090505b61374186868684613b04565b505050505050565b60008383111582906137f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156137bb5780820151818401526020810190506137a0565b50505050905090810190601f1680156137e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613816613e15565b9150915061382d818361383490919063ffffffff16565b9250505090565b600061387683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140a6565b905092915050565b6000808284019050838110156138fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61390e615303565b6139166152b7565b61391f8361416c565b915061392b8383614223565b9050915091565b600061397483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613749565b905092915050565b60008083141561398f57600090506139fc565b60008284029050828482816139a057fe5b04146139f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061541f6021913960400191505060405180910390fd5b809150505b92915050565b613a2f307f0000000000000000000000000000000000000000000000000000000000000000836000613b04565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a9757600080fd5b505af1158015613aab573d6000803e3d6000fd5b50505050613ac48160195461387e90919063ffffffff16565b6019819055507f9b17fa2df47377a2b63ab30d73e312696f9fb67da7f97221334043b8f84b68a1816040518082815260200191505060405180910390a150565b80613b1257613b1161435a565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613bb55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bca57613bc58484846143db565b613e01565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c6d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c8257613c7d84848461465d565b613e00565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613d265750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613d3b57613d368484846148e3565b613dff565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613ddd5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613df257613ded848484614ad0565b613dfe565b613dfd8484846148e3565b5b5b5b5b80613e0f57613e0e614deb565b5b50505050565b6000806000600a5490506000600954905060005b60088054905081101561406957826003600060088481548110613e4857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613f2f5750816004600060088481548110613ec757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613f4657600a54600954945094505050506140a2565b613fcf6003600060088481548110613f5a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461393290919063ffffffff16565b925061405a6004600060088481548110613fe557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361393290919063ffffffff16565b91508080600101915050613e29565b50614081600954600a5461383490919063ffffffff16565b82101561409957600a546009549350935050506140a2565b81819350935050505b9091565b60008083118290614152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141175780820151818401526020810190506140fc565b50505050905090810190601f1680156141445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161415e57fe5b049050809150509392505050565b614174615303565b61417d82614e11565b81602001818152505061418f82614e42565b8160400181815250506141a182614e73565b8160600181815250506141b382614ea4565b816080018181525050614215816080015161420783606001516141f985604001516141eb87602001518961393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b816000018181525050919050565b61422b6152b7565b614233613809565b81600001818152505061425381600001518461397c90919063ffffffff16565b8160200181815250506142778160000151836020015161397c90919063ffffffff16565b81608001818152505061429b8160000151836040015161397c90919063ffffffff16565b8160c00181815250506142bf8160000151836060015161397c90919063ffffffff16565b8160e00181815250506142e38160000151836080015161397c90919063ffffffff16565b8161010001818152505061434b81610100015161433d8360e0015161432f8560c001516143218760800151886020015161393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b81604001818152505092915050565b600060105414801561436e57506000601254145b801561437c57506000601454145b801561438a57506000601654145b15614394576143d9565b60105460118190555060125460138190555060145460158190555060165460178190555060006010819055506000601281905550600060148190555060006016819055505b565b6143e3615303565b6143eb6152b7565b6143f483613906565b9150915061444a83600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144e38160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061457c8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145d182606001518360800151614ed5565b6145ed81608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b614665615303565b61466d6152b7565b61467683613906565b915091506146d08160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147698260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148028160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485782606001518360800151614ed5565b61487381608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b6148eb615303565b6148f36152b7565b6148fc83613906565b915091506149568160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ef8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a4482606001518360800151614ed5565b614a6081608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b614ad8615303565b614ae06152b7565b614ae983613906565b91509150614b3f83600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bd88160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c718260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d0a8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d5f82606001518360800151614ed5565b614d7b81608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b601154601081905550601354601281905550601554601481905550601754601681905550565b6000614e3b6064614e2d6010548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614e6c6064614e5e6012548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614e9d6064614e8f6014548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614ece6064614ec06016548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614edf613809565b90506000614ef6828561397c90919063ffffffff16565b9050614f4a81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156150755761503184600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600061508a838561397c90919063ffffffff16565b90506150e5816003600061509c6124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360006150f16124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506007600061513b6124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561522c576151e184600460006151986124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460006151ed6124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050505050565b61525a8361524c86600a5461393290919063ffffffff16565b61393290919063ffffffff16565b600a8190555061527582600b5461387e90919063ffffffff16565b600b8190555061529081600c5461387e90919063ffffffff16565b600c819055506152ab8160095461393290919063ffffffff16565b60098190555050505050565b6040518061012001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e73666572206973206c6f636b6564206265666f72652070726573616c6520697320636f6d706c657465642e416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b55e6e6e07da092f1a3d32c4a242f6772ae323e3b9a76fcb7f00c1c846b264ce64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102815760003560e01c80635342acb41161014f578063a9059cbb116100c1578063d26edfe31161007a578063d26edfe314610dbe578063dd46706414610df9578063dd62ed3e14610e34578063e7db06cc14610eb9578063ea2f0b3714610ee4578063f2fde38b14610f3557610288565b8063a9059cbb14610c4c578063b6c5232414610cbd578063c0b0fda214610ce8578063c365c69014610d13578063cb5fac4814610d3e578063cea2695814610d8357610288565b806388f820201161011357806388f8202014610a5f5780638da5cb5b14610ac657806395d89b4114610b07578063a01c62f714610b97578063a457c2d714610bc4578063a69df4b514610c3557610288565b80635342acb41461092457806369b5c07e1461098b57806370a08231146109b8578063715018a614610a1d5780637d1db4a514610a3457610288565b80633685d419116101f35780633f3cf56c116101ac5780633f3cf56c14610766578063437823ec146107ab5780634549b039146107fc578063466a7abc1461085757806349bd5a5e1461089257806352390c02146108d357610288565b80633685d419146105e857806339509351146106395780633b124fe7146106aa5780633b2ae941146106d55780633bd5d173146107005780633c9f861d1461073b57610288565b806313114a9d1161024557806313114a9d146104435780631694505e1461046e57806318160ddd146104af57806323b872dd146104da5780632d8381191461056b578063313ce567146105ba57610288565b80630118b7a51461028d578063061c82d0146102ca57806306fdde0314610305578063095ea7b314610395578063101310231461040657610288565b3661028857005b600080fd5b34801561029957600080fd5b506102c8600480360360208110156102b057600080fd5b81019080803515159060200190929190505050610f86565b005b3480156102d657600080fd5b50610303600480360360208110156102ed57600080fd5b810190808035906020019092919050505061106b565b005b34801561031157600080fd5b5061031a61113d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035a57808201518184015260208101905061033f565b50505050905090810190601f1680156103875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103a157600080fd5b506103ee600480360360408110156103b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111df565b60405180821515815260200191505060405180910390f35b34801561041257600080fd5b506104416004803603602081101561042957600080fd5b810190808035151590602001909291905050506111fd565b005b34801561044f57600080fd5b5061045861131b565b6040518082815260200191505060405180910390f35b34801561047a57600080fd5b50610483611325565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104bb57600080fd5b506104c4611349565b6040518082815260200191505060405180910390f35b3480156104e657600080fd5b50610553600480360360608110156104fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611353565b60405180821515815260200191505060405180910390f35b34801561057757600080fd5b506105a46004803603602081101561058e57600080fd5b810190808035906020019092919050505061142c565b6040518082815260200191505060405180910390f35b3480156105c657600080fd5b506105cf6114b0565b604051808260ff16815260200191505060405180910390f35b3480156105f457600080fd5b506106376004803603602081101561060b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114c7565b005b34801561064557600080fd5b506106926004803603604081101561065c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611851565b60405180821515815260200191505060405180910390f35b3480156106b657600080fd5b506106bf611904565b6040518082815260200191505060405180910390f35b3480156106e157600080fd5b506106ea61190a565b6040518082815260200191505060405180910390f35b34801561070c57600080fd5b506107396004803603602081101561072357600080fd5b8101908080359060200190929190505050611910565b005b34801561074757600080fd5b50610750611aab565b6040518082815260200191505060405180910390f35b34801561077257600080fd5b506107a96004803603604081101561078957600080fd5b810190808035906020019092919080359060200190929190505050611ab5565b005b3480156107b757600080fd5b506107fa600480360360208110156107ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bb4565b005b34801561080857600080fd5b506108416004803603604081101561081f57600080fd5b8101908080359060200190929190803515159060200190929190505050611cd7565b6040518082815260200191505060405180910390f35b34801561086357600080fd5b506108906004803603602081101561087a57600080fd5b8101908080359060200190929190505050611d86565b005b34801561089e57600080fd5b506108a7611e58565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108df57600080fd5b50610922600480360360208110156108f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e7c565b005b34801561093057600080fd5b506109736004803603602081101561094757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612196565b60405180821515815260200191505060405180910390f35b34801561099757600080fd5b506109a06121ec565b60405180821515815260200191505060405180910390f35b3480156109c457600080fd5b50610a07600480360360208110156109db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121ff565b6040518082815260200191505060405180910390f35b348015610a2957600080fd5b50610a326122ea565b005b348015610a4057600080fd5b50610a49612470565b6040518082815260200191505060405180910390f35b348015610a6b57600080fd5b50610aae60048036036020811015610a8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612476565b60405180821515815260200191505060405180910390f35b348015610ad257600080fd5b50610adb6124cc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b1357600080fd5b50610b1c6124f5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b5c578082015181840152602081019050610b41565b50505050905090810190601f168015610b895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ba357600080fd5b50610bac612597565b60405180821515815260200191505060405180910390f35b348015610bd057600080fd5b50610c1d60048036036040811015610be757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506125aa565b60405180821515815260200191505060405180910390f35b348015610c4157600080fd5b50610c4a612677565b005b348015610c5857600080fd5b50610ca560048036036040811015610c6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612894565b60405180821515815260200191505060405180910390f35b348015610cc957600080fd5b50610cd26128b2565b6040518082815260200191505060405180910390f35b348015610cf457600080fd5b50610cfd6128bc565b6040518082815260200191505060405180910390f35b348015610d1f57600080fd5b50610d286128c2565b6040518082815260200191505060405180910390f35b348015610d4a57600080fd5b50610d8160048036036040811015610d6157600080fd5b8101908080359060200190929190803590602001909291905050506128c8565b005b348015610d8f57600080fd5b50610dbc60048036036020811015610da657600080fd5b8101908080359060200190929190505050612a00565b005b348015610dca57600080fd5b50610df760048036036020811015610de157600080fd5b8101908080359060200190929190505050612ad2565b005b348015610e0557600080fd5b50610e3260048036036020811015610e1c57600080fd5b8101908080359060200190929190505050612ba4565b005b348015610e4057600080fd5b50610ea360048036036040811015610e5757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d95565b6040518082815260200191505060405180910390f35b348015610ec557600080fd5b50610ece612e1c565b6040518082815260200191505060405180910390f35b348015610ef057600080fd5b50610f3360048036036020811015610f0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e22565b005b348015610f4157600080fd5b50610f8460048036036020811015610f5857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f45565b005b610f8e613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b611073613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050905090565b60006111f36111ec613150565b8484613158565b6001905092915050565b611205613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60016101000a81548160ff0219169083151502179055507f0ef8e9b9ffd57542540755631d2d4d23625d2b4d0ed11ccdc8f68a5f12b1345f8160405180821515815260200191505060405180910390a150565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b600061136084848461334f565b6114218461136c613150565b61141c8560405180606001604052806028815260200161544060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113d2613150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137499092919063ffffffff16565b613158565b600190509392505050565b6000600a54821115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615385602a913960400191505060405180910390fd5b6000611493613809565b90506114a8818461383490919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b6114cf613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561184d578173ffffffffffffffffffffffffffffffffffffffff166008828154811061168257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611840576008600160088054905003815481106116de57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061171657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061180657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561184d565b8080600101915050611651565b5050565b60006118fa61185e613150565b846118f5856005600061186f613150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b613158565b6001905092915050565b60105481565b60145481565b600061191a613150565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806154da602c913960400191505060405180910390fd5b6119c76152b7565b6119d083613906565b915050611a298160200151600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a858160200151600a5461393290919063ffffffff16565b600a81905550611aa083600b5461387e90919063ffffffff16565b600b81905550505050565b6000600c54905090565b611abd613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611baa60028201600a0a611b9c8460095461397c90919063ffffffff16565b61383490919063ffffffff16565b6018819055505050565b611bbc613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611d51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b611d596152b7565b611d6284613906565b91505082611d77578060200151915050611d80565b80604001519150505b92915050565b611d8e613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b7f0000000000000000000000000dc1cd1c3e26c31e245b3dd708cabb289b857f5b81565b611e84613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612004576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120d857612094600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601a60019054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561229a57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122e5565b6122e2600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461142c565b90505b919050565b6122f2613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561258d5780601f106125625761010080835404028352916020019161258d565b820191906000526020600020905b81548152906001019060200180831161257057829003601f168201915b5050505050905090565b601a60009054906101000a900460ff1681565b600061266d6125b7613150565b846126688560405180606001604052806025815260200161552960259139600560006125e1613150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546137499092919063ffffffff16565b613158565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461271d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155066023913960400191505060405180910390fd5b6002544211612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006128a86128a1613150565b848461334f565b6001905092915050565b6000600254905090565b60125481565b60195481565b6128d0613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6129bd60028201600a0a6129af8460095461397c90919063ffffffff16565b61383490919063ffffffff16565b601b819055507f5e02c6b966b7b245b58dd1cd5f67e91d8ea94d045ca03e5977eae1b6acbd9c1d601b546040518082815260200191505060405180910390a15050565b612a08613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ac8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b612ada613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060168190555050565b612bac613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60165481565b612e2a613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612f4d613150565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461300d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613093576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806153af6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806154b66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613264576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153d56022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b601a60009054906101000a900460ff1615806133b45750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b613409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615356602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561348f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806154916025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613515576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153336023913960400191505060405180910390fd5b6000811161356e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806154686029913960400191505060405180910390fd5b6135766124cc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156135e457506135b46124cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561364557601854811115613644576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806153f76028913960400191505060405180910390fd5b5b6000613650306121ff565b90506000601b5482101590508080156136755750601a60019054906101000a900460ff165b156136845761368382613a02565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061372b5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561373557600090505b61374186868684613b04565b505050505050565b60008383111582906137f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156137bb5780820151818401526020810190506137a0565b50505050905090810190601f1680156137e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613816613e15565b9150915061382d818361383490919063ffffffff16565b9250505090565b600061387683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506140a6565b905092915050565b6000808284019050838110156138fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b61390e615303565b6139166152b7565b61391f8361416c565b915061392b8383614223565b9050915091565b600061397483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613749565b905092915050565b60008083141561398f57600090506139fc565b60008284029050828482816139a057fe5b04146139f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061541f6021913960400191505060405180910390fd5b809150505b92915050565b613a2f307f0000000000000000000000000dc1cd1c3e26c31e245b3dd708cabb289b857f5b836000613b04565b7f0000000000000000000000000dc1cd1c3e26c31e245b3dd708cabb289b857f5b73ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613a9757600080fd5b505af1158015613aab573d6000803e3d6000fd5b50505050613ac48160195461387e90919063ffffffff16565b6019819055507f9b17fa2df47377a2b63ab30d73e312696f9fb67da7f97221334043b8f84b68a1816040518082815260200191505060405180910390a150565b80613b1257613b1161435a565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613bb55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bca57613bc58484846143db565b613e01565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c6d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c8257613c7d84848461465d565b613e00565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613d265750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613d3b57613d368484846148e3565b613dff565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613ddd5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613df257613ded848484614ad0565b613dfe565b613dfd8484846148e3565b5b5b5b5b80613e0f57613e0e614deb565b5b50505050565b6000806000600a5490506000600954905060005b60088054905081101561406957826003600060088481548110613e4857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613f2f5750816004600060088481548110613ec757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613f4657600a54600954945094505050506140a2565b613fcf6003600060088481548110613f5a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461393290919063ffffffff16565b925061405a6004600060088481548110613fe557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361393290919063ffffffff16565b91508080600101915050613e29565b50614081600954600a5461383490919063ffffffff16565b82101561409957600a546009549350935050506140a2565b81819350935050505b9091565b60008083118290614152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141175780820151818401526020810190506140fc565b50505050905090810190601f1680156141445780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161415e57fe5b049050809150509392505050565b614174615303565b61417d82614e11565b81602001818152505061418f82614e42565b8160400181815250506141a182614e73565b8160600181815250506141b382614ea4565b816080018181525050614215816080015161420783606001516141f985604001516141eb87602001518961393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b816000018181525050919050565b61422b6152b7565b614233613809565b81600001818152505061425381600001518461397c90919063ffffffff16565b8160200181815250506142778160000151836020015161397c90919063ffffffff16565b81608001818152505061429b8160000151836040015161397c90919063ffffffff16565b8160c00181815250506142bf8160000151836060015161397c90919063ffffffff16565b8160e00181815250506142e38160000151836080015161397c90919063ffffffff16565b8161010001818152505061434b81610100015161433d8360e0015161432f8560c001516143218760800151886020015161393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b61393290919063ffffffff16565b81604001818152505092915050565b600060105414801561436e57506000601254145b801561437c57506000601454145b801561438a57506000601654145b15614394576143d9565b60105460118190555060125460138190555060145460158190555060165460178190555060006010819055506000601281905550600060148190555060006016819055505b565b6143e3615303565b6143eb6152b7565b6143f483613906565b9150915061444a83600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144e38160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061457c8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145d182606001518360800151614ed5565b6145ed81608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b614665615303565b61466d6152b7565b61467683613906565b915091506146d08160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147698260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148028160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485782606001518360800151614ed5565b61487381608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b6148eb615303565b6148f36152b7565b6148fc83613906565b915091506149568160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ef8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a4482606001518360800151614ed5565b614a6081608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b614ad8615303565b614ae06152b7565b614ae983613906565b91509150614b3f83600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bd88160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461393290919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c718260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d0a8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d5f82606001518360800151614ed5565b614d7b81608001518260c0015184602001518560400151615233565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b601154601081905550601354601281905550601554601481905550601754601681905550565b6000614e3b6064614e2d6010548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614e6c6064614e5e6012548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614e9d6064614e8f6014548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614ece6064614ec06016548561397c90919063ffffffff16565b61383490919063ffffffff16565b9050919050565b6000614edf613809565b90506000614ef6828561397c90919063ffffffff16565b9050614f4a81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156150755761503184600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600061508a838561397c90919063ffffffff16565b90506150e5816003600061509c6124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600360006150f16124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506007600061513b6124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561522c576151e184600460006151986124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461387e90919063ffffffff16565b600460006151ed6124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050505050565b61525a8361524c86600a5461393290919063ffffffff16565b61393290919063ffffffff16565b600a8190555061527582600b5461387e90919063ffffffff16565b600b8190555061529081600c5461387e90919063ffffffff16565b600c819055506152ab8160095461393290919063ffffffff16565b60098190555050505050565b6040518061012001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e73666572206973206c6f636b6564206265666f72652070726573616c6520697320636f6d706c657465642e416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b55e6e6e07da092f1a3d32c4a242f6772ae323e3b9a76fcb7f00c1c846b264ce64736f6c634300060c0033

Deployed Bytecode Sourcemap

25753:19227:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44774:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43526:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28787:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29699:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44609:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30820:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27696:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29064:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29868:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31806:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28973:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32522:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30189:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27005:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27202:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31015:394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30919:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44014:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43281:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31417:381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43750:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27754:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32067:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43146:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27805:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29167:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16348:148;;;;;;;;;;;;;:::i;:::-;;27425:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30692:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15705:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28878:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27648:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30415:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17358:293;;;;;;;;;;;;;:::i;:::-;;29373:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16903:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27102:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27547:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44238:363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43636:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43880:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17068:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29548:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27304:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43404:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16651:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44774:105;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44864:7:::1;44845:16;;:26;;;;;;;;;;;;;;;;;;44774:105:::0;:::o;43526:98::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43610:6:::1;43600:7;:16;;;;43526:98:::0;:::o;28787:83::-;28824:13;28857:5;28850:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28787:83;:::o;29699:161::-;29774:4;29791:39;29800:12;:10;:12::i;:::-;29814:7;29823:6;29791:8;:39::i;:::-;29848:4;29841:11;;29699:161;;;;:::o;44609:153::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44698:8:::1;44680:15;;:26;;;;;;;;;;;;;;;;;;44722:32;44745:8;44722:32;;;;;;;;;;;;;;;;;;;;44609:153:::0;:::o;30820:87::-;30862:7;30889:10;;30882:17;;30820:87;:::o;27696:51::-;;;:::o;29064:95::-;29117:7;29144;;29137:14;;29064:95;:::o;29868:313::-;29966:4;29983:36;29993:6;30001:9;30012:6;29983:9;:36::i;:::-;30030:121;30039:6;30047:12;:10;:12::i;:::-;30061:89;30099:6;30061:89;;;;;;;;;;;;;;;;;:11;:19;30073:6;30061:19;;;;;;;;;;;;;;;:33;30081:12;:10;:12::i;:::-;30061:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30030:8;:121::i;:::-;30169:4;30162:11;;29868:313;;;;;:::o;31806:253::-;31872:7;31911;;31900;:18;;31892:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31976:19;31999:10;:8;:10::i;:::-;31976:33;;32027:24;32039:11;32027:7;:11;;:24;;;;:::i;:::-;32020:31;;;31806:253;;;:::o;28973:83::-;29014:5;29039:9;;;;;;;;;;;29032:16;;28973:83;:::o;32522:479::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32604:11:::1;:20;32616:7;32604:20;;;;;;;;;;;;;;;;;;;;;;;;;32596:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32672:9;32667:327;32691:9;:16;;;;32687:1;:20;32667:327;;;32749:7;32733:23;;:9;32743:1;32733:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32729:254;;;32792:9;32821:1;32802:9;:16;;;;:20;32792:31;;;;;;;;;;;;;;;;;;;;;;;;;32777:9;32787:1;32777:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32861:1;32842:7;:16;32850:7;32842:16;;;;;;;;;;;;;;;:20;;;;32904:5;32881:11;:20;32893:7;32881:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32928:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32962:5;;32729:254;32709:3;;;;;;;32667:327;;;;32522:479:::0;:::o;30189:218::-;30277:4;30294:83;30303:12;:10;:12::i;:::-;30317:7;30326:50;30365:10;30326:11;:25;30338:12;:10;:12::i;:::-;30326:25;;;;;;;;;;;;;;;:34;30352:7;30326:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30294:8;:83::i;:::-;30395:4;30388:11;;30189:218;;;;:::o;27005:26::-;;;;:::o;27202:31::-;;;;:::o;31015:394::-;31067:14;31084:12;:10;:12::i;:::-;31067:29;;31116:11;:19;31128:6;31116:19;;;;;;;;;;;;;;;;;;;;;;;;;31115:20;31107:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31198:21;;:::i;:::-;31223:19;31234:7;31223:10;:19::i;:::-;31196:46;;;31271:35;31291:6;:14;;;31271:7;:15;31279:6;31271:15;;;;;;;;;;;;;;;;:19;;:35;;;;:::i;:::-;31253:7;:15;31261:6;31253:15;;;;;;;;;;;;;;;:53;;;;31327:27;31339:6;:14;;;31327:7;;:11;;:27;;;;:::i;:::-;31317:7;:37;;;;31378:23;31393:7;31378:10;;:14;;:23;;;;:::i;:::-;31365:10;:36;;;;31015:394;;;:::o;30919:88::-;30961:7;30988:11;;30981:18;;30919:88;:::o;44014:212::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44131:87:::1;44205:1;44188:13;44180:26;44175:2;:32;44131:25;44143:12;44131:7;;:11;;:25;;;;:::i;:::-;:29;;:87;;;;:::i;:::-;44116:12;:102;;;;44014:212:::0;;:::o;43281:111::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43380:4:::1;43350:18;:27;43369:7;43350:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;43281:111:::0;:::o;31417:381::-;31507:7;31546;;31535;:18;;31527:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31602:21;;:::i;:::-;31627:19;31638:7;31627:10;:19::i;:::-;31600:46;;;31662:17;31657:134;;31703:6;:14;;;31696:21;;;;;31657:134;31757:6;:22;;;31750:29;;;31417:381;;;;;:::o;43750:118::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43849:11:::1;43834:12;:26;;;;43750:118:::0;:::o;27754:38::-;;;:::o;32067:447::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32264:11:::1;:20;32276:7;32264:20;;;;;;;;;;;;;;;;;;;;;;;;;32263:21;32255:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32349:1;32330:7;:16;32338:7;32330:16;;;;;;;;;;;;;;;;:20;32327:108;;;32386:37;32406:7;:16;32414:7;32406:16;;;;;;;;;;;;;;;;32386:19;:37::i;:::-;32367:7;:16;32375:7;32367:16;;;;;;;;;;;;;;;:56;;;;32327:108;32468:4;32445:11;:20;32457:7;32445:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32483:9;32498:7;32483:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32067:447:::0;:::o;43146:123::-;43210:4;43234:18;:27;43253:7;43234:27;;;;;;;;;;;;;;;;;;;;;;;;;43227:34;;43146:123;;;:::o;27805:34::-;;;;;;;;;;;;;:::o;29167:198::-;29233:7;29257:11;:20;29269:7;29257:20;;;;;;;;;;;;;;;;;;;;;;;;;29253:49;;;29286:7;:16;29294:7;29286:16;;;;;;;;;;;;;;;;29279:23;;;;29253:49;29320:37;29340:7;:16;29348:7;29340:16;;;;;;;;;;;;;;;;29320:19;:37::i;:::-;29313:44;;29167:198;;;;:::o;16348:148::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16455:1:::1;16418:40;;16439:6;::::0;::::1;;;;;;;;16418:40;;;;;;;;;;;;16486:1;16469:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16348:148::o:0;27425:37::-;;;;:::o;30692:120::-;30760:4;30784:11;:20;30796:7;30784:20;;;;;;;;;;;;;;;;;;;;;;;;;30777:27;;30692:120;;;:::o;15705:79::-;15743:7;15770:6;;;;;;;;;;;15763:13;;15705:79;:::o;28878:87::-;28917:13;28950:7;28943:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28878:87;:::o;27648:35::-;;;;;;;;;;;;;:::o;30415:269::-;30508:4;30525:129;30534:12;:10;:12::i;:::-;30548:7;30557:96;30596:15;30557:96;;;;;;;;;;;;;;;;;:11;:25;30569:12;:10;:12::i;:::-;30557:25;;;;;;;;;;;;;;;:34;30583:7;30557:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30525:8;:129::i;:::-;30672:4;30665:11;;30415:269;;;;:::o;17358:293::-;17428:10;17410:28;;:14;;;;;;;;;;;:28;;;17402:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17503:9;;17497:3;:15;17489:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17594:14;;;;;;;;;;;17565:44;;17586:6;;;;;;;;;;17565:44;;;;;;;;;;;;17629:14;;;;;;;;;;;17620:6;;:23;;;;;;;;;;;;;;;;;;17358:293::o;29373:167::-;29451:4;29468:42;29478:12;:10;:12::i;:::-;29492:9;29503:6;29468:9;:42::i;:::-;29528:4;29521:11;;29373:167;;;;:::o;16903:89::-;16948:7;16975:9;;16968:16;;16903:89;:::o;27102:27::-;;;;:::o;27547:44::-;;;;:::o;44238:363::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44406:120:::1;44513:1;44480:29;44472:42;44467:2;:48;44406:42;44418:29;44406:7;;:11;;:42;;;;:::i;:::-;:46;;:120;;;;:::i;:::-;44382:21;:144;;;;44542:51;44571:21;;44542:51;;;;;;;;;;;;;;;;;;44238:363:::0;;:::o;43636:102::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43723:7:::1;43712:8;:18;;;;43636:102:::0;:::o;43880:122::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43982:12:::1;43966:13;:28;;;;43880:122:::0;:::o;17068:214::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17149:6:::1;::::0;::::1;;;;;;;;17132:14;;:23;;;;;;;;;;;;;;;;;;17183:1;17166:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17214:4;17208:3;:10;17196:9;:22;;;;17271:1;17234:40;;17255:6;::::0;::::1;;;;;;;;17234:40;;;;;;;;;;;;17068:214:::0;:::o;29548:143::-;29629:7;29656:11;:18;29668:5;29656:18;;;;;;;;;;;;;;;:27;29675:7;29656:27;;;;;;;;;;;;;;;;29649:34;;29548:143;;;;:::o;27304:32::-;;;;:::o;43404:110::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43501:5:::1;43471:18;:27;43490:7;43471:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;43404:110:::0;:::o;16651:244::-;15927:12;:10;:12::i;:::-;15917:22;;:6;;;;;;;;;;:22;;;15909:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16760:1:::1;16740:22;;:8;:22;;;;16732:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16850:8;16821:38;;16842:6;::::0;::::1;;;;;;;;16821:38;;;;;;;;;;;;16879:8;16870:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16651:244:::0;:::o;96:106::-;149:15;184:10;177:17;;96:106;:::o;33009:337::-;33119:1;33102:19;;:5;:19;;;;33094:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33200:1;33181:21;;:7;:21;;;;33173:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33284:6;33254:11;:18;33266:5;33254:18;;;;;;;;;;;;;;;:27;33273:7;33254:27;;;;;;;;;;;;;;;:36;;;;33322:7;33306:32;;33315:5;33306:32;;;33331:6;33306:32;;;;;;;;;;;;;;;;;;33009:337;;;:::o;33354:1650::-;33477:16;;;;;;;;;;;33476:17;:45;;;;33497:18;:24;33516:4;33497:24;;;;;;;;;;;;;;;;;;;;;;;;;33476:45;33468:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33608:1;33592:18;;:4;:18;;;;33584:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33685:1;33671:16;;:2;:16;;;;33663:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33755:1;33746:6;:10;33738:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33824:7;:5;:7::i;:::-;33816:15;;:4;:15;;;;:32;;;;;33841:7;:5;:7::i;:::-;33835:13;;:2;:13;;;;33816:32;33813:125;;;33881:12;;33871:6;:22;;33863:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33813:125;34233:28;34264:24;34282:4;34264:9;:24::i;:::-;34233:55;;34299:24;34350:21;;34326:20;:45;;34299:72;;34400:19;:51;;;;;34436:15;;;;;;;;;;;34400:51;34382:189;;;34512:47;34538:20;34512:25;:47::i;:::-;34382:189;34652:12;34667:4;34652:19;;34779:18;:24;34798:4;34779:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;34807:18;:22;34826:2;34807:22;;;;;;;;;;;;;;;;;;;;;;;;;34779:50;34776:96;;;34855:5;34845:15;;34776:96;34958:38;34973:4;34978:2;34981:6;34988:7;34958:14;:38::i;:::-;33354:1650;;;;;;:::o;4912:192::-;4998:7;5031:1;5026;:6;;5034:12;5018:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5058:9;5074:1;5070;:5;5058:17;;5095:1;5088:8;;;4912:192;;;;;:::o;39932:163::-;39973:7;39994:15;40011;40030:19;:17;:19::i;:::-;39993:56;;;;40067:20;40079:7;40067;:11;;:20;;;;:::i;:::-;40060:27;;;;39932:163;:::o;6310:132::-;6368:7;6395:39;6399:1;6402;6395:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6388:46;;6310:132;;;;:::o;4009:181::-;4067:7;4087:9;4103:1;4099;:5;4087:17;;4128:1;4123;:6;;4115:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4181:1;4174:8;;;4009:181;;;;:::o;38697:205::-;38756:22;;:::i;:::-;38780;;:::i;:::-;38825:20;38837:7;38825:11;:20::i;:::-;38815:30;;38866:28;38878:7;38886;38866:11;:28::i;:::-;38856:38;;38697:205;;;:::o;4473:136::-;4531:7;4558:43;4562:1;4565;4558:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4551:50;;4473:136;;;;:::o;5363:471::-;5421:7;5671:1;5666;:6;5662:47;;;5696:1;5689:8;;;;5662:47;5721:9;5737:1;5733;:5;5721:17;;5766:1;5761;5757;:5;;;;;;:10;5749:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5825:1;5818:8;;;5363:471;;;;;:::o;41378:413::-;41514:68;41537:4;41544:13;41559:16;41576:5;41514:14;:68::i;:::-;41608:13;41593:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41672:51;41706:16;41672:29;;:33;;:51;;;;:::i;:::-;41640:29;:83;;;;41739:44;41766:16;41739:44;;;;;;;;;;;;;;;;;;41378:413;:::o;35085:834::-;35196:7;35192:40;;35218:14;:12;:14::i;:::-;35192:40;35257:11;:19;35269:6;35257:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;35281:11;:22;35293:9;35281:22;;;;;;;;;;;;;;;;;;;;;;;;;35280:23;35257:46;35253:597;;;35320:48;35342:6;35350:9;35361:6;35320:21;:48::i;:::-;35253:597;;;35391:11;:19;35403:6;35391:19;;;;;;;;;;;;;;;;;;;;;;;;;35390:20;:46;;;;;35414:11;:22;35426:9;35414:22;;;;;;;;;;;;;;;;;;;;;;;;;35390:46;35386:464;;;35453:46;35473:6;35481:9;35492:6;35453:19;:46::i;:::-;35386:464;;;35522:11;:19;35534:6;35522:19;;;;;;;;;;;;;;;;;;;;;;;;;35521:20;:47;;;;;35546:11;:22;35558:9;35546:22;;;;;;;;;;;;;;;;;;;;;;;;;35545:23;35521:47;35517:333;;;35585:44;35603:6;35611:9;35622:6;35585:17;:44::i;:::-;35517:333;;;35651:11;:19;35663:6;35651:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;35674:11;:22;35686:9;35674:22;;;;;;;;;;;;;;;;;;;;;;;;;35651:45;35647:203;;;35713:48;35735:6;35743:9;35754:6;35713:21;:48::i;:::-;35647:203;;;35794:44;35812:6;35820:9;35831:6;35794:17;:44::i;:::-;35647:203;35517:333;35386:464;35253:597;35874:7;35870:41;;35896:15;:13;:15::i;:::-;35870:41;35085:834;;;;:::o;40103:561::-;40153:7;40162;40182:15;40200:7;;40182:25;;40218:15;40236:7;;40218:25;;40265:9;40260:289;40284:9;:16;;;;40280:1;:20;40260:289;;;40350:7;40326;:21;40334:9;40344:1;40334:12;;;;;;;;;;;;;;;;;;;;;;;;;40326:21;;;;;;;;;;;;;;;;:31;:66;;;;40385:7;40361;:21;40369:9;40379:1;40369:12;;;;;;;;;;;;;;;;;;;;;;;;;40361:21;;;;;;;;;;;;;;;;:31;40326:66;40322:97;;;40402:7;;40411;;40394:25;;;;;;;;;40322:97;40444:34;40456:7;:21;40464:9;40474:1;40464:12;;;;;;;;;;;;;;;;;;;;;;;;;40456:21;;;;;;;;;;;;;;;;40444:7;:11;;:34;;;;:::i;:::-;40434:44;;40503:34;40515:7;:21;40523:9;40533:1;40523:12;;;;;;;;;;;;;;;;;;;;;;;;;40515:21;;;;;;;;;;;;;;;;40503:7;:11;;:34;;;;:::i;:::-;40493:44;;40302:3;;;;;;;40260:289;;;;40573:20;40585:7;;40573;;:11;;:20;;;;:::i;:::-;40563:7;:30;40559:61;;;40603:7;;40612;;40595:25;;;;;;;;40559:61;40639:7;40648;40631:25;;;;;;40103:561;;;:::o;6938:278::-;7024:7;7056:1;7052;:5;7059:12;7044:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7083:9;7099:1;7095;:5;;;;;;7083:17;;7207:1;7200:8;;;6938:278;;;;;:::o;38910:434::-;38970:21;;:::i;:::-;39018:24;39034:7;39018:15;:24::i;:::-;39004:6;:11;;:38;;;;;39068:25;39085:7;39068:16;:25::i;:::-;39053:6;:12;;:40;;;;;39123:29;39144:7;39123:20;:29::i;:::-;39104:6;:16;;:48;;;;;39183:30;39205:7;39183:21;:30::i;:::-;39163:6;:17;;:50;;;;;39249:87;39318:6;:17;;;39249:64;39296:6;:16;;;39249:42;39278:6;:12;;;39249:24;39261:6;:11;;;39249:7;:11;;:24;;;;:::i;:::-;:28;;:42;;;;:::i;:::-;:46;;:64;;;;:::i;:::-;:68;;:87;;;;:::i;:::-;39224:6;:22;;:112;;;;;38910:434;;;:::o;39352:572::-;39436:21;;:::i;:::-;39484:10;:8;:10::i;:::-;39470:6;:11;;:24;;;;;39522;39534:6;:11;;;39522:7;:11;;:24;;;;:::i;:::-;39505:6;:14;;:41;;;;;39571:29;39588:6;:11;;;39571:7;:12;;;:16;;:29;;;;:::i;:::-;39557:6;:11;;:43;;;;;39626:30;39644:6;:11;;;39626:7;:13;;;:17;;:30;;;;:::i;:::-;39611:6;:12;;:45;;;;;39686:34;39708:6;:11;;;39686:7;:17;;;:21;;:34;;;;:::i;:::-;39667:6;:16;;:53;;;;;39751:35;39774:6;:11;;;39751:7;:18;;;:22;;:35;;;;:::i;:::-;39731:6;:17;;:55;;;;;39822:94;39898:6;:17;;;39822:71;39876:6;:16;;;39822:49;39858:6;:12;;;39822:31;39841:6;:11;;;39822:6;:14;;;:18;;:31;;;;:::i;:::-;:35;;:49;;;;:::i;:::-;:53;;:71;;;;:::i;:::-;:75;;:94;;;;:::i;:::-;39797:6;:22;;:119;;;;;39352:572;;;;:::o;42491:422::-;42548:1;42537:7;;:12;:29;;;;;42565:1;42553:8;;:13;42537:29;:50;;;;;42586:1;42570:12;;:17;42537:50;:72;;;;;42608:1;42591:13;;:18;42537:72;42534:84;;;42611:7;;42534:84;42656:7;;42638:15;:25;;;;42693:8;;42674:16;:27;;;;42735:12;;42712:20;:35;;;;42782:13;;42758:21;:37;;;;42826:1;42816:7;:11;;;;42849:1;42838:8;:12;;;;42876:1;42861:12;:16;;;;42904:1;42888:13;:17;;;;42491:422;:::o;37109:601::-;37212:22;;:::i;:::-;37236;;:::i;:::-;37262:19;37273:7;37262:10;:19::i;:::-;37211:70;;;;37310:28;37330:7;37310;:15;37318:6;37310:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;37292:7;:15;37300:6;37292:15;;;;;;;;;;;;;;;:46;;;;37367:36;37387:7;:15;;;37367:7;:15;37375:6;37367:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;37349:7;:15;37357:6;37349:15;;;;;;;;;;;;;;;:54;;;;37435:47;37458:7;:23;;;37435:7;:18;37443:9;37435:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;37414:7;:18;37422:9;37414:18;;;;;;;;;;;;;;;:68;;;;37496:58;37517:7;:17;;;37535:7;:18;;;37496:20;:58::i;:::-;37565:69;37577:7;:12;;;37591:7;:13;;;37606:7;:12;;;37620:7;:13;;;37565:11;:69::i;:::-;37667:9;37650:52;;37659:6;37650:52;;;37678:7;:23;;;37650:52;;;;;;;;;;;;;;;;;;37109:601;;;;;:::o;36472:629::-;36573:22;;:::i;:::-;36597;;:::i;:::-;36623:19;36634:7;36623:10;:19::i;:::-;36572:70;;;;36671:36;36691:7;:15;;;36671:7;:15;36679:6;36671:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;36653:7;:15;36661:6;36653:15;;;;;;;;;;;;;;;:54;;;;36739:47;36762:7;:23;;;36739:7;:18;36747:9;36739:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;36718:7;:18;36726:9;36718:18;;;;;;;;;;;;;;;:68;;;;36818:47;36841:7;:23;;;36818:7;:18;36826:9;36818:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;36797:7;:18;36805:9;36797:18;;;;;;;;;;;;;;;:68;;;;36887:58;36908:7;:17;;;36926:7;:18;;;36887:20;:58::i;:::-;36956:69;36968:7;:12;;;36982:7;:13;;;36997:7;:12;;;37011:7;:13;;;36956:11;:69::i;:::-;37058:9;37041:52;;37050:6;37041:52;;;37069:7;:23;;;37041:52;;;;;;;;;;;;;;;;;;36472:629;;;;;:::o;35927:537::-;36026:22;;:::i;:::-;36050;;:::i;:::-;36076:19;36087:7;36076:10;:19::i;:::-;36025:70;;;;36124:36;36144:7;:15;;;36124:7;:15;36132:6;36124:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;36106:7;:15;36114:6;36106:15;;;;;;;;;;;;;;;:54;;;;36192:47;36215:7;:23;;;36192:7;:18;36200:9;36192:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;36171:7;:18;36179:9;36171:18;;;;;;;;;;;;;;;:68;;;;36250:58;36271:7;:17;;;36289:7;:18;;;36250:20;:58::i;:::-;36319:69;36331:7;:12;;;36345:7;:13;;;36360:7;:12;;;36374:7;:13;;;36319:11;:69::i;:::-;36421:9;36404:52;;36413:6;36404:52;;;36432:7;:23;;;36404:52;;;;;;;;;;;;;;;;;;35927:537;;;;;:::o;37718:685::-;37821:22;;:::i;:::-;37845;;:::i;:::-;37871:19;37882:7;37871:10;:19::i;:::-;37820:70;;;;37919:28;37939:7;37919;:15;37927:6;37919:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;37901:7;:15;37909:6;37901:15;;;;;;;;;;;;;;;:46;;;;37976:36;37996:7;:15;;;37976:7;:15;37984:6;37976:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;37958:7;:15;37966:6;37958:15;;;;;;;;;;;;;;;:54;;;;38044:47;38067:7;:23;;;38044:7;:18;38052:9;38044:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;38023:7;:18;38031:9;38023:18;;;;;;;;;;;;;;;:68;;;;38123:47;38146:7;:23;;;38123:7;:18;38131:9;38123:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;38102:7;:18;38110:9;38102:18;;;;;;;;;;;;;;;:68;;;;38189:58;38210:7;:17;;;38228:7;:18;;;38189:20;:58::i;:::-;38258:69;38270:7;:12;;;38284:7;:13;;;38299:7;:12;;;38313:7;:13;;;38258:11;:69::i;:::-;38360:9;38343:52;;38352:6;38343:52;;;38371:7;:23;;;38343:52;;;;;;;;;;;;;;;;;;37718:685;;;;;:::o;42925:209::-;42979:15;;42969:7;:25;;;;43016:16;;43005:8;:27;;;;43058:20;;43043:12;:35;;;;43105:21;;43089:13;:37;;;;42925:209::o;41803:154::-;41867:7;41894:55;41933:5;41894:20;41906:7;;41894;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;41887:62;;41803:154;;;:::o;41969:156::-;42034:7;42061:56;42101:5;42061:21;42073:8;;42061:7;:11;;:21;;;;:::i;:::-;:25;;:56;;;;:::i;:::-;42054:63;;41969:156;;;:::o;42137:164::-;42206:7;42233:60;42277:5;42233:25;42245:12;;42233:7;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;42226:67;;42137:164;;;:::o;42313:166::-;42383:7;42410:61;42455:5;42410:26;42422:13;;42410:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;42403:68;;42313:166;;;:::o;40676:690::-;40765:19;40788:10;:8;:10::i;:::-;40765:33;;40855:18;40876:27;40891:11;40876:10;:14;;:27;;;;:::i;:::-;40855:48;;40939:38;40966:10;40939:7;:22;40955:4;40939:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;40914:7;:22;40930:4;40914:22;;;;;;;;;;;;;;;:63;;;;40991:11;:26;41011:4;40991:26;;;;;;;;;;;;;;;;;;;;;;;;;40988:107;;;41057:38;41084:10;41057:7;:22;41073:4;41057:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;41032:7;:22;41048:4;41032:22;;;;;;;;;;;;;;;:63;;;;40988:107;41144:19;41166:28;41182:11;41166;:15;;:28;;;;:::i;:::-;41144:50;;41224:33;41245:11;41224:7;:16;41232:7;:5;:7::i;:::-;41224:16;;;;;;;;;;;;;;;;:20;;:33;;;;:::i;:::-;41205:7;:16;41213:7;:5;:7::i;:::-;41205:16;;;;;;;;;;;;;;;:52;;;;41271:11;:20;41283:7;:5;:7::i;:::-;41271:20;;;;;;;;;;;;;;;;;;;;;;;;;41268:90;;;41325:33;41346:11;41325:7;:16;41333:7;:5;:7::i;:::-;41325:16;;;;;;;;;;;;;;;;:20;;:33;;;;:::i;:::-;41306:7;:16;41314:7;:5;:7::i;:::-;41306:16;;;;;;;;;;;;;;;:52;;;;41268:90;40676:690;;;;;:::o;38411:274::-;38519:28;38541:5;38519:17;38531:4;38519:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;38509:7;:38;;;;38571:20;38586:4;38571:10;;:14;;:20;;;;:::i;:::-;38558:10;:33;;;;38616:22;38632:5;38616:11;;:15;;:22;;;;:::i;:::-;38602:11;:36;;;;38659:18;38671:5;38659:7;;:11;;:18;;;;:::i;:::-;38649:7;:28;;;;38411:274;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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