ETH Price: $2,554.31 (+3.70%)

Token

Quillion (QLN)
 

Overview

Max Total Supply

1,000,000,000 QLN

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
885,322.293 QLN

Value
$0.00
0x48782969cccefd1b81e15e6176a56c257e3e71df
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:
Quillion

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-22
*/

pragma solidity ^0.8.7;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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;
    }
}

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

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


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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * 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 ()  {
        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 = block.timestamp + 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( block.timestamp > _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 Quillion is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    bool public pause = true;

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

    string private _name = "Quillion";
    string private _symbol = "QLN";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 1;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 50000  * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 50000  * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor ()  {
        _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 deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return 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 _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
        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 setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

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

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");


        if ( pause && from != owner() ) revert ( "Contract Paused");
        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }
    
    
    function pauseToggle () public onlyOwner {
        
        pause = !pause;
    }

    //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 {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }


    

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseToggle","outputs":[],"stateMutability":"nonpayable","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":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"totalFees","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"}]

60c06040526001600360006101000a81548160ff021916908315150217905550670de0b6b3a7640000600a55600a546000196200003d9190620007fe565b6000196200004c91906200074f565b600b556040518060400160405280600881526020017f5175696c6c696f6e000000000000000000000000000000000000000000000000815250600d90805190602001906200009c929190620005ea565b506040518060400160405280600381526020017f514c4e0000000000000000000000000000000000000000000000000000000000815250600e9080519060200190620000ea929190620005ea565b506009600f60006101000a81548160ff021916908360ff160217905550600060105560105460115560016012556012546013556001601460016101000a81548160ff021916908315150217905550652d79883d2000601555652d79883d20006016553480156200015957600080fd5b5060006200016c620005b960201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b546004600062000221620005b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002bf57600080fd5b505afa158015620002d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fa9190620006b1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035d57600080fd5b505afa15801562000372573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003989190620006b1565b6040518363ffffffff1660e01b8152600401620003b792919062000705565b602060405180830381600087803b158015620003d257600080fd5b505af1158015620003e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040d9190620006b1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060016007600062000490620005c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000549620005b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a54604051620005aa919062000732565b60405180910390a350620008e2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005f890620007c8565b90600052602060002090601f0160209004810192826200061c576000855562000668565b82601f106200063757805160ff191683800117855562000668565b8280016001018555821562000668579182015b82811115620006675782518255916020019190600101906200064a565b5b5090506200067791906200067b565b5090565b5b80821115620006965760008160009055506001016200067c565b5090565b600081519050620006ab81620008c8565b92915050565b600060208284031215620006ca57620006c9620008c3565b5b6000620006da848285016200069a565b91505092915050565b620006ee816200078a565b82525050565b620006ff81620007be565b82525050565b60006040820190506200071c6000830185620006e3565b6200072b6020830184620006e3565b9392505050565b6000602082019050620007496000830184620006f4565b92915050565b60006200075c82620007be565b91506200076983620007be565b9250828210156200077f576200077e62000836565b5b828203905092915050565b600062000797826200079e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620007e157607f821691505b60208210811415620007f857620007f762000894565b5b50919050565b60006200080b82620007be565b91506200081883620007be565b9250826200082b576200082a62000865565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620008d3816200078a565b8114620008df57600080fd5b50565b60805160601c60a05160601c6156b0620009386000396000818161131f0152612933015260008181610a9c0152818161354a0152818161363a01528181613661015281816136fd015261372401526156b06000f3fe6080604052600436106102345760003560e01c80636bc87c3a1161012e578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb14610860578063dd46706414610889578063dd62ed3e146108b2578063ea2f0b37146108ef578063f2fde38b146109185761023b565b8063a457c2d71461077b578063a69df4b5146107b8578063a9059cbb146107cf578063b6c523241461080c578063c49b9a80146108375761023b565b80638456cb59116100f25780638456cb591461069457806388f82020146106bf5780638da5cb5b146106fc5780638ee88c531461072757806395d89b41146107505761023b565b80636bc87c3a146105d357806370a08231146105fe578063715018a61461063b5780637d1db4a514610652578063834307d91461067d5761023b565b80633685d419116101bc5780634549b039116101805780634549b039146104da57806349bd5a5e146105175780634a74bb021461054257806352390c021461056d5780635342acb4146105965761023b565b80633685d419146103f757806339509351146104205780633b124fe71461045d5780633bd5d17314610488578063437823ec146104b15761023b565b80631694505e116102035780631694505e146102fc57806318160ddd1461032757806323b872dd146103525780632d8381191461038f578063313ce567146103cc5761023b565b8063061c82d01461024057806306fdde0314610269578063095ea7b31461029457806313114a9d146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906145c2565b610941565b005b34801561027557600080fd5b5061027e6109e0565b60405161028b9190614a9f565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b69190614555565b610a72565b6040516102c89190614a69565b60405180910390f35b3480156102dd57600080fd5b506102e6610a90565b6040516102f39190614ce1565b60405180910390f35b34801561030857600080fd5b50610311610a9a565b60405161031e9190614a84565b60405180910390f35b34801561033357600080fd5b5061033c610abe565b6040516103499190614ce1565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190614502565b610ac8565b6040516103869190614a69565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b191906145c2565b610ba1565b6040516103c39190614ce1565b60405180910390f35b3480156103d857600080fd5b506103e1610c0f565b6040516103ee9190614d8d565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190614468565b610c26565b005b34801561042c57600080fd5b5061044760048036038101906104429190614555565b610f75565b6040516104549190614a69565b60405180910390f35b34801561046957600080fd5b50610472611028565b60405161047f9190614ce1565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906145c2565b61102e565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190614468565b6111a9565b005b3480156104e657600080fd5b5061050160048036038101906104fc91906145ef565b611299565b60405161050e9190614ce1565b60405180910390f35b34801561052357600080fd5b5061052c61131d565b60405161053991906149ed565b60405180910390f35b34801561054e57600080fd5b50610557611341565b6040516105649190614a69565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190614468565b611354565b005b3480156105a257600080fd5b506105bd60048036038101906105b89190614468565b611608565b6040516105ca9190614a69565b60405180910390f35b3480156105df57600080fd5b506105e861165e565b6040516105f59190614ce1565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190614468565b611664565b6040516106329190614ce1565b60405180910390f35b34801561064757600080fd5b5061065061174f565b005b34801561065e57600080fd5b506106676118a2565b6040516106749190614ce1565b60405180910390f35b34801561068957600080fd5b506106926118a8565b005b3480156106a057600080fd5b506106a9611969565b6040516106b69190614a69565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190614468565b61197c565b6040516106f39190614a69565b60405180910390f35b34801561070857600080fd5b506107116119d2565b60405161071e91906149ed565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906145c2565b6119fb565b005b34801561075c57600080fd5b50610765611a9a565b6040516107729190614a9f565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190614555565b611b2c565b6040516107af9190614a69565b60405180910390f35b3480156107c457600080fd5b506107cd611bf9565b005b3480156107db57600080fd5b506107f660048036038101906107f19190614555565b611dcd565b6040516108039190614a69565b60405180910390f35b34801561081857600080fd5b50610821611deb565b60405161082e9190614ce1565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190614595565b611df5565b005b34801561086c57600080fd5b50610887600480360381019061088291906145c2565b611ede565b005b34801561089557600080fd5b506108b060048036038101906108ab91906145c2565b611fa4565b005b3480156108be57600080fd5b506108d960048036038101906108d491906144c2565b61216b565b6040516108e69190614ce1565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190614468565b6121f2565b005b34801561092457600080fd5b5061093f600480360381019061093a9190614468565b6122e2565b005b6109496124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90614be1565b60405180910390fd5b8060108190555050565b6060600d80546109ef90614fe2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b90614fe2565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a86610a7f6124a4565b84846124ac565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b6000610ad5848484612677565b610b9684610ae16124a4565b610b918560405180606001604052806028815260200161562e60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b476124a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739092919063ffffffff16565b6124ac565b600190509392505050565b6000600b54821115610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614ae1565b60405180910390fd5b6000610bf2612ad7565b9050610c078184612b0290919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b610c2e6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290614be1565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90614b61565b60405180910390fd5b60005b600980549050811015610f71578173ffffffffffffffffffffffffffffffffffffffff1660098281548110610d8257610d81615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f5e5760096001600980549050610ddd9190614ede565b81548110610dee57610ded615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660098281548110610e2d57610e2c615119565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009805480610f2457610f236150ea565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610f71565b8080610f6990615014565b915050610d4a565b5050565b600061101e610f826124a4565b846110198560066000610f936124a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b6124ac565b6001905092915050565b60105481565b60006110386124a4565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614c81565b60405180910390fd5b60006110d283612baa565b5050505050905061112b81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061118381600b54612c0690919063ffffffff16565b600b8190555061119e83600c54612b4c90919063ffffffff16565b600c81905550505050565b6111b16124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590614be1565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a548311156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614b81565b60405180910390fd5b816113005760006112f084612baa565b5050505050905080915050611317565b600061130b84612baa565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601460019054906101000a900460ff1681565b61135c6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090614be1565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614b61565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561154a57611506600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba1565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116ff57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061174a565b611747600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba1565b90505b919050565b6117576124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90614be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6118b06124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614be1565b60405180910390fd5b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600360009054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a036124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790614be1565b60405180910390fd5b8060128190555050565b6060600e8054611aa990614fe2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad590614fe2565b8015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b6000611bef611b396124a4565b84611bea856040518060600160405280602581526020016156566025913960066000611b636124a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739092919063ffffffff16565b6124ac565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614cc1565b60405180910390fd5b6002544211611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614c61565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611de1611dda6124a4565b8484612677565b6001905092915050565b6000600254905090565b611dfd6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190614be1565b60405180910390fd5b80601460016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611ed39190614a69565b60405180910390a150565b611ee66124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90614be1565b60405180910390fd5b611f9b6064611f8d83600a54612c5090919063ffffffff16565b612b0290919063ffffffff16565b60158190555050565b611fac6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090614be1565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080426120e79190614dfd565b600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121fa6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90614be1565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6122ea6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90614b01565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614b21565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161266a9190614ce1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126de90614c21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90614ac1565b60405180910390fd5b6000811161279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279190614c01565b60405180910390fd5b6127a26119d2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561281057506127e06119d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561285b5760155481111561285a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285190614ba1565b60405180910390fd5b5b600360009054906101000a900460ff1680156128aa575061287a6119d2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e190614ca1565b60405180910390fd5b60006128f530611664565b905060155481106129065760155490505b6000601654821015905080801561292a5750601460009054906101000a900460ff16155b801561298257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561299a5750601460019054906101000a900460ff165b156129ae5760165491506129ad82612ccb565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a555750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a5f57600090505b612a6b86868684612da1565b505050505050565b6000838311158290612abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab29190614a9f565b60405180910390fd5b5060008385612aca9190614ede565b9050809150509392505050565b6000806000612ae46130b2565b91509150612afb8183612b0290919063ffffffff16565b9250505090565b6000612b4483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613365565b905092915050565b6000808284612b5b9190614dfd565b905083811015612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790614b41565b60405180910390fd5b8091505092915050565b6000806000806000806000806000612bc18a6133c8565b9250925092506000806000612bdf8d8686612bda612ad7565b613422565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000612c4883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a73565b905092915050565b600080831415612c635760009050612cc5565b60008284612c719190614e84565b9050828482612c809190614e53565b14612cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb790614bc1565b60405180910390fd5b809150505b92915050565b6001601460006101000a81548160ff0219169083151502179055506000612cfc600283612b0290919063ffffffff16565b90506000612d138284612c0690919063ffffffff16565b90506000479050612d23836134ab565b6000612d388247612c0690919063ffffffff16565b9050612d4483826136f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612d7793929190614d56565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b80612daf57612dae6137e7565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e525750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e6757612e6284848461382a565b61309e565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f0a5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f1f57612f1a848484613a8a565b61309d565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612fc35750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd857612fd3848484613cea565b61309c565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561307a5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561308f5761308a848484613eb5565b61309b565b61309a848484613cea565b5b5b5b5b806130ac576130ab6141aa565b5b50505050565b6000806000600b5490506000600a54905060005b600980549050811015613328578260046000600984815481106130ec576130eb615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806131da575081600560006009848154811061317257613171615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156131f157600b54600a5494509450505050613361565b613281600460006009848154811061320c5761320b615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612c0690919063ffffffff16565b9250613313600560006009848154811061329e5761329d615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612c0690919063ffffffff16565b9150808061332090615014565b9150506130c6565b50613340600a54600b54612b0290919063ffffffff16565b82101561335857600b54600a54935093505050613361565b81819350935050505b9091565b600080831182906133ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a39190614a9f565b60405180910390fd5b50600083856133bb9190614e53565b9050809150509392505050565b6000806000806133d7856141be565b905060006133e4866141ef565b9050600061340d826133ff858a612c0690919063ffffffff16565b612c0690919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061343b8589612c5090919063ffffffff16565b905060006134528689612c5090919063ffffffff16565b905060006134698789612c5090919063ffffffff16565b90506000613492826134848587612c0690919063ffffffff16565b612c0690919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600267ffffffffffffffff8111156134c8576134c7615148565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d615119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135ae57600080fd5b505afa1580156135c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e69190614495565b816001815181106135fa576135f9615119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365f307f0000000000000000000000000000000000000000000000000000000000000000846124ac565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136c1959493929190614cfc565b600060405180830381600087803b1580156136db57600080fd5b505af11580156136ef573d6000803e3d6000fd5b505050505050565b613722307f0000000000000000000000000000000000000000000000000000000000000000846124ac565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061376c6119d2565b426040518863ffffffff1660e01b815260040161378e96959493929190614a08565b6060604051808303818588803b1580156137a757600080fd5b505af11580156137bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137e0919061462f565b5050505050565b60006010541480156137fb57506000601254145b1561380557613828565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061383c87612baa565b95509550955095509550955061389a87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061392f86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139c485600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a1081614220565b613a1a84836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613a779190614ce1565b60405180910390a3505050505050505050565b600080600080600080613a9c87612baa565b955095509550955095509550613afa86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b8f83600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c2485600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c7081614220565b613c7a84836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613cd79190614ce1565b60405180910390a3505050505050505050565b600080600080600080613cfc87612baa565b955095509550955095509550613d5a86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613def85600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e3b81614220565b613e4584836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613ea29190614ce1565b60405180910390a3505050505050505050565b600080600080600080613ec787612baa565b955095509550955095509550613f2587600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fba86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061404f83600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140e485600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413081614220565b61413a84836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516141979190614ce1565b60405180910390a3505050505050505050565b601154601081905550601354601281905550565b60006141e860646141da60105485612c5090919063ffffffff16565b612b0290919063ffffffff16565b9050919050565b6000614219606461420b60125485612c5090919063ffffffff16565b612b0290919063ffffffff16565b9050919050565b600061422a612ad7565b905060006142418284612c5090919063ffffffff16565b905061429581600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156143c05761437c83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6143da82600b54612c0690919063ffffffff16565b600b819055506143f581600c54612b4c90919063ffffffff16565b600c819055505050565b60008135905061440e816155e8565b92915050565b600081519050614423816155e8565b92915050565b600081359050614438816155ff565b92915050565b60008135905061444d81615616565b92915050565b60008151905061446281615616565b92915050565b60006020828403121561447e5761447d615177565b5b600061448c848285016143ff565b91505092915050565b6000602082840312156144ab576144aa615177565b5b60006144b984828501614414565b91505092915050565b600080604083850312156144d9576144d8615177565b5b60006144e7858286016143ff565b92505060206144f8858286016143ff565b9150509250929050565b60008060006060848603121561451b5761451a615177565b5b6000614529868287016143ff565b935050602061453a868287016143ff565b925050604061454b8682870161443e565b9150509250925092565b6000806040838503121561456c5761456b615177565b5b600061457a858286016143ff565b925050602061458b8582860161443e565b9150509250929050565b6000602082840312156145ab576145aa615177565b5b60006145b984828501614429565b91505092915050565b6000602082840312156145d8576145d7615177565b5b60006145e68482850161443e565b91505092915050565b6000806040838503121561460657614605615177565b5b60006146148582860161443e565b925050602061462585828601614429565b9150509250929050565b60008060006060848603121561464857614647615177565b5b600061465686828701614453565b935050602061466786828701614453565b925050604061467886828701614453565b9150509250925092565b600061468e838361469a565b60208301905092915050565b6146a381614f12565b82525050565b6146b281614f12565b82525050565b60006146c382614db8565b6146cd8185614ddb565b93506146d883614da8565b8060005b838110156147095781516146f08882614682565b97506146fb83614dce565b9250506001810190506146dc565b5085935050505092915050565b61471f81614f24565b82525050565b61472e81614f67565b82525050565b61473d81614f79565b82525050565b600061474e82614dc3565b6147588185614dec565b9350614768818560208601614faf565b6147718161517c565b840191505092915050565b6000614789602383614dec565b91506147948261518d565b604082019050919050565b60006147ac602a83614dec565b91506147b7826151dc565b604082019050919050565b60006147cf602683614dec565b91506147da8261522b565b604082019050919050565b60006147f2602283614dec565b91506147fd8261527a565b604082019050919050565b6000614815601b83614dec565b9150614820826152c9565b602082019050919050565b6000614838601b83614dec565b9150614843826152f2565b602082019050919050565b600061485b601f83614dec565b91506148668261531b565b602082019050919050565b600061487e602883614dec565b915061488982615344565b604082019050919050565b60006148a1602183614dec565b91506148ac82615393565b604082019050919050565b60006148c4602083614dec565b91506148cf826153e2565b602082019050919050565b60006148e7602983614dec565b91506148f28261540b565b604082019050919050565b600061490a602583614dec565b91506149158261545a565b604082019050919050565b600061492d602483614dec565b9150614938826154a9565b604082019050919050565b6000614950601f83614dec565b915061495b826154f8565b602082019050919050565b6000614973602c83614dec565b915061497e82615521565b604082019050919050565b6000614996600f83614dec565b91506149a182615570565b602082019050919050565b60006149b9602383614dec565b91506149c482615599565b604082019050919050565b6149d881614f50565b82525050565b6149e781614f5a565b82525050565b6000602082019050614a0260008301846146a9565b92915050565b600060c082019050614a1d60008301896146a9565b614a2a60208301886149cf565b614a376040830187614734565b614a446060830186614734565b614a5160808301856146a9565b614a5e60a08301846149cf565b979650505050505050565b6000602082019050614a7e6000830184614716565b92915050565b6000602082019050614a996000830184614725565b92915050565b60006020820190508181036000830152614ab98184614743565b905092915050565b60006020820190508181036000830152614ada8161477c565b9050919050565b60006020820190508181036000830152614afa8161479f565b9050919050565b60006020820190508181036000830152614b1a816147c2565b9050919050565b60006020820190508181036000830152614b3a816147e5565b9050919050565b60006020820190508181036000830152614b5a81614808565b9050919050565b60006020820190508181036000830152614b7a8161482b565b9050919050565b60006020820190508181036000830152614b9a8161484e565b9050919050565b60006020820190508181036000830152614bba81614871565b9050919050565b60006020820190508181036000830152614bda81614894565b9050919050565b60006020820190508181036000830152614bfa816148b7565b9050919050565b60006020820190508181036000830152614c1a816148da565b9050919050565b60006020820190508181036000830152614c3a816148fd565b9050919050565b60006020820190508181036000830152614c5a81614920565b9050919050565b60006020820190508181036000830152614c7a81614943565b9050919050565b60006020820190508181036000830152614c9a81614966565b9050919050565b60006020820190508181036000830152614cba81614989565b9050919050565b60006020820190508181036000830152614cda816149ac565b9050919050565b6000602082019050614cf660008301846149cf565b92915050565b600060a082019050614d1160008301886149cf565b614d1e6020830187614734565b8181036040830152614d3081866146b8565b9050614d3f60608301856146a9565b614d4c60808301846149cf565b9695505050505050565b6000606082019050614d6b60008301866149cf565b614d7860208301856149cf565b614d8560408301846149cf565b949350505050565b6000602082019050614da260008301846149de565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614e0882614f50565b9150614e1383614f50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e4857614e4761505d565b5b828201905092915050565b6000614e5e82614f50565b9150614e6983614f50565b925082614e7957614e7861508c565b5b828204905092915050565b6000614e8f82614f50565b9150614e9a83614f50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ed357614ed261505d565b5b828202905092915050565b6000614ee982614f50565b9150614ef483614f50565b925082821015614f0757614f0661505d565b5b828203905092915050565b6000614f1d82614f30565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614f7282614f8b565b9050919050565b6000614f8482614f50565b9050919050565b6000614f9682614f9d565b9050919050565b6000614fa882614f30565b9050919050565b60005b83811015614fcd578082015181840152602081019050614fb2565b83811115614fdc576000848401525b50505050565b60006002820490506001821680614ffa57607f821691505b6020821081141561500e5761500d6150bb565b5b50919050565b600061501f82614f50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150525761505161505d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b7f436f6e7472616374205061757365640000000000000000000000000000000000600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b6155f181614f12565b81146155fc57600080fd5b50565b61560881614f24565b811461561357600080fd5b50565b61561f81614f50565b811461562a57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f90a9a11a9d03012136064de3637743482f6e073923a5b8c447f212a5cd513064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636bc87c3a1161012e578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb14610860578063dd46706414610889578063dd62ed3e146108b2578063ea2f0b37146108ef578063f2fde38b146109185761023b565b8063a457c2d71461077b578063a69df4b5146107b8578063a9059cbb146107cf578063b6c523241461080c578063c49b9a80146108375761023b565b80638456cb59116100f25780638456cb591461069457806388f82020146106bf5780638da5cb5b146106fc5780638ee88c531461072757806395d89b41146107505761023b565b80636bc87c3a146105d357806370a08231146105fe578063715018a61461063b5780637d1db4a514610652578063834307d91461067d5761023b565b80633685d419116101bc5780634549b039116101805780634549b039146104da57806349bd5a5e146105175780634a74bb021461054257806352390c021461056d5780635342acb4146105965761023b565b80633685d419146103f757806339509351146104205780633b124fe71461045d5780633bd5d17314610488578063437823ec146104b15761023b565b80631694505e116102035780631694505e146102fc57806318160ddd1461032757806323b872dd146103525780632d8381191461038f578063313ce567146103cc5761023b565b8063061c82d01461024057806306fdde0314610269578063095ea7b31461029457806313114a9d146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906145c2565b610941565b005b34801561027557600080fd5b5061027e6109e0565b60405161028b9190614a9f565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b69190614555565b610a72565b6040516102c89190614a69565b60405180910390f35b3480156102dd57600080fd5b506102e6610a90565b6040516102f39190614ce1565b60405180910390f35b34801561030857600080fd5b50610311610a9a565b60405161031e9190614a84565b60405180910390f35b34801561033357600080fd5b5061033c610abe565b6040516103499190614ce1565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190614502565b610ac8565b6040516103869190614a69565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b191906145c2565b610ba1565b6040516103c39190614ce1565b60405180910390f35b3480156103d857600080fd5b506103e1610c0f565b6040516103ee9190614d8d565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190614468565b610c26565b005b34801561042c57600080fd5b5061044760048036038101906104429190614555565b610f75565b6040516104549190614a69565b60405180910390f35b34801561046957600080fd5b50610472611028565b60405161047f9190614ce1565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906145c2565b61102e565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190614468565b6111a9565b005b3480156104e657600080fd5b5061050160048036038101906104fc91906145ef565b611299565b60405161050e9190614ce1565b60405180910390f35b34801561052357600080fd5b5061052c61131d565b60405161053991906149ed565b60405180910390f35b34801561054e57600080fd5b50610557611341565b6040516105649190614a69565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190614468565b611354565b005b3480156105a257600080fd5b506105bd60048036038101906105b89190614468565b611608565b6040516105ca9190614a69565b60405180910390f35b3480156105df57600080fd5b506105e861165e565b6040516105f59190614ce1565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190614468565b611664565b6040516106329190614ce1565b60405180910390f35b34801561064757600080fd5b5061065061174f565b005b34801561065e57600080fd5b506106676118a2565b6040516106749190614ce1565b60405180910390f35b34801561068957600080fd5b506106926118a8565b005b3480156106a057600080fd5b506106a9611969565b6040516106b69190614a69565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190614468565b61197c565b6040516106f39190614a69565b60405180910390f35b34801561070857600080fd5b506107116119d2565b60405161071e91906149ed565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906145c2565b6119fb565b005b34801561075c57600080fd5b50610765611a9a565b6040516107729190614a9f565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190614555565b611b2c565b6040516107af9190614a69565b60405180910390f35b3480156107c457600080fd5b506107cd611bf9565b005b3480156107db57600080fd5b506107f660048036038101906107f19190614555565b611dcd565b6040516108039190614a69565b60405180910390f35b34801561081857600080fd5b50610821611deb565b60405161082e9190614ce1565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190614595565b611df5565b005b34801561086c57600080fd5b50610887600480360381019061088291906145c2565b611ede565b005b34801561089557600080fd5b506108b060048036038101906108ab91906145c2565b611fa4565b005b3480156108be57600080fd5b506108d960048036038101906108d491906144c2565b61216b565b6040516108e69190614ce1565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190614468565b6121f2565b005b34801561092457600080fd5b5061093f600480360381019061093a9190614468565b6122e2565b005b6109496124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90614be1565b60405180910390fd5b8060108190555050565b6060600d80546109ef90614fe2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b90614fe2565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a86610a7f6124a4565b84846124ac565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b6000610ad5848484612677565b610b9684610ae16124a4565b610b918560405180606001604052806028815260200161562e60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b476124a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739092919063ffffffff16565b6124ac565b600190509392505050565b6000600b54821115610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614ae1565b60405180910390fd5b6000610bf2612ad7565b9050610c078184612b0290919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b610c2e6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290614be1565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90614b61565b60405180910390fd5b60005b600980549050811015610f71578173ffffffffffffffffffffffffffffffffffffffff1660098281548110610d8257610d81615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f5e5760096001600980549050610ddd9190614ede565b81548110610dee57610ded615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660098281548110610e2d57610e2c615119565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009805480610f2457610f236150ea565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610f71565b8080610f6990615014565b915050610d4a565b5050565b600061101e610f826124a4565b846110198560066000610f936124a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b6124ac565b6001905092915050565b60105481565b60006110386124a4565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614c81565b60405180910390fd5b60006110d283612baa565b5050505050905061112b81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061118381600b54612c0690919063ffffffff16565b600b8190555061119e83600c54612b4c90919063ffffffff16565b600c81905550505050565b6111b16124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590614be1565b60405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a548311156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614b81565b60405180910390fd5b816113005760006112f084612baa565b5050505050905080915050611317565b600061130b84612baa565b50505050915050809150505b92915050565b7f00000000000000000000000066b3d219b17d11e7f2d71f739f04ad83bd2e50a881565b601460019054906101000a900460ff1681565b61135c6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090614be1565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90614b61565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561154a57611506600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba1565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116ff57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061174a565b611747600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ba1565b90505b919050565b6117576124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90614be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6118b06124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614be1565b60405180910390fd5b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600360009054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a036124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790614be1565b60405180910390fd5b8060128190555050565b6060600e8054611aa990614fe2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad590614fe2565b8015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b6000611bef611b396124a4565b84611bea856040518060600160405280602581526020016156566025913960066000611b636124a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739092919063ffffffff16565b6124ac565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614cc1565b60405180910390fd5b6002544211611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614c61565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611de1611dda6124a4565b8484612677565b6001905092915050565b6000600254905090565b611dfd6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190614be1565b60405180910390fd5b80601460016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611ed39190614a69565b60405180910390a150565b611ee66124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90614be1565b60405180910390fd5b611f9b6064611f8d83600a54612c5090919063ffffffff16565b612b0290919063ffffffff16565b60158190555050565b611fac6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090614be1565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080426120e79190614dfd565b600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6121fa6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90614be1565b60405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6122ea6124a4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90614b01565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614b21565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161266a9190614ce1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126de90614c21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90614ac1565b60405180910390fd5b6000811161279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279190614c01565b60405180910390fd5b6127a26119d2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561281057506127e06119d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561285b5760155481111561285a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285190614ba1565b60405180910390fd5b5b600360009054906101000a900460ff1680156128aa575061287a6119d2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e190614ca1565b60405180910390fd5b60006128f530611664565b905060155481106129065760155490505b6000601654821015905080801561292a5750601460009054906101000a900460ff16155b801561298257507f00000000000000000000000066b3d219b17d11e7f2d71f739f04ad83bd2e50a873ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561299a5750601460019054906101000a900460ff165b156129ae5760165491506129ad82612ccb565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a555750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a5f57600090505b612a6b86868684612da1565b505050505050565b6000838311158290612abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab29190614a9f565b60405180910390fd5b5060008385612aca9190614ede565b9050809150509392505050565b6000806000612ae46130b2565b91509150612afb8183612b0290919063ffffffff16565b9250505090565b6000612b4483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613365565b905092915050565b6000808284612b5b9190614dfd565b905083811015612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790614b41565b60405180910390fd5b8091505092915050565b6000806000806000806000806000612bc18a6133c8565b9250925092506000806000612bdf8d8686612bda612ad7565b613422565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000612c4883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a73565b905092915050565b600080831415612c635760009050612cc5565b60008284612c719190614e84565b9050828482612c809190614e53565b14612cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb790614bc1565b60405180910390fd5b809150505b92915050565b6001601460006101000a81548160ff0219169083151502179055506000612cfc600283612b0290919063ffffffff16565b90506000612d138284612c0690919063ffffffff16565b90506000479050612d23836134ab565b6000612d388247612c0690919063ffffffff16565b9050612d4483826136f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051612d7793929190614d56565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b80612daf57612dae6137e7565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e525750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e6757612e6284848461382a565b61309e565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612f0a5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f1f57612f1a848484613a8a565b61309d565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612fc35750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd857612fd3848484613cea565b61309c565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561307a5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561308f5761308a848484613eb5565b61309b565b61309a848484613cea565b5b5b5b5b806130ac576130ab6141aa565b5b50505050565b6000806000600b5490506000600a54905060005b600980549050811015613328578260046000600984815481106130ec576130eb615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806131da575081600560006009848154811061317257613171615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156131f157600b54600a5494509450505050613361565b613281600460006009848154811061320c5761320b615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484612c0690919063ffffffff16565b9250613313600560006009848154811061329e5761329d615119565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612c0690919063ffffffff16565b9150808061332090615014565b9150506130c6565b50613340600a54600b54612b0290919063ffffffff16565b82101561335857600b54600a54935093505050613361565b81819350935050505b9091565b600080831182906133ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a39190614a9f565b60405180910390fd5b50600083856133bb9190614e53565b9050809150509392505050565b6000806000806133d7856141be565b905060006133e4866141ef565b9050600061340d826133ff858a612c0690919063ffffffff16565b612c0690919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061343b8589612c5090919063ffffffff16565b905060006134528689612c5090919063ffffffff16565b905060006134698789612c5090919063ffffffff16565b90506000613492826134848587612c0690919063ffffffff16565b612c0690919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600267ffffffffffffffff8111156134c8576134c7615148565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d615119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135ae57600080fd5b505afa1580156135c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e69190614495565b816001815181106135fa576135f9615119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124ac565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136c1959493929190614cfc565b600060405180830381600087803b1580156136db57600080fd5b505af11580156136ef573d6000803e3d6000fd5b505050505050565b613722307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124ac565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061376c6119d2565b426040518863ffffffff1660e01b815260040161378e96959493929190614a08565b6060604051808303818588803b1580156137a757600080fd5b505af11580156137bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137e0919061462f565b5050505050565b60006010541480156137fb57506000601254145b1561380557613828565b601054601181905550601254601381905550600060108190555060006012819055505b565b60008060008060008061383c87612baa565b95509550955095509550955061389a87600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061392f86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139c485600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a1081614220565b613a1a84836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613a779190614ce1565b60405180910390a3505050505050505050565b600080600080600080613a9c87612baa565b955095509550955095509550613afa86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b8f83600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c2485600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c7081614220565b613c7a84836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613cd79190614ce1565b60405180910390a3505050505050505050565b600080600080600080613cfc87612baa565b955095509550955095509550613d5a86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613def85600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e3b81614220565b613e4584836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613ea29190614ce1565b60405180910390a3505050505050505050565b600080600080600080613ec787612baa565b955095509550955095509550613f2587600560008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613fba86600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c0690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061404f83600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140e485600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413081614220565b61413a84836143c5565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516141979190614ce1565b60405180910390a3505050505050505050565b601154601081905550601354601281905550565b60006141e860646141da60105485612c5090919063ffffffff16565b612b0290919063ffffffff16565b9050919050565b6000614219606461420b60125485612c5090919063ffffffff16565b612b0290919063ffffffff16565b9050919050565b600061422a612ad7565b905060006142418284612c5090919063ffffffff16565b905061429581600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156143c05761437c83600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b4c90919063ffffffff16565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6143da82600b54612c0690919063ffffffff16565b600b819055506143f581600c54612b4c90919063ffffffff16565b600c819055505050565b60008135905061440e816155e8565b92915050565b600081519050614423816155e8565b92915050565b600081359050614438816155ff565b92915050565b60008135905061444d81615616565b92915050565b60008151905061446281615616565b92915050565b60006020828403121561447e5761447d615177565b5b600061448c848285016143ff565b91505092915050565b6000602082840312156144ab576144aa615177565b5b60006144b984828501614414565b91505092915050565b600080604083850312156144d9576144d8615177565b5b60006144e7858286016143ff565b92505060206144f8858286016143ff565b9150509250929050565b60008060006060848603121561451b5761451a615177565b5b6000614529868287016143ff565b935050602061453a868287016143ff565b925050604061454b8682870161443e565b9150509250925092565b6000806040838503121561456c5761456b615177565b5b600061457a858286016143ff565b925050602061458b8582860161443e565b9150509250929050565b6000602082840312156145ab576145aa615177565b5b60006145b984828501614429565b91505092915050565b6000602082840312156145d8576145d7615177565b5b60006145e68482850161443e565b91505092915050565b6000806040838503121561460657614605615177565b5b60006146148582860161443e565b925050602061462585828601614429565b9150509250929050565b60008060006060848603121561464857614647615177565b5b600061465686828701614453565b935050602061466786828701614453565b925050604061467886828701614453565b9150509250925092565b600061468e838361469a565b60208301905092915050565b6146a381614f12565b82525050565b6146b281614f12565b82525050565b60006146c382614db8565b6146cd8185614ddb565b93506146d883614da8565b8060005b838110156147095781516146f08882614682565b97506146fb83614dce565b9250506001810190506146dc565b5085935050505092915050565b61471f81614f24565b82525050565b61472e81614f67565b82525050565b61473d81614f79565b82525050565b600061474e82614dc3565b6147588185614dec565b9350614768818560208601614faf565b6147718161517c565b840191505092915050565b6000614789602383614dec565b91506147948261518d565b604082019050919050565b60006147ac602a83614dec565b91506147b7826151dc565b604082019050919050565b60006147cf602683614dec565b91506147da8261522b565b604082019050919050565b60006147f2602283614dec565b91506147fd8261527a565b604082019050919050565b6000614815601b83614dec565b9150614820826152c9565b602082019050919050565b6000614838601b83614dec565b9150614843826152f2565b602082019050919050565b600061485b601f83614dec565b91506148668261531b565b602082019050919050565b600061487e602883614dec565b915061488982615344565b604082019050919050565b60006148a1602183614dec565b91506148ac82615393565b604082019050919050565b60006148c4602083614dec565b91506148cf826153e2565b602082019050919050565b60006148e7602983614dec565b91506148f28261540b565b604082019050919050565b600061490a602583614dec565b91506149158261545a565b604082019050919050565b600061492d602483614dec565b9150614938826154a9565b604082019050919050565b6000614950601f83614dec565b915061495b826154f8565b602082019050919050565b6000614973602c83614dec565b915061497e82615521565b604082019050919050565b6000614996600f83614dec565b91506149a182615570565b602082019050919050565b60006149b9602383614dec565b91506149c482615599565b604082019050919050565b6149d881614f50565b82525050565b6149e781614f5a565b82525050565b6000602082019050614a0260008301846146a9565b92915050565b600060c082019050614a1d60008301896146a9565b614a2a60208301886149cf565b614a376040830187614734565b614a446060830186614734565b614a5160808301856146a9565b614a5e60a08301846149cf565b979650505050505050565b6000602082019050614a7e6000830184614716565b92915050565b6000602082019050614a996000830184614725565b92915050565b60006020820190508181036000830152614ab98184614743565b905092915050565b60006020820190508181036000830152614ada8161477c565b9050919050565b60006020820190508181036000830152614afa8161479f565b9050919050565b60006020820190508181036000830152614b1a816147c2565b9050919050565b60006020820190508181036000830152614b3a816147e5565b9050919050565b60006020820190508181036000830152614b5a81614808565b9050919050565b60006020820190508181036000830152614b7a8161482b565b9050919050565b60006020820190508181036000830152614b9a8161484e565b9050919050565b60006020820190508181036000830152614bba81614871565b9050919050565b60006020820190508181036000830152614bda81614894565b9050919050565b60006020820190508181036000830152614bfa816148b7565b9050919050565b60006020820190508181036000830152614c1a816148da565b9050919050565b60006020820190508181036000830152614c3a816148fd565b9050919050565b60006020820190508181036000830152614c5a81614920565b9050919050565b60006020820190508181036000830152614c7a81614943565b9050919050565b60006020820190508181036000830152614c9a81614966565b9050919050565b60006020820190508181036000830152614cba81614989565b9050919050565b60006020820190508181036000830152614cda816149ac565b9050919050565b6000602082019050614cf660008301846149cf565b92915050565b600060a082019050614d1160008301886149cf565b614d1e6020830187614734565b8181036040830152614d3081866146b8565b9050614d3f60608301856146a9565b614d4c60808301846149cf565b9695505050505050565b6000606082019050614d6b60008301866149cf565b614d7860208301856149cf565b614d8560408301846149cf565b949350505050565b6000602082019050614da260008301846149de565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614e0882614f50565b9150614e1383614f50565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e4857614e4761505d565b5b828201905092915050565b6000614e5e82614f50565b9150614e6983614f50565b925082614e7957614e7861508c565b5b828204905092915050565b6000614e8f82614f50565b9150614e9a83614f50565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ed357614ed261505d565b5b828202905092915050565b6000614ee982614f50565b9150614ef483614f50565b925082821015614f0757614f0661505d565b5b828203905092915050565b6000614f1d82614f30565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614f7282614f8b565b9050919050565b6000614f8482614f50565b9050919050565b6000614f9682614f9d565b9050919050565b6000614fa882614f30565b9050919050565b60005b83811015614fcd578082015181840152602081019050614fb2565b83811115614fdc576000848401525b50505050565b60006002820490506001821680614ffa57607f821691505b6020821081141561500e5761500d6150bb565b5b50919050565b600061501f82614f50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150525761505161505d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b7f436f6e7472616374205061757365640000000000000000000000000000000000600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b6155f181614f12565b81146155fc57600080fd5b50565b61560881614f24565b811461561357600080fd5b50565b61561f81614f50565b811461562a57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f90a9a11a9d03012136064de3637743482f6e073923a5b8c447f212a5cd513064736f6c63430008070033

Deployed Bytecode Sourcemap

25638:18541:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33100:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28035:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28947:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30068:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26624:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28312:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29116:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30992:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28221:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31708:479;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29437:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26436:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30163:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32855:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30548:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26682:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26761:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31253:447;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36997:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26523:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28415:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16208:148;;;;;;;;;;;;;:::i;:::-;;26814:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41487:84;;;;;;;;;;;;;:::i;:::-;;25762:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29940:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15565:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33210:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28126:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29663:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17230:306;;;;;;;;;;;;;:::i;:::-;;28621:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16763:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33513:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33343:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16928:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28796:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32978:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16511:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33100:98;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33184:6:::1;33174:7;:16;;;;33100:98:::0;:::o;28035:83::-;28072:13;28105:5;28098:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28035:83;:::o;28947:161::-;29022:4;29039:39;29048:12;:10;:12::i;:::-;29062:7;29071:6;29039:8;:39::i;:::-;29096:4;29089:11;;28947:161;;;;:::o;30068:87::-;30110:7;30137:10;;30130:17;;30068:87;:::o;26624:51::-;;;:::o;28312:95::-;28365:7;28392;;28385:14;;28312:95;:::o;29116:313::-;29214:4;29231:36;29241:6;29249:9;29260:6;29231:9;:36::i;:::-;29278:121;29287:6;29295:12;:10;:12::i;:::-;29309:89;29347:6;29309:89;;;;;;;;;;;;;;;;;:11;:19;29321:6;29309:19;;;;;;;;;;;;;;;:33;29329:12;:10;:12::i;:::-;29309:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29278:8;:121::i;:::-;29417:4;29410:11;;29116:313;;;;;:::o;30992:253::-;31058:7;31097;;31086;:18;;31078:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31162:19;31185:10;:8;:10::i;:::-;31162:33;;31213:24;31225:11;31213:7;:11;;:24;;;;:::i;:::-;31206:31;;;30992:253;;;:::o;28221:83::-;28262:5;28287:9;;;;;;;;;;;28280:16;;28221:83;:::o;31708:479::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31790:11:::1;:20;31802:7;31790:20;;;;;;;;;;;;;;;;;;;;;;;;;31782:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;31858:9;31853:327;31877:9;:16;;;;31873:1;:20;31853:327;;;31935:7;31919:23;;:9;31929:1;31919:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:23;;;31915:254;;;31978:9;32007:1;31988:9;:16;;;;:20;;;;:::i;:::-;31978:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31963:9;31973:1;31963:12;;;;;;;;:::i;:::-;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32047:1;32028:7;:16;32036:7;32028:16;;;;;;;;;;;;;;;:20;;;;32090:5;32067:11;:20;32079:7;32067:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32114:9;:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;32148:5;;31915:254;31895:3;;;;;:::i;:::-;;;;31853:327;;;;31708:479:::0;:::o;29437:218::-;29525:4;29542:83;29551:12;:10;:12::i;:::-;29565:7;29574:50;29613:10;29574:11;:25;29586:12;:10;:12::i;:::-;29574:25;;;;;;;;;;;;;;;:34;29600:7;29574:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29542:8;:83::i;:::-;29643:4;29636:11;;29437:218;;;;:::o;26436:26::-;;;;:::o;30163:377::-;30215:14;30232:12;:10;:12::i;:::-;30215:29;;30264:11;:19;30276:6;30264:19;;;;;;;;;;;;;;;;;;;;;;;;;30263:20;30255:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;30344:15;30368:19;30379:7;30368:10;:19::i;:::-;30343:44;;;;;;;30416:28;30436:7;30416;:15;30424:6;30416:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30398:7;:15;30406:6;30398:15;;;;;;;;;;;;;;;:46;;;;30465:20;30477:7;30465;;:11;;:20;;;;:::i;:::-;30455:7;:30;;;;30509:23;30524:7;30509:10;;:14;;:23;;;;:::i;:::-;30496:10;:36;;;;30204:336;;30163:377;:::o;32855:111::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32954:4:::1;32924:18;:27;32943:7;32924:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32855:111:::0;:::o;30548:436::-;30638:7;30677;;30666;:18;;30658:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30736:17;30731:246;;30771:15;30795:19;30806:7;30795:10;:19::i;:::-;30770:44;;;;;;;30836:7;30829:14;;;;;30731:246;30878:23;30909:19;30920:7;30909:10;:19::i;:::-;30876:52;;;;;;;30950:15;30943:22;;;30548:436;;;;;:::o;26682:38::-;;;:::o;26761:40::-;;;;;;;;;;;;;:::o;31253:447::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31450:11:::1;:20;31462:7;31450:20;;;;;;;;;;;;;;;;;;;;;;;;;31449:21;31441:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31535:1;31516:7;:16;31524:7;31516:16;;;;;;;;;;;;;;;;:20;31513:108;;;31572:37;31592:7;:16;31600:7;31592:16;;;;;;;;;;;;;;;;31572:19;:37::i;:::-;31553:7;:16;31561:7;31553:16;;;;;;;;;;;;;;;:56;;;;31513:108;31654:4;31631:11;:20;31643:7;31631:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31669:9;31684:7;31669:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31253:447:::0;:::o;36997:123::-;37061:4;37085:18;:27;37104:7;37085:27;;;;;;;;;;;;;;;;;;;;;;;;;37078:34;;36997:123;;;:::o;26523:32::-;;;;:::o;28415:198::-;28481:7;28505:11;:20;28517:7;28505:20;;;;;;;;;;;;;;;;;;;;;;;;;28501:49;;;28534:7;:16;28542:7;28534:16;;;;;;;;;;;;;;;;28527:23;;;;28501:49;28568:37;28588:7;:16;28596:7;28588:16;;;;;;;;;;;;;;;;28568:19;:37::i;:::-;28561:44;;28415:198;;;;:::o;16208:148::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16315:1:::1;16278:40;;16299:6;::::0;::::1;;;;;;;;16278:40;;;;;;;;;;;;16346:1;16329:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16208:148::o:0;26814:44::-;;;;:::o;41487:84::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41558:5:::1;;;;;;;;;;;41557:6;41549:5;;:14;;;;;;;;;;;;;;;;;;41487:84::o:0;25762:24::-;;;;;;;;;;;;;:::o;29940:120::-;30008:4;30032:11;:20;30044:7;30032:20;;;;;;;;;;;;;;;;;;;;;;;;;30025:27;;29940:120;;;:::o;15565:79::-;15603:7;15630:6;;;;;;;;;;;15623:13;;15565:79;:::o;33210:122::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33312:12:::1;33296:13;:28;;;;33210:122:::0;:::o;28126:87::-;28165:13;28198:7;28191:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28126:87;:::o;29663:269::-;29756:4;29773:129;29782:12;:10;:12::i;:::-;29796:7;29805:96;29844:15;29805:96;;;;;;;;;;;;;;;;;:11;:25;29817:12;:10;:12::i;:::-;29805:25;;;;;;;;;;;;;;;:34;29831:7;29805:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29773:8;:129::i;:::-;29920:4;29913:11;;29663:269;;;;:::o;17230:306::-;17300:10;17282:28;;:14;;;;;;;;;;;:28;;;17274:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;17388:9;;17370:15;:27;17361:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17479:14;;;;;;;;;;;17450:44;;17471:6;;;;;;;;;;17450:44;;;;;;;;;;;;17514:14;;;;;;;;;;;17505:6;;:23;;;;;;;;;;;;;;;;;;17230:306::o;28621:167::-;28699:4;28716:42;28726:12;:10;:12::i;:::-;28740:9;28751:6;28716:9;:42::i;:::-;28776:4;28769:11;;28621:167;;;;:::o;16763:89::-;16808:7;16835:9;;16828:16;;16763:89;:::o;33513:171::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33614:8:::1;33590:21;;:32;;;;;;;;;;;;;;;;;;33638:38;33667:8;33638:38;;;;;;:::i;:::-;;;;;;;;33513:171:::0;:::o;33343:162::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33437:60:::1;33481:5;33437:25;33449:12;33437:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;33422:12;:75;;;;33343:162:::0;:::o;16928:226::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17009:6:::1;::::0;::::1;;;;;;;;16992:14;;:23;;;;;;;;;;;;;;;;;;17043:1;17026:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17086:4;17068:15;:22;;;;:::i;:::-;17056:9;:34;;;;17143:1;17106:40;;17127:6;::::0;::::1;;;;;;;;17106:40;;;;;;;;;;;;16928:226:::0;:::o;28796:143::-;28877:7;28904:11;:18;28916:5;28904:18;;;;;;;;;;;;;;;:27;28923:7;28904:27;;;;;;;;;;;;;;;;28897:34;;28796:143;;;;:::o;32978:110::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33075:5:::1;33045:18;:27;33064:7;33045:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;32978:110:::0;:::o;16511:244::-;15787:12;:10;:12::i;:::-;15777:22;;:6;;;;;;;;;;:22;;;15769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16620:1:::1;16600:22;;:8;:22;;;;16592:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16710:8;16681:38;;16702:6;::::0;::::1;;;;;;;;16681:38;;;;;;;;;;;;16739:8;16730:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16511:244:::0;:::o;7972:115::-;8025:15;8068:10;8053:26;;7972:115;:::o;37128:337::-;37238:1;37221:19;;:5;:19;;;;37213:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37319:1;37300:21;;:7;:21;;;;37292:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37403:6;37373:11;:18;37385:5;37373:18;;;;;;;;;;;;;;;:27;37392:7;37373:27;;;;;;;;;;;;;;;:36;;;;37441:7;37425:32;;37434:5;37425:32;;;37450:6;37425:32;;;;;;:::i;:::-;;;;;;;;37128:337;;;:::o;37473:1885::-;37611:1;37595:18;;:4;:18;;;;37587:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37688:1;37674:16;;:2;:16;;;;37666:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37758:1;37749:6;:10;37741:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37827:7;:5;:7::i;:::-;37819:15;;:4;:15;;;;:32;;;;;37844:7;:5;:7::i;:::-;37838:13;;:2;:13;;;;37819:32;37816:125;;;37884:12;;37874:6;:22;;37866:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37816:125;37961:5;;;;;;;;;;;:24;;;;;37978:7;:5;:7::i;:::-;37970:15;;:4;:15;;;;37961:24;37956:59;;;37988:27;;;;;;;;;;:::i;:::-;;;;;;;;37956:59;38308:28;38339:24;38357:4;38339:9;:24::i;:::-;38308:55;;38411:12;;38387:20;:36;38384:112;;38472:12;;38449:35;;38384:112;38516:24;38567:29;;38543:20;:53;;38516:80;;38625:19;:53;;;;;38662:16;;;;;;;;;;;38661:17;38625:53;:91;;;;;38703:13;38695:21;;:4;:21;;;;38625:91;:129;;;;;38733:21;;;;;;;;;;;38625:129;38607:318;;;38804:29;;38781:52;;38877:36;38892:20;38877:14;:36::i;:::-;38607:318;39006:12;39021:4;39006:19;;39133:18;:24;39152:4;39133:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;39161:18;:22;39180:2;39161:22;;;;;;;;;;;;;;;;;;;;;;;;;39133:50;39130:96;;;39209:5;39199:15;;39130:96;39312:38;39327:4;39332:2;39335:6;39342:7;39312:14;:38::i;:::-;37576:1782;;;37473:1885;;;:::o;4382:192::-;4468:7;4501:1;4496;:6;;4504:12;4488:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4528:9;4544:1;4540;:5;;;;:::i;:::-;4528:17;;4565:1;4558:8;;;4382:192;;;;;:::o;35147:163::-;35188:7;35209:15;35226;35245:19;:17;:19::i;:::-;35208:56;;;;35282:20;35294:7;35282;:11;;:20;;;;:::i;:::-;35275:27;;;;35147:163;:::o;5780:132::-;5838:7;5865:39;5869:1;5872;5865:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5858:46;;5780:132;;;;:::o;3479:181::-;3537:7;3557:9;3573:1;3569;:5;;;;:::i;:::-;3557:17;;3598:1;3593;:6;;3585:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3651:1;3644:8;;;3479:181;;;;:::o;33945:419::-;34004:7;34013;34022;34031;34040;34049;34070:23;34095:12;34109:18;34131:20;34143:7;34131:11;:20::i;:::-;34069:82;;;;;;34163:15;34180:23;34205:12;34221:50;34233:7;34242:4;34248:10;34260;:8;:10::i;:::-;34221:11;:50::i;:::-;34162:109;;;;;;34290:7;34299:15;34316:4;34322:15;34339:4;34345:10;34282:74;;;;;;;;;;;;;;;;;;33945:419;;;;;;;:::o;3943:136::-;4001:7;4028:43;4032:1;4035;4028:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4021:50;;3943:136;;;;:::o;4833:471::-;4891:7;5141:1;5136;:6;5132:47;;;5166:1;5159:8;;;;5132:47;5191:9;5207:1;5203;:5;;;;:::i;:::-;5191:17;;5236:1;5231;5227;:5;;;;:::i;:::-;:10;5219:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5295:1;5288:8;;;4833:471;;;;;:::o;39366:985::-;27253:4;27234:16;;:23;;;;;;;;;;;;;;;;;;39502:12:::1;39517:27;39542:1;39517:20;:24;;:27;;;;:::i;:::-;39502:42;;39555:17;39575:30;39600:4;39575:20;:24;;:30;;;;:::i;:::-;39555:50;;39883:22;39908:21;39883:46;;39974:22;39991:4;39974:16;:22::i;:::-;40127:18;40148:41;40174:14;40148:21;:25;;:41;;;;:::i;:::-;40127:62;;40239:35;40252:9;40263:10;40239:12;:35::i;:::-;40300:43;40315:4;40321:10;40333:9;40300:43;;;;;;;;:::i;:::-;;;;;;;;39440:911;;;;27299:5:::0;27280:16;;:24;;;;;;;;;;;;;;;;;;39366:985;:::o;41652:834::-;41763:7;41759:40;;41785:14;:12;:14::i;:::-;41759:40;41824:11;:19;41836:6;41824:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;41848:11;:22;41860:9;41848:22;;;;;;;;;;;;;;;;;;;;;;;;;41847:23;41824:46;41820:597;;;41887:48;41909:6;41917:9;41928:6;41887:21;:48::i;:::-;41820:597;;;41958:11;:19;41970:6;41958:19;;;;;;;;;;;;;;;;;;;;;;;;;41957:20;:46;;;;;41981:11;:22;41993:9;41981:22;;;;;;;;;;;;;;;;;;;;;;;;;41957:46;41953:464;;;42020:46;42040:6;42048:9;42059:6;42020:19;:46::i;:::-;41953:464;;;42089:11;:19;42101:6;42089:19;;;;;;;;;;;;;;;;;;;;;;;;;42088:20;:47;;;;;42113:11;:22;42125:9;42113:22;;;;;;;;;;;;;;;;;;;;;;;;;42112:23;42088:47;42084:333;;;42152:44;42170:6;42178:9;42189:6;42152:17;:44::i;:::-;42084:333;;;42218:11;:19;42230:6;42218:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;42241:11;:22;42253:9;42241:22;;;;;;;;;;;;;;;;;;;;;;;;;42218:45;42214:203;;;42280:48;42302:6;42310:9;42321:6;42280:21;:48::i;:::-;42214:203;;;42361:44;42379:6;42387:9;42398:6;42361:17;:44::i;:::-;42214:203;42084:333;41953:464;41820:597;42441:7;42437:41;;42463:15;:13;:15::i;:::-;42437:41;41652:834;;;;:::o;35318:561::-;35368:7;35377;35397:15;35415:7;;35397:25;;35433:15;35451:7;;35433:25;;35480:9;35475:289;35499:9;:16;;;;35495:1;:20;35475:289;;;35565:7;35541;:21;35549:9;35559:1;35549:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35541:21;;;;;;;;;;;;;;;;:31;:66;;;;35600:7;35576;:21;35584:9;35594:1;35584:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35576:21;;;;;;;;;;;;;;;;:31;35541:66;35537:97;;;35617:7;;35626;;35609:25;;;;;;;;;35537:97;35659:34;35671:7;:21;35679:9;35689:1;35679:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35671:21;;;;;;;;;;;;;;;;35659:7;:11;;:34;;;;:::i;:::-;35649:44;;35718:34;35730:7;:21;35738:9;35748:1;35738:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35730:21;;;;;;;;;;;;;;;;35718:7;:11;;:34;;;;:::i;:::-;35708:44;;35517:3;;;;;:::i;:::-;;;;35475:289;;;;35788:20;35800:7;;35788;;:11;;:20;;;;:::i;:::-;35778:7;:30;35774:61;;;35818:7;;35827;;35810:25;;;;;;;;35774:61;35854:7;35863;35846:25;;;;;;35318:561;;;:::o;6408:278::-;6494:7;6526:1;6522;:5;6529:12;6514:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6553:9;6569:1;6565;:5;;;;:::i;:::-;6553:17;;6677:1;6670:8;;;6408:278;;;;;:::o;34372:330::-;34432:7;34441;34450;34470:12;34485:24;34501:7;34485:15;:24::i;:::-;34470:39;;34520:18;34541:30;34563:7;34541:21;:30::i;:::-;34520:51;;34582:23;34608:33;34630:10;34608:17;34620:4;34608:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;34582:59;;34660:15;34677:4;34683:10;34652:42;;;;;;;;;34372:330;;;;;:::o;34710:429::-;34825:7;34834;34843;34863:15;34881:24;34893:11;34881:7;:11;;:24;;;;:::i;:::-;34863:42;;34916:12;34931:21;34940:11;34931:4;:8;;:21;;;;:::i;:::-;34916:36;;34963:18;34984:27;34999:11;34984:10;:14;;:27;;;;:::i;:::-;34963:48;;35022:23;35048:33;35070:10;35048:17;35060:4;35048:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;35022:59;;35100:7;35109:15;35126:4;35092:39;;;;;;;;;;34710:429;;;;;;;;:::o;40359:589::-;40485:21;40523:1;40509:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40485:40;;40554:4;40536;40541:1;40536:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40580:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40570:4;40575:1;40570:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40615:62;40632:4;40647:15;40665:11;40615:8;:62::i;:::-;40716:15;:66;;;40797:11;40823:1;40867:4;40894;40914:15;40716:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40414:534;40359:589;:::o;40956:513::-;41104:62;41121:4;41136:15;41154:11;41104:8;:62::i;:::-;41209:15;:31;;;41248:9;41281:4;41301:11;41327:1;41370;41413:7;:5;:7::i;:::-;41435:15;41209:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40956:513;;:::o;36598:250::-;36655:1;36644:7;;:12;:34;;;;;36677:1;36660:13;;:18;36644:34;36641:46;;;36680:7;;36641:46;36725:7;;36707:15;:25;;;;36767:13;;36743:21;:37;;;;36811:1;36801:7;:11;;;;36839:1;36823:13;:17;;;;36598:250;:::o;43598:566::-;43701:15;43718:23;43743:12;43757:23;43782:12;43796:18;43818:19;43829:7;43818:10;:19::i;:::-;43700:137;;;;;;;;;;;;43866:28;43886:7;43866;:15;43874:6;43866:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43848:7;:15;43856:6;43848:15;;;;;;;;;;;;;;;:46;;;;43923:28;43943:7;43923;:15;43931:6;43923:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43905:7;:15;43913:6;43905:15;;;;;;;;;;;;;;;:46;;;;43983:39;44006:15;43983:7;:18;43991:9;43983:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43962:7;:18;43970:9;43962:18;;;;;;;;;;;;;;;:60;;;;44036:26;44051:10;44036:14;:26::i;:::-;44073:23;44085:4;44091;44073:11;:23::i;:::-;44129:9;44112:44;;44121:6;44112:44;;;44140:15;44112:44;;;;;;:::i;:::-;;;;;;;;43689:475;;;;;;43598:566;;;:::o;43004:586::-;43105:15;43122:23;43147:12;43161:23;43186:12;43200:18;43222:19;43233:7;43222:10;:19::i;:::-;43104:137;;;;;;;;;;;;43270:28;43290:7;43270;:15;43278:6;43270:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43252:7;:15;43260:6;43252:15;;;;;;;;;;;;;;;:46;;;;43330:39;43353:15;43330:7;:18;43338:9;43330:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43309:7;:18;43317:9;43309:18;;;;;;;;;;;;;;;:60;;;;43401:39;43424:15;43401:7;:18;43409:9;43401:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43380:7;:18;43388:9;43380:18;;;;;;;;;;;;;;;:60;;;;43462:26;43477:10;43462:14;:26::i;:::-;43499:23;43511:4;43517;43499:11;:23::i;:::-;43555:9;43538:44;;43547:6;43538:44;;;43566:15;43538:44;;;;;;:::i;:::-;;;;;;;;43093:497;;;;;;43004:586;;;:::o;42494:502::-;42593:15;42610:23;42635:12;42649:23;42674:12;42688:18;42710:19;42721:7;42710:10;:19::i;:::-;42592:137;;;;;;;;;;;;42758:28;42778:7;42758;:15;42766:6;42758:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42740:7;:15;42748:6;42740:15;;;;;;;;;;;;;;;:46;;;;42818:39;42841:15;42818:7;:18;42826:9;42818:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42797:7;:18;42805:9;42797:18;;;;;;;;;;;;;;;:60;;;;42868:26;42883:10;42868:14;:26::i;:::-;42905:23;42917:4;42923;42905:11;:23::i;:::-;42961:9;42944:44;;42953:6;42944:44;;;42972:15;42944:44;;;;;;:::i;:::-;;;;;;;;42581:415;;;;;;42494:502;;;:::o;32197:642::-;32300:15;32317:23;32342:12;32356:23;32381:12;32395:18;32417:19;32428:7;32417:10;:19::i;:::-;32299:137;;;;;;;;;;;;32465:28;32485:7;32465;:15;32473:6;32465:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32447:7;:15;32455:6;32447:15;;;;;;;;;;;;;;;:46;;;;32522:28;32542:7;32522;:15;32530:6;32522:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32504:7;:15;32512:6;32504:15;;;;;;;;;;;;;;;:46;;;;32582:39;32605:15;32582:7;:18;32590:9;32582:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32561:7;:18;32569:9;32561:18;;;;;;;;;;;;;;;:60;;;;32653:39;32676:15;32653:7;:18;32661:9;32653:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32632:7;:18;32640:9;32632:18;;;;;;;;;;;;;;;:60;;;;32711:26;32726:10;32711:14;:26::i;:::-;32748:23;32760:4;32766;32748:11;:23::i;:::-;32804:9;32787:44;;32796:6;32787:44;;;32815:15;32787:44;;;;;;:::i;:::-;;;;;;;;32288:551;;;;;;32197:642;;;:::o;36860:125::-;36914:15;;36904:7;:25;;;;36956:21;;36940:13;:37;;;;36860:125::o;36258:154::-;36322:7;36349:55;36388:5;36349:20;36361:7;;36349;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;36342:62;;36258:154;;;:::o;36420:166::-;36490:7;36517:61;36562:5;36517:26;36529:13;;36517:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;36510:68;;36420:166;;;:::o;35891:355::-;35954:19;35977:10;:8;:10::i;:::-;35954:33;;35998:18;36019:27;36034:11;36019:10;:14;;:27;;;;:::i;:::-;35998:48;;36082:38;36109:10;36082:7;:22;36098:4;36082:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36057:7;:22;36073:4;36057:22;;;;;;;;;;;;;;;:63;;;;36134:11;:26;36154:4;36134:26;;;;;;;;;;;;;;;;;;;;;;;;;36131:107;;;36200:38;36227:10;36200:7;:22;36216:4;36200:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36175:7;:22;36191:4;36175:22;;;;;;;;;;;;;;;:63;;;;36131:107;35943:303;;35891:355;:::o;33790:147::-;33868:17;33880:4;33868:7;;:11;;:17;;;;:::i;:::-;33858:7;:27;;;;33909:20;33924:4;33909:10;;:14;;:20;;;;:::i;:::-;33896:10;:33;;;;33790:147;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;301:133::-;344:5;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;301:133;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:143::-;642:5;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;585:143;;;;:::o;734:329::-;793:6;842:2;830:9;821:7;817:23;813:32;810:119;;;848:79;;:::i;:::-;810:119;968:1;993:53;1038:7;1029:6;1018:9;1014:22;993:53;:::i;:::-;983:63;;939:117;734:329;;;;:::o;1069:351::-;1139:6;1188:2;1176:9;1167:7;1163:23;1159:32;1156:119;;;1194:79;;:::i;:::-;1156:119;1314:1;1339:64;1395:7;1386:6;1375:9;1371:22;1339:64;:::i;:::-;1329:74;;1285:128;1069:351;;;;:::o;1426:474::-;1494:6;1502;1551:2;1539:9;1530:7;1526:23;1522:32;1519:119;;;1557:79;;:::i;:::-;1519:119;1677:1;1702:53;1747:7;1738:6;1727:9;1723:22;1702:53;:::i;:::-;1692:63;;1648:117;1804:2;1830:53;1875:7;1866:6;1855:9;1851:22;1830:53;:::i;:::-;1820:63;;1775:118;1426:474;;;;;:::o;1906:619::-;1983:6;1991;1999;2048:2;2036:9;2027:7;2023:23;2019:32;2016:119;;;2054:79;;:::i;:::-;2016:119;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2301:2;2327:53;2372:7;2363:6;2352:9;2348:22;2327:53;:::i;:::-;2317:63;;2272:118;2429:2;2455:53;2500:7;2491:6;2480:9;2476:22;2455:53;:::i;:::-;2445:63;;2400:118;1906:619;;;;;:::o;2531:474::-;2599:6;2607;2656:2;2644:9;2635:7;2631:23;2627:32;2624:119;;;2662:79;;:::i;:::-;2624:119;2782:1;2807:53;2852:7;2843:6;2832:9;2828:22;2807:53;:::i;:::-;2797:63;;2753:117;2909:2;2935:53;2980:7;2971:6;2960:9;2956:22;2935:53;:::i;:::-;2925:63;;2880:118;2531:474;;;;;:::o;3011:323::-;3067:6;3116:2;3104:9;3095:7;3091:23;3087:32;3084:119;;;3122:79;;:::i;:::-;3084:119;3242:1;3267:50;3309:7;3300:6;3289:9;3285:22;3267:50;:::i;:::-;3257:60;;3213:114;3011:323;;;;:::o;3340:329::-;3399:6;3448:2;3436:9;3427:7;3423:23;3419:32;3416:119;;;3454:79;;:::i;:::-;3416:119;3574:1;3599:53;3644:7;3635:6;3624:9;3620:22;3599:53;:::i;:::-;3589:63;;3545:117;3340:329;;;;:::o;3675:468::-;3740:6;3748;3797:2;3785:9;3776:7;3772:23;3768:32;3765:119;;;3803:79;;:::i;:::-;3765:119;3923:1;3948:53;3993:7;3984:6;3973:9;3969:22;3948:53;:::i;:::-;3938:63;;3894:117;4050:2;4076:50;4118:7;4109:6;4098:9;4094:22;4076:50;:::i;:::-;4066:60;;4021:115;3675:468;;;;;:::o;4149:663::-;4237:6;4245;4253;4302:2;4290:9;4281:7;4277:23;4273:32;4270:119;;;4308:79;;:::i;:::-;4270:119;4428:1;4453:64;4509:7;4500:6;4489:9;4485:22;4453:64;:::i;:::-;4443:74;;4399:128;4566:2;4592:64;4648:7;4639:6;4628:9;4624:22;4592:64;:::i;:::-;4582:74;;4537:129;4705:2;4731:64;4787:7;4778:6;4767:9;4763:22;4731:64;:::i;:::-;4721:74;;4676:129;4149:663;;;;;:::o;4818:179::-;4887:10;4908:46;4950:3;4942:6;4908:46;:::i;:::-;4986:4;4981:3;4977:14;4963:28;;4818:179;;;;:::o;5003:108::-;5080:24;5098:5;5080:24;:::i;:::-;5075:3;5068:37;5003:108;;:::o;5117:118::-;5204:24;5222:5;5204:24;:::i;:::-;5199:3;5192:37;5117:118;;:::o;5271:732::-;5390:3;5419:54;5467:5;5419:54;:::i;:::-;5489:86;5568:6;5563:3;5489:86;:::i;:::-;5482:93;;5599:56;5649:5;5599:56;:::i;:::-;5678:7;5709:1;5694:284;5719:6;5716:1;5713:13;5694:284;;;5795:6;5789:13;5822:63;5881:3;5866:13;5822:63;:::i;:::-;5815:70;;5908:60;5961:6;5908:60;:::i;:::-;5898:70;;5754:224;5741:1;5738;5734:9;5729:14;;5694:284;;;5698:14;5994:3;5987:10;;5395:608;;;5271:732;;;;:::o;6009:109::-;6090:21;6105:5;6090:21;:::i;:::-;6085:3;6078:34;6009:109;;:::o;6124:185::-;6238:64;6296:5;6238:64;:::i;:::-;6233:3;6226:77;6124:185;;:::o;6315:147::-;6410:45;6449:5;6410:45;:::i;:::-;6405:3;6398:58;6315:147;;:::o;6468:364::-;6556:3;6584:39;6617:5;6584:39;:::i;:::-;6639:71;6703:6;6698:3;6639:71;:::i;:::-;6632:78;;6719:52;6764:6;6759:3;6752:4;6745:5;6741:16;6719:52;:::i;:::-;6796:29;6818:6;6796:29;:::i;:::-;6791:3;6787:39;6780:46;;6560:272;6468:364;;;;:::o;6838:366::-;6980:3;7001:67;7065:2;7060:3;7001:67;:::i;:::-;6994:74;;7077:93;7166:3;7077:93;:::i;:::-;7195:2;7190:3;7186:12;7179:19;;6838:366;;;:::o;7210:::-;7352:3;7373:67;7437:2;7432:3;7373:67;:::i;:::-;7366:74;;7449:93;7538:3;7449:93;:::i;:::-;7567:2;7562:3;7558:12;7551:19;;7210:366;;;:::o;7582:::-;7724:3;7745:67;7809:2;7804:3;7745:67;:::i;:::-;7738:74;;7821:93;7910:3;7821:93;:::i;:::-;7939:2;7934:3;7930:12;7923:19;;7582:366;;;:::o;7954:::-;8096:3;8117:67;8181:2;8176:3;8117:67;:::i;:::-;8110:74;;8193:93;8282:3;8193:93;:::i;:::-;8311:2;8306:3;8302:12;8295:19;;7954:366;;;:::o;8326:::-;8468:3;8489:67;8553:2;8548:3;8489:67;:::i;:::-;8482:74;;8565:93;8654:3;8565:93;:::i;:::-;8683:2;8678:3;8674:12;8667:19;;8326:366;;;:::o;8698:::-;8840:3;8861:67;8925:2;8920:3;8861:67;:::i;:::-;8854:74;;8937:93;9026:3;8937:93;:::i;:::-;9055:2;9050:3;9046:12;9039:19;;8698:366;;;:::o;9070:::-;9212:3;9233:67;9297:2;9292:3;9233:67;:::i;:::-;9226:74;;9309:93;9398:3;9309:93;:::i;:::-;9427:2;9422:3;9418:12;9411:19;;9070:366;;;:::o;9442:::-;9584:3;9605:67;9669:2;9664:3;9605:67;:::i;:::-;9598:74;;9681:93;9770:3;9681:93;:::i;:::-;9799:2;9794:3;9790:12;9783:19;;9442:366;;;:::o;9814:::-;9956:3;9977:67;10041:2;10036:3;9977:67;:::i;:::-;9970:74;;10053:93;10142:3;10053:93;:::i;:::-;10171:2;10166:3;10162:12;10155:19;;9814:366;;;:::o;10186:::-;10328:3;10349:67;10413:2;10408:3;10349:67;:::i;:::-;10342:74;;10425:93;10514:3;10425:93;:::i;:::-;10543:2;10538:3;10534:12;10527:19;;10186:366;;;:::o;10558:::-;10700:3;10721:67;10785:2;10780:3;10721:67;:::i;:::-;10714:74;;10797:93;10886:3;10797:93;:::i;:::-;10915:2;10910:3;10906:12;10899:19;;10558:366;;;:::o;10930:::-;11072:3;11093:67;11157:2;11152:3;11093:67;:::i;:::-;11086:74;;11169:93;11258:3;11169:93;:::i;:::-;11287:2;11282:3;11278:12;11271:19;;10930:366;;;:::o;11302:::-;11444:3;11465:67;11529:2;11524:3;11465:67;:::i;:::-;11458:74;;11541:93;11630:3;11541:93;:::i;:::-;11659:2;11654:3;11650:12;11643:19;;11302:366;;;:::o;11674:::-;11816:3;11837:67;11901:2;11896:3;11837:67;:::i;:::-;11830:74;;11913:93;12002:3;11913:93;:::i;:::-;12031:2;12026:3;12022:12;12015:19;;11674:366;;;:::o;12046:::-;12188:3;12209:67;12273:2;12268:3;12209:67;:::i;:::-;12202:74;;12285:93;12374:3;12285:93;:::i;:::-;12403:2;12398:3;12394:12;12387:19;;12046:366;;;:::o;12418:::-;12560:3;12581:67;12645:2;12640:3;12581:67;:::i;:::-;12574:74;;12657:93;12746:3;12657:93;:::i;:::-;12775:2;12770:3;12766:12;12759:19;;12418:366;;;:::o;12790:::-;12932:3;12953:67;13017:2;13012:3;12953:67;:::i;:::-;12946:74;;13029:93;13118:3;13029:93;:::i;:::-;13147:2;13142:3;13138:12;13131:19;;12790:366;;;:::o;13162:118::-;13249:24;13267:5;13249:24;:::i;:::-;13244:3;13237:37;13162:118;;:::o;13286:112::-;13369:22;13385:5;13369:22;:::i;:::-;13364:3;13357:35;13286:112;;:::o;13404:222::-;13497:4;13535:2;13524:9;13520:18;13512:26;;13548:71;13616:1;13605:9;13601:17;13592:6;13548:71;:::i;:::-;13404:222;;;;:::o;13632:807::-;13881:4;13919:3;13908:9;13904:19;13896:27;;13933:71;14001:1;13990:9;13986:17;13977:6;13933:71;:::i;:::-;14014:72;14082:2;14071:9;14067:18;14058:6;14014:72;:::i;:::-;14096:80;14172:2;14161:9;14157:18;14148:6;14096:80;:::i;:::-;14186;14262:2;14251:9;14247:18;14238:6;14186:80;:::i;:::-;14276:73;14344:3;14333:9;14329:19;14320:6;14276:73;:::i;:::-;14359;14427:3;14416:9;14412:19;14403:6;14359:73;:::i;:::-;13632:807;;;;;;;;;:::o;14445:210::-;14532:4;14570:2;14559:9;14555:18;14547:26;;14583:65;14645:1;14634:9;14630:17;14621:6;14583:65;:::i;:::-;14445:210;;;;:::o;14661:276::-;14781:4;14819:2;14808:9;14804:18;14796:26;;14832:98;14927:1;14916:9;14912:17;14903:6;14832:98;:::i;:::-;14661:276;;;;:::o;14943:313::-;15056:4;15094:2;15083:9;15079:18;15071:26;;15143:9;15137:4;15133:20;15129:1;15118:9;15114:17;15107:47;15171:78;15244:4;15235:6;15171:78;:::i;:::-;15163:86;;14943:313;;;;:::o;15262:419::-;15428:4;15466:2;15455:9;15451:18;15443:26;;15515:9;15509:4;15505:20;15501:1;15490:9;15486:17;15479:47;15543:131;15669:4;15543:131;:::i;:::-;15535:139;;15262:419;;;:::o;15687:::-;15853:4;15891:2;15880:9;15876:18;15868:26;;15940:9;15934:4;15930:20;15926:1;15915:9;15911:17;15904:47;15968:131;16094:4;15968:131;:::i;:::-;15960:139;;15687:419;;;:::o;16112:::-;16278:4;16316:2;16305:9;16301:18;16293:26;;16365:9;16359:4;16355:20;16351:1;16340:9;16336:17;16329:47;16393:131;16519:4;16393:131;:::i;:::-;16385:139;;16112:419;;;:::o;16537:::-;16703:4;16741:2;16730:9;16726:18;16718:26;;16790:9;16784:4;16780:20;16776:1;16765:9;16761:17;16754:47;16818:131;16944:4;16818:131;:::i;:::-;16810:139;;16537:419;;;:::o;16962:::-;17128:4;17166:2;17155:9;17151:18;17143:26;;17215:9;17209:4;17205:20;17201:1;17190:9;17186:17;17179:47;17243:131;17369:4;17243:131;:::i;:::-;17235:139;;16962:419;;;:::o;17387:::-;17553:4;17591:2;17580:9;17576:18;17568:26;;17640:9;17634:4;17630:20;17626:1;17615:9;17611:17;17604:47;17668:131;17794:4;17668:131;:::i;:::-;17660:139;;17387:419;;;:::o;17812:::-;17978:4;18016:2;18005:9;18001:18;17993:26;;18065:9;18059:4;18055:20;18051:1;18040:9;18036:17;18029:47;18093:131;18219:4;18093:131;:::i;:::-;18085:139;;17812:419;;;:::o;18237:::-;18403:4;18441:2;18430:9;18426:18;18418:26;;18490:9;18484:4;18480:20;18476:1;18465:9;18461:17;18454:47;18518:131;18644:4;18518:131;:::i;:::-;18510:139;;18237:419;;;:::o;18662:::-;18828:4;18866:2;18855:9;18851:18;18843:26;;18915:9;18909:4;18905:20;18901:1;18890:9;18886:17;18879:47;18943:131;19069:4;18943:131;:::i;:::-;18935:139;;18662:419;;;:::o;19087:::-;19253:4;19291:2;19280:9;19276:18;19268:26;;19340:9;19334:4;19330:20;19326:1;19315:9;19311:17;19304:47;19368:131;19494:4;19368:131;:::i;:::-;19360:139;;19087:419;;;:::o;19512:::-;19678:4;19716:2;19705:9;19701:18;19693:26;;19765:9;19759:4;19755:20;19751:1;19740:9;19736:17;19729:47;19793:131;19919:4;19793:131;:::i;:::-;19785:139;;19512:419;;;:::o;19937:::-;20103:4;20141:2;20130:9;20126:18;20118:26;;20190:9;20184:4;20180:20;20176:1;20165:9;20161:17;20154:47;20218:131;20344:4;20218:131;:::i;:::-;20210:139;;19937:419;;;:::o;20362:::-;20528:4;20566:2;20555:9;20551:18;20543:26;;20615:9;20609:4;20605:20;20601:1;20590:9;20586:17;20579:47;20643:131;20769:4;20643:131;:::i;:::-;20635:139;;20362:419;;;:::o;20787:::-;20953:4;20991:2;20980:9;20976:18;20968:26;;21040:9;21034:4;21030:20;21026:1;21015:9;21011:17;21004:47;21068:131;21194:4;21068:131;:::i;:::-;21060:139;;20787:419;;;:::o;21212:::-;21378:4;21416:2;21405:9;21401:18;21393:26;;21465:9;21459:4;21455:20;21451:1;21440:9;21436:17;21429:47;21493:131;21619:4;21493:131;:::i;:::-;21485:139;;21212:419;;;:::o;21637:::-;21803:4;21841:2;21830:9;21826:18;21818:26;;21890:9;21884:4;21880:20;21876:1;21865:9;21861:17;21854:47;21918:131;22044:4;21918:131;:::i;:::-;21910:139;;21637:419;;;:::o;22062:::-;22228:4;22266:2;22255:9;22251:18;22243:26;;22315:9;22309:4;22305:20;22301:1;22290:9;22286:17;22279:47;22343:131;22469:4;22343:131;:::i;:::-;22335:139;;22062:419;;;:::o;22487:222::-;22580:4;22618:2;22607:9;22603:18;22595:26;;22631:71;22699:1;22688:9;22684:17;22675:6;22631:71;:::i;:::-;22487:222;;;;:::o;22715:831::-;22978:4;23016:3;23005:9;23001:19;22993:27;;23030:71;23098:1;23087:9;23083:17;23074:6;23030:71;:::i;:::-;23111:80;23187:2;23176:9;23172:18;23163:6;23111:80;:::i;:::-;23238:9;23232:4;23228:20;23223:2;23212:9;23208:18;23201:48;23266:108;23369:4;23360:6;23266:108;:::i;:::-;23258:116;;23384:72;23452:2;23441:9;23437:18;23428:6;23384:72;:::i;:::-;23466:73;23534:3;23523:9;23519:19;23510:6;23466:73;:::i;:::-;22715:831;;;;;;;;:::o;23552:442::-;23701:4;23739:2;23728:9;23724:18;23716:26;;23752:71;23820:1;23809:9;23805:17;23796:6;23752:71;:::i;:::-;23833:72;23901:2;23890:9;23886:18;23877:6;23833:72;:::i;:::-;23915;23983:2;23972:9;23968:18;23959:6;23915:72;:::i;:::-;23552:442;;;;;;:::o;24000:214::-;24089:4;24127:2;24116:9;24112:18;24104:26;;24140:67;24204:1;24193:9;24189:17;24180:6;24140:67;:::i;:::-;24000:214;;;;:::o;24301:132::-;24368:4;24391:3;24383:11;;24421:4;24416:3;24412:14;24404:22;;24301:132;;;:::o;24439:114::-;24506:6;24540:5;24534:12;24524:22;;24439:114;;;:::o;24559:99::-;24611:6;24645:5;24639:12;24629:22;;24559:99;;;:::o;24664:113::-;24734:4;24766;24761:3;24757:14;24749:22;;24664:113;;;:::o;24783:184::-;24882:11;24916:6;24911:3;24904:19;24956:4;24951:3;24947:14;24932:29;;24783:184;;;;:::o;24973:169::-;25057:11;25091:6;25086:3;25079:19;25131:4;25126:3;25122:14;25107:29;;24973:169;;;;:::o;25148:305::-;25188:3;25207:20;25225:1;25207:20;:::i;:::-;25202:25;;25241:20;25259:1;25241:20;:::i;:::-;25236:25;;25395:1;25327:66;25323:74;25320:1;25317:81;25314:107;;;25401:18;;:::i;:::-;25314:107;25445:1;25442;25438:9;25431:16;;25148:305;;;;:::o;25459:185::-;25499:1;25516:20;25534:1;25516:20;:::i;:::-;25511:25;;25550:20;25568:1;25550:20;:::i;:::-;25545:25;;25589:1;25579:35;;25594:18;;:::i;:::-;25579:35;25636:1;25633;25629:9;25624:14;;25459:185;;;;:::o;25650:348::-;25690:7;25713:20;25731:1;25713:20;:::i;:::-;25708:25;;25747:20;25765:1;25747:20;:::i;:::-;25742:25;;25935:1;25867:66;25863:74;25860:1;25857:81;25852:1;25845:9;25838:17;25834:105;25831:131;;;25942:18;;:::i;:::-;25831:131;25990:1;25987;25983:9;25972:20;;25650:348;;;;:::o;26004:191::-;26044:4;26064:20;26082:1;26064:20;:::i;:::-;26059:25;;26098:20;26116:1;26098:20;:::i;:::-;26093:25;;26137:1;26134;26131:8;26128:34;;;26142:18;;:::i;:::-;26128:34;26187:1;26184;26180:9;26172:17;;26004:191;;;;:::o;26201:96::-;26238:7;26267:24;26285:5;26267:24;:::i;:::-;26256:35;;26201:96;;;:::o;26303:90::-;26337:7;26380:5;26373:13;26366:21;26355:32;;26303:90;;;:::o;26399:126::-;26436:7;26476:42;26469:5;26465:54;26454:65;;26399:126;;;:::o;26531:77::-;26568:7;26597:5;26586:16;;26531:77;;;:::o;26614:86::-;26649:7;26689:4;26682:5;26678:16;26667:27;;26614:86;;;:::o;26706:153::-;26783:9;26816:37;26847:5;26816:37;:::i;:::-;26803:50;;26706:153;;;:::o;26865:121::-;26923:9;26956:24;26974:5;26956:24;:::i;:::-;26943:37;;26865:121;;;:::o;26992:126::-;27042:9;27075:37;27106:5;27075:37;:::i;:::-;27062:50;;26992:126;;;:::o;27124:113::-;27174:9;27207:24;27225:5;27207:24;:::i;:::-;27194:37;;27124:113;;;:::o;27243:307::-;27311:1;27321:113;27335:6;27332:1;27329:13;27321:113;;;27420:1;27415:3;27411:11;27405:18;27401:1;27396:3;27392:11;27385:39;27357:2;27354:1;27350:10;27345:15;;27321:113;;;27452:6;27449:1;27446:13;27443:101;;;27532:1;27523:6;27518:3;27514:16;27507:27;27443:101;27292:258;27243:307;;;:::o;27556:320::-;27600:6;27637:1;27631:4;27627:12;27617:22;;27684:1;27678:4;27674:12;27705:18;27695:81;;27761:4;27753:6;27749:17;27739:27;;27695:81;27823:2;27815:6;27812:14;27792:18;27789:38;27786:84;;;27842:18;;:::i;:::-;27786:84;27607:269;27556:320;;;:::o;27882:233::-;27921:3;27944:24;27962:5;27944:24;:::i;:::-;27935:33;;27990:66;27983:5;27980:77;27977:103;;;28060:18;;:::i;:::-;27977:103;28107:1;28100:5;28096:13;28089:20;;27882:233;;;:::o;28121:180::-;28169:77;28166:1;28159:88;28266:4;28263:1;28256:15;28290:4;28287:1;28280:15;28307:180;28355:77;28352:1;28345:88;28452:4;28449:1;28442:15;28476:4;28473:1;28466:15;28493:180;28541:77;28538:1;28531:88;28638:4;28635:1;28628:15;28662:4;28659:1;28652:15;28679:180;28727:77;28724:1;28717:88;28824:4;28821:1;28814:15;28848:4;28845:1;28838:15;28865:180;28913:77;28910:1;28903:88;29010:4;29007:1;29000:15;29034:4;29031:1;29024:15;29051:180;29099:77;29096:1;29089:88;29196:4;29193:1;29186:15;29220:4;29217:1;29210:15;29360:117;29469:1;29466;29459:12;29483:102;29524:6;29575:2;29571:7;29566:2;29559:5;29555:14;29551:28;29541:38;;29483:102;;;:::o;29591:222::-;29731:34;29727:1;29719:6;29715:14;29708:58;29800:5;29795:2;29787:6;29783:15;29776:30;29591:222;:::o;29819:229::-;29959:34;29955:1;29947:6;29943:14;29936:58;30028:12;30023:2;30015:6;30011:15;30004:37;29819:229;:::o;30054:225::-;30194:34;30190:1;30182:6;30178:14;30171:58;30263:8;30258:2;30250:6;30246:15;30239:33;30054:225;:::o;30285:221::-;30425:34;30421:1;30413:6;30409:14;30402:58;30494:4;30489:2;30481:6;30477:15;30470:29;30285:221;:::o;30512:177::-;30652:29;30648:1;30640:6;30636:14;30629:53;30512:177;:::o;30695:::-;30835:29;30831:1;30823:6;30819:14;30812:53;30695:177;:::o;30878:181::-;31018:33;31014:1;31006:6;31002:14;30995:57;30878:181;:::o;31065:227::-;31205:34;31201:1;31193:6;31189:14;31182:58;31274:10;31269:2;31261:6;31257:15;31250:35;31065:227;:::o;31298:220::-;31438:34;31434:1;31426:6;31422:14;31415:58;31507:3;31502:2;31494:6;31490:15;31483:28;31298:220;:::o;31524:182::-;31664:34;31660:1;31652:6;31648:14;31641:58;31524:182;:::o;31712:228::-;31852:34;31848:1;31840:6;31836:14;31829:58;31921:11;31916:2;31908:6;31904:15;31897:36;31712:228;:::o;31946:224::-;32086:34;32082:1;32074:6;32070:14;32063:58;32155:7;32150:2;32142:6;32138:15;32131:32;31946:224;:::o;32176:223::-;32316:34;32312:1;32304:6;32300:14;32293:58;32385:6;32380:2;32372:6;32368:15;32361:31;32176:223;:::o;32405:181::-;32545:33;32541:1;32533:6;32529:14;32522:57;32405:181;:::o;32592:231::-;32732:34;32728:1;32720:6;32716:14;32709:58;32801:14;32796:2;32788:6;32784:15;32777:39;32592:231;:::o;32829:165::-;32969:17;32965:1;32957:6;32953:14;32946:41;32829:165;:::o;33000:222::-;33140:34;33136:1;33128:6;33124:14;33117:58;33209:5;33204:2;33196:6;33192:15;33185:30;33000:222;:::o;33228:122::-;33301:24;33319:5;33301:24;:::i;:::-;33294:5;33291:35;33281:63;;33340:1;33337;33330:12;33281:63;33228:122;:::o;33356:116::-;33426:21;33441:5;33426:21;:::i;:::-;33419:5;33416:32;33406:60;;33462:1;33459;33452:12;33406:60;33356:116;:::o;33478:122::-;33551:24;33569:5;33551:24;:::i;:::-;33544:5;33541:35;33531:63;;33590:1;33587;33580:12;33531:63;33478:122;:::o

Swarm Source

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