ETH Price: $3,441.80 (-1.12%)
Gas: 8 Gwei

Token

Ethereum God (EGOD)
 

Overview

Max Total Supply

100,000,000,000,000 EGOD

Holders

1,688

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
39,805,290.283163897 EGOD

Value
$0.00
0xb4705fd75ac926ff84a2467eb39a0be12892641f
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:
EthereumGod

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-30
*/

/**
https://t.me/ethereumgodtoken
*/

//SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.6.12;

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

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

interface IERC20 {
    /**
    * @dev Returns the amount of tokens in existence.
    */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
    * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * IMPORTANT: Beware that changing an allowance with this method brings the risk
    * that someone may use both the old and the new allowance by unfortunate
    * transaction ordering. One possible solution to mitigate this race
    * condition is to first reduce the spender's allowance to 0 and set the
    * desired value afterwards:
    * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    *
    * Emits an {Approval} event.
    */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
    * @dev Moves `amount` tokens from `sender` to `recipient` using the
    * allowance mechanism. `amount` is then deducted from the caller's
    * allowance.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

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

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

    /**
    * @dev Throws if called by any account other than the owner.
    */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

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

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 implementation
contract EthereumGod is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded; // excluded from reward
    address[] private _excluded;
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;

    uint256 private constant MAX = ~uint256(0);

    uint256 private _tTotal = 100_000_000_000_000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Ethereum God';
    string private _symbol = 'EGOD';
    uint8 private _decimals = 9;

    uint256 private _taxFee = 4; // 4% reflection fee for every holder
    uint256 private _marketingFee = 2; // 2% marketing
    uint256 private _liquidityFee = 4; // 4% into liquidity

    uint256 private _previousTaxFee = _taxFee;
    uint256 private _previousMarketingFee = _marketingFee;
    uint256 private _previousLiquidityFee = _liquidityFee;

    address payable private _marketingWalletAddress = payable(0x63a391e3b4174f63D3e45Dedf5044Ca2540E783f);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify = false;
    bool public swapAndLiquifyEnabled = true;

    uint256 private _maxTxAmount = _tTotal / 1000;
    // We will set a minimum amount of tokens to be swapped
    uint256 private _numTokensSellToAddToLiquidity = 1000000000 * 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 () public {
        _rOwned[_msgSender()] = _rTotal;

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

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

        // Exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWalletAddress] = true;

        // BLACKLIST
        _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

        _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
        _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));

        _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
        _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));

        _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
        _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));

        _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
        _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));

        _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
        _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));

        _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
        _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));

        _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));

        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 setExcludeFromFee(address account, bool excluded) external onlyOwner() {
        _isExcludedFromFee[account] = excluded;
    }

    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) external 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 addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _marketingFee == 0 && _liquidityFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _marketingFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
        _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 sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[sender], "You have no power here!");
        require(!_isBlackListedBot[recipient], "You have no power here!");
        require(!_isBlackListedBot[tx.origin], "You have no power here!");

        if(sender != owner() && recipient != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

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

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

        bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity;
        if (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
            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[sender] || _isExcludedFromFee[recipient]){
            takeFee = false;
        }

        //transfer amount, it will take tax and charity fee
        _tokenTransfer(sender, recipient, amount, takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee));
        uint256 toLiquify = contractTokenBalance.sub(toMarketing);

        // split the contract balance into halves
        uint256 half = toLiquify.div(2);
        uint256 otherHalf = toLiquify.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
        uint256 toSwapForEth = half.add(toMarketing);
        swapTokensForEth(toSwapForEth); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);

        sendETHToMarketing(fromSwap.sub(newBalance));
    }

    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 sendETHToMarketing(uint256 amount) private {
        _marketingWalletAddress.transfer(amount);
    }

    // We are exposing these functions to be able to manual swap and send
    // in case the token is highly valued and 5M becomes too much
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() public onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        sendETHToMarketing(contractETHBalance);
    }

    function setSwapAndLiquifyEnabled(bool _swapAndLiquifyEnabled) external onlyOwner(){
        swapAndLiquifyEnabled = _swapAndLiquifyEnabled;
    }

    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 tMarketingLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketingLiquidity(tMarketingLiquidity);
        _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 tMarketingLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketingLiquidity(tMarketingLiquidity);
        _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 tMarketingLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeMarketingLiquidity(tMarketingLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _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);
        _takeMarketingLiquidity(tMarketingLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeMarketingLiquidity(uint256 tMarketingLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rMarketingLiquidity = tMarketingLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketingLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketingLiquidity);
    }

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

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidityFee) = _getTValues(tAmount, _taxFee, _marketingFee.add(_liquidityFee));
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketingLiquidityFee);
    }

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 marketingLiquidityFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(taxFee).div(100);
        uint256 tMarketingLiquidityFee = tAmount.mul(marketingLiquidityFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(marketingLiquidityFee);
        return (tTransferAmount, tFee, tMarketingLiquidityFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        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 _getTaxFee() private view returns(uint256) {
        return _taxFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _maxTxAmount / 10**9;
    }

    function _getETHBalance() public view returns(uint256 balance) {
        return address(this).balance;
    }

    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 1 && taxFee <= 49, 'taxFee should be in 1 - 49');
        _taxFee = taxFee;
    }

    function _setMarketingFee(uint256 marketingFee) external onlyOwner() {
        require(marketingFee >= 1 && marketingFee <= 49, 'marketingFee should be in 1 - 11');
        _marketingFee = marketingFee;
    }

    function _setLiquidityFee(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee >= 1 && liquidityFee <= 49, 'liquidityFee should be in 1 - 11');
        _liquidityFee = liquidityFee;
    }

    function _setNumTokensSellToAddToLiquidity(uint256 numTokensSellToAddToLiquidity) external onlyOwner() {
        require(numTokensSellToAddToLiquidity >= 10**9 , 'numTokensSellToAddToLiquidity should be greater than total 1e9');
        _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**3 // Division by 1000, set to 20 for 2%, set to 2 for 0.2%
        );
    }

    function recoverTokens(uint256 tokenAmount) public virtual onlyOwner() {
        _approve(address(this), owner(), tokenAmount);
        _transfer(address(this), owner(), tokenAmount);
    }
}

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":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"_setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"_setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"_setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","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":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","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":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverTokens","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapAndLiquifyEnabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","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"},{"stateMutability":"payable","type":"receive"}]

60c060405269152d02c7e14af6800000600b55600b54600019816200002057fe5b0660001903600c556040518060400160405280600c81526020017f457468657265756d20476f640000000000000000000000000000000000000000815250600e90805190602001906200007592919062000e0e565b506040518060400160405280600481526020017f45474f4400000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000c392919062000e0e565b506009601060006101000a81548160ff021916908360ff1602179055506004601155600260125560046013556011546014556012546015556013546016557363a391e3b4174f63d3e45dedf5044ca2540e783f601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601760146101000a81548160ff0219169083151502179055506001601760156101000a81548160ff0219169083151502179055506103e8600b54816200019a57fe5b04601855670de0b6b3a7640000601955348015620001b757600080fd5b506000620001ca62000ddd60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600c54600360006200027f62000ddd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031d57600080fd5b505afa15801562000332573d6000803e3d6000fd5b505050506040513d60208110156200034957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003bd57600080fd5b505afa158015620003d2573d6000803e3d6000fd5b505050506040513d6020811015620003e957600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200046457600080fd5b505af115801562000479573d6000803e3d6000fd5b505050506040513d60208110156200049057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200052462000de560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600073e031b36b53e53a292a20c5f08fd1658cddf74fce73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e031b36b53e53a292a20c5f08fd1658cddf74fce9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073e516bdee55b0b4e9bacaf6285130de15589b134573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e516bdee55b0b4e9bacaf6285130de15589b13459080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073a1cec245c456dd1bd9f2815a6955fef44eb4191b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73a1cec245c456dd1bd9f2815a6955fef44eb4191b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf9573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf959080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073fe76f05dc59fec04184fa0245ad0c3cf9a57b96473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73fe76f05dc59fec04184fa0245ad0c3cf9a57b9649080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073dc81a3450817a58d00f45c86d0368290088db84873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73dc81a3450817a58d00f45c86d0368290088db8489080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007345fd07c63e5c316540f14b2002b085aee78e388173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7345fd07c63e5c316540f14b2002b085aee78e38819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007327f9adb26d532a41d97e00206114e429ad58c67973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7327f9adb26d532a41d97e00206114e429ad58c6799080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000d6f62000ddd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000eb4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000e5157805160ff191683800117855562000e82565b8280016001018555821562000e82579182015b8281111562000e8157825182559160200191906001019062000e64565b5b50905062000e91919062000e95565b5090565b5b8082111562000eb057600081600090555060010162000e96565b5090565b60805160601c60a05160601c6159d162000efc60003980611bac52806139e0525080610e885280613e205280613f0c5280613f335280614a255280614a4c52506159d16000f3fe6080604052600436106102295760003560e01c80635342acb411610123578063a52fe9bb116100ab578063d543dbeb1161006f578063d543dbeb14610c69578063dd62ed3e14610ca4578063f2fde38b14610d29578063f429389014610d7a578063f815a84214610d9157610230565b8063a52fe9bb14610ae8578063a9059cbb14610b23578063af9549e014610b94578063bcd6d44614610bf1578063c49b9a8014610c2c57610230565b80637ded4d6a116100f25780637ded4d6a146108ee57806388f820201461093f5780638da5cb5b146109a657806395d89b41146109e7578063a457c2d714610a7757610230565b80635342acb4146107d05780635880b8731461083757806370a0823114610872578063715018a6146108d757610230565b8063313ce567116101b15780634549b039116101755780634549b0391461069f57806349bd5a5e146106fa5780634a74bb021461073b57806351bc3c851461076857806352390c021461077f57610230565b8063313ce567146105235780633685d4191461055157806339509351146105a25780633bd5d173146106135780634303443d1461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631decaadc146103cd57806323b872dd146104085780632d8381191461049957806330599fc5146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610dbc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5e565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e7c565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610eaa565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610eb4565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe3565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b81019080803590602001909291905050506110bc565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506105216004803603602081101561050b57600080fd5b8101908080359060200190929190505050611140565b005b34801561052f57600080fd5b5061053861122f565b604051808260ff16815260200191505060405180910390f35b34801561055d57600080fd5b506105a06004803603602081101561057457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611246565b005b3480156105ae57600080fd5b506105fb600480360360408110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d0565b60405180821515815260200191505060405180910390f35b34801561061f57600080fd5b5061064c6004803603602081101561063657600080fd5b8101908080359060200190929190505050611683565b005b34801561065a57600080fd5b5061069d6004803603602081101561067157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611814565b005b3480156106ab57600080fd5b506106e4600480360360408110156106c257600080fd5b8101908080359060200190929190803515159060200190929190505050611af3565b6040518082815260200191505060405180910390f35b34801561070657600080fd5b5061070f611baa565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074757600080fd5b50610750611bce565b60405180821515815260200191505060405180910390f35b34801561077457600080fd5b5061077d611be1565b005b34801561078b57600080fd5b506107ce600480360360208110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc2565b005b3480156107dc57600080fd5b5061081f600480360360208110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612075565b60405180821515815260200191505060405180910390f35b34801561084357600080fd5b506108706004803603602081101561085a57600080fd5b81019080803590602001909291905050506120cb565b005b34801561087e57600080fd5b506108c16004803603602081101561089557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612221565b6040518082815260200191505060405180910390f35b3480156108e357600080fd5b506108ec61230c565b005b3480156108fa57600080fd5b5061093d6004803603602081101561091157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612492565b005b34801561094b57600080fd5b5061098e6004803603602081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127d7565b60405180821515815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61282d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f357600080fd5b506109fc612856565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a3c578082015181840152602081019050610a21565b50505050905090810190601f168015610a695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a8357600080fd5b50610ad060048036036040811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506128f8565b60405180821515815260200191505060405180910390f35b348015610af457600080fd5b50610b2160048036036020811015610b0b57600080fd5b81019080803590602001909291905050506129c5565b005b348015610b2f57600080fd5b50610b7c60048036036040811015610b4657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b1b565b60405180821515815260200191505060405180910390f35b348015610ba057600080fd5b50610bef60048036036040811015610bb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612b39565b005b348015610bfd57600080fd5b50610c2a60048036036020811015610c1457600080fd5b8101908080359060200190929190505050612c5c565b005b348015610c3857600080fd5b50610c6760048036036020811015610c4f57600080fd5b81019080803515159060200190929190505050612db2565b005b348015610c7557600080fd5b50610ca260048036036020811015610c8c57600080fd5b8101908080359060200190929190505050612e97565b005b348015610cb057600080fd5b50610d1360048036036040811015610cc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f91565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610d7860048036036020811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613018565b005b348015610d8657600080fd5b50610d8f613223565b005b348015610d9d57600080fd5b50610da66132fc565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b5050505050905090565b6000610e72610e6b613304565b848461330c565b6001905092915050565b6000600d54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b54905090565b610ebc613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015610fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806158eb603e913960400191505060405180910390fd5b8060198190555050565b6000610ff0848484613503565b6110b184610ffc613304565b6110ac8560405180606001604052806028815260200161582d60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611062613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b600190509392505050565b6000600c54821115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615772602a913960400191505060405180910390fd5b6000611123613bc8565b90506111388184613bf390919063ffffffff16565b915050919050565b611148613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61121a3061121461282d565b8361330c565b61122c3061122661282d565b83613503565b50565b6000601060009054906101000a900460ff16905090565b61124e613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156115cc578173ffffffffffffffffffffffffffffffffffffffff166008828154811061140157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bf5760086001600880549050038154811061145d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061149557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061158557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556115cc565b80806001019150506113d0565b5050565b60006116796115dd613304565b8461167485600560006115ee613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b61330c565b6001905092915050565b600061168d613304565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061594b602c913960400191505060405180910390fd5b600061173d83613cc5565b5050505050905061179681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117ee81600c54613d4090919063ffffffff16565b600c8190555061180983600d54613c3d90919063ffffffff16565b600d81905550505050565b61181c613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061587e6024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b54831115611b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b8d576000611b7d84613cc5565b5050505050905080915050611ba4565b6000611b9884613cc5565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601760159054906101000a900460ff1681565b611be9613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611cb430612221565b9050611cbf81613d8a565b50565b611cca613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159296022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ee3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fb757611f73600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6120d3613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156121a5575060318111155b612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060118190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122bc57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612307565b612304600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b90505b919050565b612314613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61249a613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a805490508110156127d3578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061264d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c657600a6001600a8054905003815481106126a957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a82815481106126e157fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061278c57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556127d3565b808060010191505061261c565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128ee5780601f106128c3576101008083540402835291602001916128ee565b820191906000526020600020905b8154815290600101906020018083116128d157829003601f168201915b5050505050905090565b60006129bb612905613304565b846129b685604051806060016040528060258152602001615977602591396005600061292f613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b6001905092915050565b6129cd613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612a9f575060318111155b612b11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060128190555050565b6000612b2f612b28613304565b8484613503565b6001905092915050565b612b41613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612c64613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612d36575060318111155b612da8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060138190555050565b612dba613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601760156101000a81548160ff02191690831515021790555050565b612e9f613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f886103e8612f7a83600b5461403890919063ffffffff16565b613bf390919063ffffffff16565b60188190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613020613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061579c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61322b613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790506132f9816140be565b50565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806158c76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157c26022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158a26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561360f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061574f6023913960400191505060405180910390fd5b60008111613668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158556029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613728576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6138b061282d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561391e57506138ee61282d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561397f5760185481111561397e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806157e46028913960400191505060405180910390fd5b5b600061398a30612221565b9050601854811061399b5760185490505b60006019548210159050601760149054906101000a900460ff161580156139ce5750601760159054906101000a900460ff165b80156139d75750805b8015613a2f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613a43576019549150613a428261412a565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613aea5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af457600090505b613b00868686846142c3565b505050505050565b6000838311158290613bb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b7a578082015181840152602081019050613b5f565b50505050905090810190601f168015613ba75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613bd56145d4565b91509150613bec8183613bf390919063ffffffff16565b9250505090565b6000613c3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614865565b905092915050565b600080828401905083811015613cbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613cf68a601154613cf1601354601254613c3d90919063ffffffff16565b61492b565b9250925092506000613d06613bc8565b90506000806000613d188e87866149c1565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613d8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b08565b905092915050565b6060600267ffffffffffffffff81118015613da457600080fd5b50604051908082528060200260200182016040528015613dd35781602001602082028036833780820191505090505b5090503081600081518110613de457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e8457600080fd5b505afa158015613e98573d6000803e3d6000fd5b505050506040513d6020811015613eae57600080fd5b810190808051906020019092919050505081600181518110613ecc57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f31307f00000000000000000000000000000000000000000000000000000000000000008461330c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613ff3578082015181840152602081019050613fd8565b505050509050019650505050505050600060405180830381600087803b15801561401c57600080fd5b505af1158015614030573d6000803e3d6000fd5b505050505050565b60008083141561404b57600090506140b8565b600082840290508284828161405c57fe5b04146140b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061580c6021913960400191505060405180910390fd5b809150505b92915050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614126573d6000803e3d6000fd5b5050565b6001601760146101000a81548160ff0219169083151502179055506000614184614161601354601254613c3d90919063ffffffff16565b6141766012548561403890919063ffffffff16565b613bf390919063ffffffff16565b9050600061419b8284613d4090919063ffffffff16565b905060006141b3600283613bf390919063ffffffff16565b905060006141ca8284613d4090919063ffffffff16565b9050600047905060006141e68685613c3d90919063ffffffff16565b90506141f181613d8a565b60006142068347613d4090919063ffffffff16565b9050600061422f83614221888561403890919063ffffffff16565b613bf390919063ffffffff16565b905061423b8582614a1f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a161429d6142988284613d4090919063ffffffff16565b6140be565b50505050505050506000601760146101000a81548160ff02191690831515021790555050565b806142d1576142d0614b70565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143745750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561438957614384848484614bd2565b6145c0565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561442c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156144415761443c848484614e32565b6145bf565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144e55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156144fa576144f5848484615092565b6145be565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561459c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156145b1576145ac84848461525d565b6145bd565b6145bc848484615092565b5b5b5b5b806145ce576145cd615552565b5b50505050565b6000806000600c5490506000600b54905060005b6008805490508110156148285782600360006008848154811061460757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806146ee575081600460006008848154811061468657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561470557600c54600b5494509450505050614861565b61478e600360006008848154811061471957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613d4090919063ffffffff16565b925061481960046000600884815481106147a457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613d4090919063ffffffff16565b915080806001019150506145e8565b50614840600b54600c54613bf390919063ffffffff16565b82101561485857600c54600b54935093505050614861565b81819350935050505b9091565b60008083118290614911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156148d65780820151818401526020810190506148bb565b50505050905090810190601f1680156149035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161491d57fe5b049050809150509392505050565b6000806000806149576064614949888a61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149816064614973888b61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149aa8761499c858c613d4090919063ffffffff16565b613d4090919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806149da858861403890919063ffffffff16565b905060006149f1868861403890919063ffffffff16565b90506000614a088284613d4090919063ffffffff16565b905082818395509550955050505093509350939050565b614a4a307f00000000000000000000000000000000000000000000000000000000000000008461330c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614a9461282d565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614b1957600080fd5b505af1158015614b2d573d6000803e3d6000fd5b50505050506040513d6060811015614b4457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614b8457506000601254145b8015614b9257506000601354145b15614b9c57614bd0565b6011546014819055506012546015819055506013546016819055506000601181905550600060128190555060006013819055505b565b600080600080600080614be487613cc5565b955095509550955095509550614c4287600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cd786600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d6c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614db88161556f565b614dc28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e4487613cc5565b955095509550955095509550614ea286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f3783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fcc85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150188161556f565b6150228483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150a487613cc5565b95509550955095509550955061510286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061519785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151e38161556f565b6151ed8483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061526f87613cc5565b9550955095509550955095506152cd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061536286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153f783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061548c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154d88161556f565b6154e28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601454601181905550601554601281905550601654601381905550565b6000615579613bc8565b90506000615590828461403890919063ffffffff16565b90506155e481600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561570f576156cb83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61572982600c54613d4090919063ffffffff16565b600c8190555061574481600d54613c3d90919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122064a3a5e5248fd41d8196a14451bca5c822be92591fed9e0e54866f9d98f0a64864736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102295760003560e01c80635342acb411610123578063a52fe9bb116100ab578063d543dbeb1161006f578063d543dbeb14610c69578063dd62ed3e14610ca4578063f2fde38b14610d29578063f429389014610d7a578063f815a84214610d9157610230565b8063a52fe9bb14610ae8578063a9059cbb14610b23578063af9549e014610b94578063bcd6d44614610bf1578063c49b9a8014610c2c57610230565b80637ded4d6a116100f25780637ded4d6a146108ee57806388f820201461093f5780638da5cb5b146109a657806395d89b41146109e7578063a457c2d714610a7757610230565b80635342acb4146107d05780635880b8731461083757806370a0823114610872578063715018a6146108d757610230565b8063313ce567116101b15780634549b039116101755780634549b0391461069f57806349bd5a5e146106fa5780634a74bb021461073b57806351bc3c851461076857806352390c021461077f57610230565b8063313ce567146105235780633685d4191461055157806339509351146105a25780633bd5d173146106135780634303443d1461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631decaadc146103cd57806323b872dd146104085780632d8381191461049957806330599fc5146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610dbc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5e565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e7c565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610eaa565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610eb4565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe3565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b81019080803590602001909291905050506110bc565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506105216004803603602081101561050b57600080fd5b8101908080359060200190929190505050611140565b005b34801561052f57600080fd5b5061053861122f565b604051808260ff16815260200191505060405180910390f35b34801561055d57600080fd5b506105a06004803603602081101561057457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611246565b005b3480156105ae57600080fd5b506105fb600480360360408110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d0565b60405180821515815260200191505060405180910390f35b34801561061f57600080fd5b5061064c6004803603602081101561063657600080fd5b8101908080359060200190929190505050611683565b005b34801561065a57600080fd5b5061069d6004803603602081101561067157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611814565b005b3480156106ab57600080fd5b506106e4600480360360408110156106c257600080fd5b8101908080359060200190929190803515159060200190929190505050611af3565b6040518082815260200191505060405180910390f35b34801561070657600080fd5b5061070f611baa565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074757600080fd5b50610750611bce565b60405180821515815260200191505060405180910390f35b34801561077457600080fd5b5061077d611be1565b005b34801561078b57600080fd5b506107ce600480360360208110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc2565b005b3480156107dc57600080fd5b5061081f600480360360208110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612075565b60405180821515815260200191505060405180910390f35b34801561084357600080fd5b506108706004803603602081101561085a57600080fd5b81019080803590602001909291905050506120cb565b005b34801561087e57600080fd5b506108c16004803603602081101561089557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612221565b6040518082815260200191505060405180910390f35b3480156108e357600080fd5b506108ec61230c565b005b3480156108fa57600080fd5b5061093d6004803603602081101561091157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612492565b005b34801561094b57600080fd5b5061098e6004803603602081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127d7565b60405180821515815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61282d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f357600080fd5b506109fc612856565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a3c578082015181840152602081019050610a21565b50505050905090810190601f168015610a695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a8357600080fd5b50610ad060048036036040811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506128f8565b60405180821515815260200191505060405180910390f35b348015610af457600080fd5b50610b2160048036036020811015610b0b57600080fd5b81019080803590602001909291905050506129c5565b005b348015610b2f57600080fd5b50610b7c60048036036040811015610b4657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b1b565b60405180821515815260200191505060405180910390f35b348015610ba057600080fd5b50610bef60048036036040811015610bb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612b39565b005b348015610bfd57600080fd5b50610c2a60048036036020811015610c1457600080fd5b8101908080359060200190929190505050612c5c565b005b348015610c3857600080fd5b50610c6760048036036020811015610c4f57600080fd5b81019080803515159060200190929190505050612db2565b005b348015610c7557600080fd5b50610ca260048036036020811015610c8c57600080fd5b8101908080359060200190929190505050612e97565b005b348015610cb057600080fd5b50610d1360048036036040811015610cc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f91565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610d7860048036036020811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613018565b005b348015610d8657600080fd5b50610d8f613223565b005b348015610d9d57600080fd5b50610da66132fc565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b5050505050905090565b6000610e72610e6b613304565b848461330c565b6001905092915050565b6000600d54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600b54905090565b610ebc613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015610fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806158eb603e913960400191505060405180910390fd5b8060198190555050565b6000610ff0848484613503565b6110b184610ffc613304565b6110ac8560405180606001604052806028815260200161582d60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611062613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b600190509392505050565b6000600c54821115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615772602a913960400191505060405180910390fd5b6000611123613bc8565b90506111388184613bf390919063ffffffff16565b915050919050565b611148613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61121a3061121461282d565b8361330c565b61122c3061122661282d565b83613503565b50565b6000601060009054906101000a900460ff16905090565b61124e613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156115cc578173ffffffffffffffffffffffffffffffffffffffff166008828154811061140157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bf5760086001600880549050038154811061145d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061149557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061158557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556115cc565b80806001019150506113d0565b5050565b60006116796115dd613304565b8461167485600560006115ee613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b61330c565b6001905092915050565b600061168d613304565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061594b602c913960400191505060405180910390fd5b600061173d83613cc5565b5050505050905061179681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117ee81600c54613d4090919063ffffffff16565b600c8190555061180983600d54613c3d90919063ffffffff16565b600d81905550505050565b61181c613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061587e6024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b54831115611b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b8d576000611b7d84613cc5565b5050505050905080915050611ba4565b6000611b9884613cc5565b50505050915050809150505b92915050565b7f0000000000000000000000008adefc4c3a92ecdfbf71e2715bdf365724083b6381565b601760159054906101000a900460ff1681565b611be9613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611cb430612221565b9050611cbf81613d8a565b50565b611cca613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159296022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ee3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fb757611f73600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6120d3613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156121a5575060318111155b612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060118190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122bc57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612307565b612304600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b90505b919050565b612314613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61249a613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a805490508110156127d3578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061264d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c657600a6001600a8054905003815481106126a957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a82815481106126e157fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061278c57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556127d3565b808060010191505061261c565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128ee5780601f106128c3576101008083540402835291602001916128ee565b820191906000526020600020905b8154815290600101906020018083116128d157829003601f168201915b5050505050905090565b60006129bb612905613304565b846129b685604051806060016040528060258152602001615977602591396005600061292f613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b6001905092915050565b6129cd613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612a9f575060318111155b612b11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060128190555050565b6000612b2f612b28613304565b8484613503565b6001905092915050565b612b41613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612c64613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612d36575060318111155b612da8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060138190555050565b612dba613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601760156101000a81548160ff02191690831515021790555050565b612e9f613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f886103e8612f7a83600b5461403890919063ffffffff16565b613bf390919063ffffffff16565b60188190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613020613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061579c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61322b613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790506132f9816140be565b50565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806158c76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157c26022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158a26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561360f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061574f6023913960400191505060405180910390fd5b60008111613668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158556029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613728576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6138b061282d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561391e57506138ee61282d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561397f5760185481111561397e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806157e46028913960400191505060405180910390fd5b5b600061398a30612221565b9050601854811061399b5760185490505b60006019548210159050601760149054906101000a900460ff161580156139ce5750601760159054906101000a900460ff165b80156139d75750805b8015613a2f57507f0000000000000000000000008adefc4c3a92ecdfbf71e2715bdf365724083b6373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613a43576019549150613a428261412a565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613aea5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af457600090505b613b00868686846142c3565b505050505050565b6000838311158290613bb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b7a578082015181840152602081019050613b5f565b50505050905090810190601f168015613ba75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613bd56145d4565b91509150613bec8183613bf390919063ffffffff16565b9250505090565b6000613c3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614865565b905092915050565b600080828401905083811015613cbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613cf68a601154613cf1601354601254613c3d90919063ffffffff16565b61492b565b9250925092506000613d06613bc8565b90506000806000613d188e87866149c1565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613d8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b08565b905092915050565b6060600267ffffffffffffffff81118015613da457600080fd5b50604051908082528060200260200182016040528015613dd35781602001602082028036833780820191505090505b5090503081600081518110613de457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e8457600080fd5b505afa158015613e98573d6000803e3d6000fd5b505050506040513d6020811015613eae57600080fd5b810190808051906020019092919050505081600181518110613ecc57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f31307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461330c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613ff3578082015181840152602081019050613fd8565b505050509050019650505050505050600060405180830381600087803b15801561401c57600080fd5b505af1158015614030573d6000803e3d6000fd5b505050505050565b60008083141561404b57600090506140b8565b600082840290508284828161405c57fe5b04146140b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061580c6021913960400191505060405180910390fd5b809150505b92915050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614126573d6000803e3d6000fd5b5050565b6001601760146101000a81548160ff0219169083151502179055506000614184614161601354601254613c3d90919063ffffffff16565b6141766012548561403890919063ffffffff16565b613bf390919063ffffffff16565b9050600061419b8284613d4090919063ffffffff16565b905060006141b3600283613bf390919063ffffffff16565b905060006141ca8284613d4090919063ffffffff16565b9050600047905060006141e68685613c3d90919063ffffffff16565b90506141f181613d8a565b60006142068347613d4090919063ffffffff16565b9050600061422f83614221888561403890919063ffffffff16565b613bf390919063ffffffff16565b905061423b8582614a1f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a161429d6142988284613d4090919063ffffffff16565b6140be565b50505050505050506000601760146101000a81548160ff02191690831515021790555050565b806142d1576142d0614b70565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143745750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561438957614384848484614bd2565b6145c0565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561442c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156144415761443c848484614e32565b6145bf565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144e55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156144fa576144f5848484615092565b6145be565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561459c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156145b1576145ac84848461525d565b6145bd565b6145bc848484615092565b5b5b5b5b806145ce576145cd615552565b5b50505050565b6000806000600c5490506000600b54905060005b6008805490508110156148285782600360006008848154811061460757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806146ee575081600460006008848154811061468657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561470557600c54600b5494509450505050614861565b61478e600360006008848154811061471957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613d4090919063ffffffff16565b925061481960046000600884815481106147a457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613d4090919063ffffffff16565b915080806001019150506145e8565b50614840600b54600c54613bf390919063ffffffff16565b82101561485857600c54600b54935093505050614861565b81819350935050505b9091565b60008083118290614911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156148d65780820151818401526020810190506148bb565b50505050905090810190601f1680156149035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161491d57fe5b049050809150509392505050565b6000806000806149576064614949888a61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149816064614973888b61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149aa8761499c858c613d4090919063ffffffff16565b613d4090919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806149da858861403890919063ffffffff16565b905060006149f1868861403890919063ffffffff16565b90506000614a088284613d4090919063ffffffff16565b905082818395509550955050505093509350939050565b614a4a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461330c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614a9461282d565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614b1957600080fd5b505af1158015614b2d573d6000803e3d6000fd5b50505050506040513d6060811015614b4457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614b8457506000601254145b8015614b9257506000601354145b15614b9c57614bd0565b6011546014819055506012546015819055506013546016819055506000601181905550600060128190555060006013819055505b565b600080600080600080614be487613cc5565b955095509550955095509550614c4287600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cd786600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d6c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614db88161556f565b614dc28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e4487613cc5565b955095509550955095509550614ea286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f3783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fcc85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150188161556f565b6150228483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150a487613cc5565b95509550955095509550955061510286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061519785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151e38161556f565b6151ed8483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061526f87613cc5565b9550955095509550955095506152cd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061536286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153f783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061548c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154d88161556f565b6154e28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601454601181905550601554601281905550601654601381905550565b6000615579613bc8565b90506000615590828461403890919063ffffffff16565b90506155e481600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561570f576156cb83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61572982600c54613d4090919063ffffffff16565b600c8190555061574481600d54613c3d90919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122064a3a5e5248fd41d8196a14451bca5c822be92591fed9e0e54866f9d98f0a64864736f6c634300060c0033

Deployed Bytecode Sourcemap

23469:23283:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27796:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28708:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29974:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24835:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28073:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46013:309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28877:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30898:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46557:192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27982:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31613:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29198:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30069:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32100:352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30454:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24893:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24976:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38644:156;;;;;;;;;;;;;:::i;:::-;;31159:446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33489:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45398:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28176:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14961:148;;;;;;;;;;;;;:::i;:::-;;32460:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29701:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14327:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27887:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29424:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45575:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28382:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29829:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45794:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38975:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46330:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28557:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15261:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38808:159;;;;;;;;;;;;;:::i;:::-;;45280:110;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27796:83;27833:13;27866:5;27859:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27796:83;:::o;28708:161::-;28783:4;28800:39;28809:12;:10;:12::i;:::-;28823:7;28832:6;28800:8;:39::i;:::-;28857:4;28850:11;;28708:161;;;;:::o;29974:87::-;30016:7;30043:10;;30036:17;;29974:87;:::o;24835:51::-;;;:::o;28073:95::-;28126:7;28153;;28146:14;;28073:95;:::o;46013:309::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46168:5:::1;46135:29;:38;;46127:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46285:29;46252:30;:62;;;;46013:309:::0;:::o;28877:313::-;28975:4;28992:36;29002:6;29010:9;29021:6;28992:9;:36::i;:::-;29039:121;29048:6;29056:12;:10;:12::i;:::-;29070:89;29108:6;29070:89;;;;;;;;;;;;;;;;;:11;:19;29082:6;29070:19;;;;;;;;;;;;;;;:33;29090:12;:10;:12::i;:::-;29070:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29039:8;:121::i;:::-;29178:4;29171:11;;28877:313;;;;;:::o;30898:253::-;30964:7;31003;;30992;:18;;30984:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31068:19;31091:10;:8;:10::i;:::-;31068:33;;31119:24;31131:11;31119:7;:11;;:24;;;;:::i;:::-;31112:31;;;30898:253;;;:::o;46557:192::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46639:45:::1;46656:4;46663:7;:5;:7::i;:::-;46672:11;46639:8;:45::i;:::-;46695:46;46713:4;46720:7;:5;:7::i;:::-;46729:11;46695:9;:46::i;:::-;46557:192:::0;:::o;27982:83::-;28023:5;28048:9;;;;;;;;;;;28041:16;;27982:83;:::o;31613:479::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31695:11:::1;:20;31707:7;31695:20;;;;;;;;;;;;;;;;;;;;;;;;;31687:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31763:9;31758:327;31782:9;:16;;;;31778:1;:20;31758:327;;;31840:7;31824:23;;:9;31834:1;31824:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;31820:254;;;31883:9;31912:1;31893:9;:16;;;;:20;31883:31;;;;;;;;;;;;;;;;;;;;;;;;;31868:9;31878:1;31868:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31952:1;31933:7;:16;31941:7;31933:16;;;;;;;;;;;;;;;:20;;;;31995:5;31972:11;:20;31984:7;31972:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32019:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32053:5;;31820:254;31800:3;;;;;;;31758:327;;;;31613:479:::0;:::o;29198:218::-;29286:4;29303:83;29312:12;:10;:12::i;:::-;29326:7;29335:50;29374:10;29335:11;:25;29347:12;:10;:12::i;:::-;29335:25;;;;;;;;;;;;;;;:34;29361:7;29335:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29303:8;:83::i;:::-;29404:4;29397:11;;29198:218;;;;:::o;30069:377::-;30121:14;30138:12;:10;:12::i;:::-;30121:29;;30170:11;:19;30182:6;30170:19;;;;;;;;;;;;;;;;;;;;;;;;;30169:20;30161:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30250:15;30274:19;30285:7;30274:10;:19::i;:::-;30249:44;;;;;;;30322:28;30342:7;30322;:15;30330:6;30322:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30304:7;:15;30312:6;30304:15;;;;;;;;;;;;;;;:46;;;;30371:20;30383:7;30371;;:11;;:20;;;;:::i;:::-;30361:7;:30;;;;30415:23;30430:7;30415:10;;:14;;:23;;;;:::i;:::-;30402:10;:36;;;;30069:377;;;:::o;32100:352::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32195:42:::1;32184:53;;:7;:53;;;;32176:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32298:17;:26;32316:7;32298:26;;;;;;;;;;;;;;;;;;;;;;;;;32297:27;32289:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32399:4;32370:17;:26;32388:7;32370:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32414:16;32436:7;32414:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32100:352:::0;:::o;30454:436::-;30544:7;30583;;30572;:18;;30564:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30642:17;30637:246;;30677:15;30701:19;30712:7;30701:10;:19::i;:::-;30676:44;;;;;;;30742:7;30735:14;;;;;30637:246;30784:23;30815:19;30826:7;30815:10;:19::i;:::-;30782:52;;;;;;;30856:15;30849:22;;;30454:436;;;;;:::o;24893:38::-;;;:::o;24976:40::-;;;;;;;;;;;;;:::o;38644:156::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38698:23:::1;38724:24;38742:4;38724:9;:24::i;:::-;38698:50;;38759:33;38776:15;38759:16;:33::i;:::-;14607:1;38644:156::o:0;31159:446::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31254:42:::1;31243:53;;:7;:53;;;;31235:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31355:11;:20;31367:7;31355:20;;;;;;;;;;;;;;;;;;;;;;;;;31354:21;31346:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31440:1;31421:7;:16;31429:7;31421:16;;;;;;;;;;;;;;;;:20;31418:108;;;31477:37;31497:7;:16;31505:7;31497:16;;;;;;;;;;;;;;;;31477:19;:37::i;:::-;31458:7;:16;31466:7;31458:16;;;;;;;;;;;;;;;:56;;;;31418:108;31559:4;31536:11;:20;31548:7;31536:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31574:9;31589:7;31574:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31159:446:::0;:::o;33489:123::-;33553:4;33577:18;:27;33596:7;33577:27;;;;;;;;;;;;;;;;;;;;;;;;;33570:34;;33489:123;;;:::o;45398:169::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45484:1:::1;45474:6;:11;;:27;;;;;45499:2;45489:6;:12;;45474:27;45466:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45553:6;45543:7;:16;;;;45398:169:::0;:::o;28176:198::-;28242:7;28266:11;:20;28278:7;28266:20;;;;;;;;;;;;;;;;;;;;;;;;;28262:49;;;28295:7;:16;28303:7;28295:16;;;;;;;;;;;;;;;;28288:23;;;;28262:49;28329:37;28349:7;:16;28357:7;28349:16;;;;;;;;;;;;;;;;28329:19;:37::i;:::-;28322:44;;28176:198;;;;:::o;14961:148::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15068:1:::1;15031:40;;15052:6;::::0;::::1;;;;;;;;15031:40;;;;;;;;;;;;15099:1;15082:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;14961:148::o:0;32460:500::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32549:17:::1;:26;32567:7;32549:26;;;;;;;;;;;;;;;;;;;;;;;;;32541:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32622:9;32617:336;32641:16;:23;;;;32637:1;:27;32617:336;;;32713:7;32690:30;;:16;32707:1;32690:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;32686:256;;;32763:16;32806:1;32780:16;:23;;;;:27;32763:45;;;;;;;;;;;;;;;;;;;;;;;;;32741:16;32758:1;32741:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;32856:5;32827:17;:26;32845:7;32827:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32880:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32921:5;;32686:256;32666:3;;;;;;;32617:336;;;;32460:500:::0;:::o;29701:120::-;29769:4;29793:11;:20;29805:7;29793:20;;;;;;;;;;;;;;;;;;;;;;;;;29786:27;;29701:120;;;:::o;14327:79::-;14365:7;14392:6;;;;;;;;;;;14385:13;;14327:79;:::o;27887:87::-;27926:13;27959:7;27952:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27887:87;:::o;29424:269::-;29517:4;29534:129;29543:12;:10;:12::i;:::-;29557:7;29566:96;29605:15;29566:96;;;;;;;;;;;;;;;;;:11;:25;29578:12;:10;:12::i;:::-;29566:25;;;;;;;;;;;;;;;:34;29592:7;29566:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29534:8;:129::i;:::-;29681:4;29674:11;;29424:269;;;;:::o;45575:211::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45679:1:::1;45663:12;:17;;:39;;;;;45700:2;45684:12;:18;;45663:39;45655:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45766:12;45750:13;:28;;;;45575:211:::0;:::o;28382:167::-;28460:4;28477:42;28487:12;:10;:12::i;:::-;28501:9;28512:6;28477:9;:42::i;:::-;28537:4;28530:11;;28382:167;;;;:::o;29829:137::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29950:8:::1;29920:18;:27;29939:7;29920:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;29829:137:::0;;:::o;45794:211::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45898:1:::1;45882:12;:17;;:39;;;;;45919:2;45903:12;:18;;45882:39;45874:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45985:12;45969:13;:28;;;;45794:211:::0;:::o;38975:148::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39093:22:::1;39069:21;;:46;;;;;;;;;;;;;;;;;;38975:148:::0;:::o;46330:219::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46424:117:::1;46468:5;46424:25;46436:12;46424:7;;:11;;:25;;;;:::i;:::-;:29;;:117;;;;:::i;:::-;46409:12;:132;;;;46330:219:::0;:::o;28557:143::-;28638:7;28665:11;:18;28677:5;28665:18;;;;;;;;;;;;;;;:27;28684:7;28665:27;;;;;;;;;;;;;;;;28658:34;;28557:143;;;;:::o;15261:244::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15370:1:::1;15350:22;;:8;:22;;;;15342:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15460:8;15431:38;;15452:6;::::0;::::1;;;;;;;;15431:38;;;;;;;;;;;;15489:8;15480:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15261:244:::0;:::o;38808:159::-;14547:12;:10;:12::i;:::-;14537:22;;:6;;;;;;;;;;:22;;;14529:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38860:26:::1;38889:21;38860:50;;38921:38;38940:18;38921;:38::i;:::-;14607:1;38808:159::o:0;45280:110::-;45326:15;45361:21;45354:28;;45280:110;:::o;148:106::-;201:15;236:10;229:17;;148:106;:::o;33620:337::-;33730:1;33713:19;;:5;:19;;;;33705:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33811:1;33792:21;;:7;:21;;;;33784:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33895:6;33865:11;:18;33877:5;33865:18;;;;;;;;;;;;;;;:27;33884:7;33865:27;;;;;;;;;;;;;;;:36;;;;33933:7;33917:32;;33926:5;33917:32;;;33942:6;33917:32;;;;;;;;;;;;;;;;;;33620:337;;;:::o;33965:1963::-;34080:1;34062:20;;:6;:20;;;;34054:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34164:1;34143:23;;:9;:23;;;;34135:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34234:1;34225:6;:10;34217:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34301:17;:25;34319:6;34301:25;;;;;;;;;;;;;;;;;;;;;;;;;34300:26;34292:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34374:17;:28;34392:9;34374:28;;;;;;;;;;;;;;;;;;;;;;;;;34373:29;34365:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34450:17;:28;34468:9;34450:28;;;;;;;;;;;;;;;;;;;;;;;;;34449:29;34441:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34532:7;:5;:7::i;:::-;34522:17;;:6;:17;;;;:41;;;;;34556:7;:5;:7::i;:::-;34543:20;;:9;:20;;;;34522:41;34519:148;;;34598:12;;34588:6;:22;;34580:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34519:148;34961:28;34992:24;35010:4;34992:9;:24::i;:::-;34961:55;;35056:12;;35032:20;:36;35029:112;;35117:12;;35094:35;;35029:112;35153:24;35204:30;;35180:20;:54;;35153:81;;35250:16;;;;;;;;;;;35249:17;:42;;;;;35270:21;;;;;;;;;;;35249:42;:65;;;;;35295:19;35249:65;:92;;;;;35328:13;35318:23;;:6;:23;;;;35249:92;35245:258;;;35381:30;;35358:53;;35455:36;35470:20;35455:14;:36::i;:::-;35245:258;35576:12;35591:4;35576:19;;35695:18;:26;35714:6;35695:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;35725:18;:29;35744:9;35725:29;;;;;;;;;;;;;;;;;;;;;;;;;35695:59;35692:105;;;35780:5;35770:15;;35692:105;35870:50;35885:6;35893:9;35904:6;35912:7;35870:14;:50::i;:::-;33965:1963;;;;;;:::o;4235:192::-;4321:7;4354:1;4349;:6;;4357:12;4341:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4381:9;4397:1;4393;:5;4381:17;;4418:1;4411:8;;;4235:192;;;;;:::o;44342:163::-;44383:7;44404:15;44421;44440:19;:17;:19::i;:::-;44403:56;;;;44477:20;44489:7;44477;:11;;:20;;;;:::i;:::-;44470:27;;;;44342:163;:::o;5613:132::-;5671:7;5698:39;5702:1;5705;5698:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5691:46;;5613:132;;;;:::o;3350:181::-;3408:7;3428:9;3444:1;3440;:5;3428:17;;3469:1;3464;:6;;3456:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3522:1;3515:8;;;3350:181;;;;:::o;43037:518::-;43096:7;43105;43114;43123;43132;43141;43162:23;43187:12;43201:30;43235:63;43247:7;43256;;43265:32;43283:13;;43265;;:17;;:32;;;;:::i;:::-;43235:11;:63::i;:::-;43161:137;;;;;;43309:19;43331:10;:8;:10::i;:::-;43309:32;;43353:15;43370:23;43395:12;43411:39;43423:7;43432:4;43438:11;43411;:39::i;:::-;43352:98;;;;;;43469:7;43478:15;43495:4;43501:15;43518:4;43524:22;43461:86;;;;;;;;;;;;;;;;;;;43037:518;;;;;;;:::o;3805:136::-;3863:7;3890:43;3894:1;3897;3890:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3883:50;;3805:136;;;;:::o;37265:589::-;37391:21;37429:1;37415:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37391:40;;37460:4;37442;37447:1;37442:7;;;;;;;;;;;;;:23;;;;;;;;;;;37486:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37476:4;37481:1;37476:7;;;;;;;;;;;;;:32;;;;;;;;;;;37521:62;37538:4;37553:15;37571:11;37521:8;:62::i;:::-;37622:15;:66;;;37703:11;37729:1;37773:4;37800;37820:15;37622:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37265:589;;:::o;4677:471::-;4735:7;4985:1;4980;:6;4976:47;;;5010:1;5003:8;;;;4976:47;5035:9;5051:1;5047;:5;5035:17;;5080:1;5075;5071;:5;;;;;;:10;5063:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5139:1;5132:8;;;4677:471;;;;;:::o;38383:111::-;38446:23;;;;;;;;;;;:32;;:40;38479:6;38446:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38383:111;:::o;35936:1321::-;25523:4;25504:16;;:23;;;;;;;;;;;;;;;;;;36021:19:::1;36043:77;36087:32;36105:13;;36087;;:17;;:32;;;;:::i;:::-;36043:39;36068:13;;36043:20;:24;;:39;;;;:::i;:::-;:43;;:77;;;;:::i;:::-;36021:99;;36131:17;36151:37;36176:11;36151:20;:24;;:37;;;;:::i;:::-;36131:57;;36252:12;36267:16;36281:1;36267:9;:13;;:16;;;;:::i;:::-;36252:31;;36294:17;36314:19;36328:4;36314:9;:13;;:19;;;;:::i;:::-;36294:39;;36611:22;36636:21;36611:46;;36702:20;36725:21;36734:11;36725:4;:8;;:21;;;;:::i;:::-;36702:44;;36757:30;36774:12;36757:16;:30::i;:::-;36918:16;36937:41;36963:14;36937:21;:25;;:41;;;;:::i;:::-;36918:60;;36989:18;37010:36;37033:12;37010:18;37023:4;37010:8;:12;;:18;;;;:::i;:::-;:22;;:36;;;;:::i;:::-;36989:57;;37096:35;37109:9;37120:10;37096:12;:35::i;:::-;37149:43;37164:4;37170:10;37182:9;37149:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37205:44;37224:24;37237:10;37224:8;:12;;:24;;;;:::i;:::-;37205:18;:44::i;:::-;25538:1;;;;;;;;25569:5:::0;25550:16;;:24;;;;;;;;;;;;;;;;;;35936:1321;:::o;39131:819::-;39243:7;39239:40;;39265:14;:12;:14::i;:::-;39239:40;39296:11;:19;39308:6;39296:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39320:11;:22;39332:9;39320:22;;;;;;;;;;;;;;;;;;;;;;;;;39319:23;39296:46;39292:597;;;39359:48;39381:6;39389:9;39400:6;39359:21;:48::i;:::-;39292:597;;;39430:11;:19;39442:6;39430:19;;;;;;;;;;;;;;;;;;;;;;;;;39429:20;:46;;;;;39453:11;:22;39465:9;39453:22;;;;;;;;;;;;;;;;;;;;;;;;;39429:46;39425:464;;;39492:46;39512:6;39520:9;39531:6;39492:19;:46::i;:::-;39425:464;;;39561:11;:19;39573:6;39561:19;;;;;;;;;;;;;;;;;;;;;;;;;39560:20;:47;;;;;39585:11;:22;39597:9;39585:22;;;;;;;;;;;;;;;;;;;;;;;;;39584:23;39560:47;39556:333;;;39624:44;39642:6;39650:9;39661:6;39624:17;:44::i;:::-;39556:333;;;39690:11;:19;39702:6;39690:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39713:11;:22;39725:9;39713:22;;;;;;;;;;;;;;;;;;;;;;;;;39690:45;39686:203;;;39752:48;39774:6;39782:9;39793:6;39752:21;:48::i;:::-;39686:203;;;39833:44;39851:6;39859:9;39870:6;39833:17;:44::i;:::-;39686:203;39556:333;39425:464;39292:597;39905:7;39901:41;;39927:15;:13;:15::i;:::-;39901:41;39131:819;;;;:::o;44513:555::-;44563:7;44572;44592:15;44610:7;;44592:25;;44628:15;44646:7;;44628:25;;44669:9;44664:289;44688:9;:16;;;;44684:1;:20;44664:289;;;44754:7;44730;:21;44738:9;44748:1;44738:12;;;;;;;;;;;;;;;;;;;;;;;;;44730:21;;;;;;;;;;;;;;;;:31;:66;;;;44789:7;44765;:21;44773:9;44783:1;44773:12;;;;;;;;;;;;;;;;;;;;;;;;;44765:21;;;;;;;;;;;;;;;;:31;44730:66;44726:97;;;44806:7;;44815;;44798:25;;;;;;;;;44726:97;44848:34;44860:7;:21;44868:9;44878:1;44868:12;;;;;;;;;;;;;;;;;;;;;;;;;44860:21;;;;;;;;;;;;;;;;44848:7;:11;;:34;;;;:::i;:::-;44838:44;;44907:34;44919:7;:21;44927:9;44937:1;44927:12;;;;;;;;;;;;;;;;;;;;;;;;;44919:21;;;;;;;;;;;;;;;;44907:7;:11;;:34;;;;:::i;:::-;44897:44;;44706:3;;;;;;;44664:289;;;;44977:20;44989:7;;44977;;:11;;:20;;;;:::i;:::-;44967:7;:30;44963:61;;;45007:7;;45016;;44999:25;;;;;;;;44963:61;45043:7;45052;45035:25;;;;;;44513:555;;;:::o;6230:278::-;6316:7;6348:1;6344;:5;6351:12;6336:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6375:9;6391:1;6387;:5;;;;;;6375:17;;6499:1;6492:8;;;6230:278;;;;;:::o;43563:429::-;43670:7;43679;43688;43708:12;43723:28;43747:3;43723:19;43735:6;43723:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43708:43;;43762:30;43795:43;43834:3;43795:34;43807:21;43795:7;:11;;:34;;;;:::i;:::-;:38;;:43;;;;:::i;:::-;43762:76;;43849:23;43875:44;43897:21;43875:17;43887:4;43875:7;:11;;:17;;;;:::i;:::-;:21;;:44;;;;:::i;:::-;43849:70;;43938:15;43955:4;43961:22;43930:54;;;;;;;;;43563:429;;;;;;;:::o;44000:334::-;44095:7;44104;44113;44133:15;44151:24;44163:11;44151:7;:11;;:24;;;;:::i;:::-;44133:42;;44186:12;44201:21;44210:11;44201:4;:8;;:21;;;;:::i;:::-;44186:36;;44233:23;44259:17;44271:4;44259:7;:11;;:17;;;;:::i;:::-;44233:43;;44295:7;44304:15;44321:4;44287:39;;;;;;;;;44000:334;;;;;;;:::o;37862:513::-;38010:62;38027:4;38042:15;38060:11;38010:8;:62::i;:::-;38115:15;:31;;;38154:9;38187:4;38207:11;38233:1;38276;38319:7;:5;:7::i;:::-;38341:15;38115:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37862:513;;:::o;32968:332::-;33025:1;33014:7;;:12;:34;;;;;33047:1;33030:13;;:18;33014:34;:56;;;;;33069:1;33052:13;;:18;33014:56;33011:68;;;33072:7;;33011:68;33109:7;;33091:15;:25;;;;33151:13;;33127:21;:37;;;;33199:13;;33175:21;:37;;;;33235:1;33225:7;:11;;;;33263:1;33247:13;:17;;;;33291:1;33275:13;:17;;;;32968:332;:::o;41105:590::-;41208:15;41225:23;41250:12;41264:23;41289:12;41303:27;41334:19;41345:7;41334:10;:19::i;:::-;41207:146;;;;;;;;;;;;41382:28;41402:7;41382;:15;41390:6;41382:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41364:7;:15;41372:6;41364:15;;;;;;;;;;;;;;;:46;;;;41439:28;41459:7;41439;:15;41447:6;41439:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41421:7;:15;41429:6;41421:15;;;;;;;;;;;;;;;:46;;;;41499:39;41522:15;41499:7;:18;41507:9;41499:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41478:7;:18;41486:9;41478:18;;;;;;;;;;;;;;;:60;;;;41549:44;41573:19;41549:23;:44::i;:::-;41604:23;41616:4;41622;41604:11;:23::i;:::-;41660:9;41643:44;;41652:6;41643:44;;;41671:15;41643:44;;;;;;;;;;;;;;;;;;41105:590;;;;;;;;;:::o;40495:602::-;40596:15;40613:23;40638:12;40652:23;40677:12;40691:27;40722:19;40733:7;40722:10;:19::i;:::-;40595:146;;;;;;;;;;;;40770:28;40790:7;40770;:15;40778:6;40770:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40752:7;:15;40760:6;40752:15;;;;;;;;;;;;;;;:46;;;;40830:39;40853:15;40830:7;:18;40838:9;40830:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40809:7;:18;40817:9;40809:18;;;;;;;;;;;;;;;:60;;;;40901:39;40924:15;40901:7;:18;40909:9;40901:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40880:7;:18;40888:9;40880:18;;;;;;;;;;;;;;;:60;;;;40951:44;40975:19;40951:23;:44::i;:::-;41006:23;41018:4;41024;41006:11;:23::i;:::-;41062:9;41045:44;;41054:6;41045:44;;;41073:15;41045:44;;;;;;;;;;;;;;;;;;40495:602;;;;;;;;;:::o;39958:529::-;40057:15;40074:23;40099:12;40113:23;40138:12;40152:27;40183:19;40194:7;40183:10;:19::i;:::-;40056:146;;;;;;;;;;;;40231:28;40251:7;40231;:15;40239:6;40231:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40213:7;:15;40221:6;40213:15;;;;;;;;;;;;;;;:46;;;;40291:39;40314:15;40291:7;:18;40299:9;40291:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40270:7;:18;40278:9;40270:18;;;;;;;;;;;;;;;:60;;;;40341:44;40365:19;40341:23;:44::i;:::-;40396:23;40408:4;40414;40396:11;:23::i;:::-;40452:9;40435:44;;40444:6;40435:44;;;40463:15;40435:44;;;;;;;;;;;;;;;;;;39958:529;;;;;;;;;:::o;41703:661::-;41806:15;41823:23;41848:12;41862:23;41887:12;41901:27;41932:19;41943:7;41932:10;:19::i;:::-;41805:146;;;;;;;;;;;;41980:28;42000:7;41980;:15;41988:6;41980:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41962:7;:15;41970:6;41962:15;;;;;;;;;;;;;;;:46;;;;42037:28;42057:7;42037;:15;42045:6;42037:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42019:7;:15;42027:6;42019:15;;;;;;;;;;;;;;;:46;;;;42097:39;42120:15;42097:7;:18;42105:9;42097:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42076:7;:18;42084:9;42076:18;;;;;;;;;;;;;;;:60;;;;42168:39;42191:15;42168:7;:18;42176:9;42168:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42147:7;:18;42155:9;42147:18;;;;;;;;;;;;;;;:60;;;;42218:44;42242:19;42218:23;:44::i;:::-;42273:23;42285:4;42291;42273:11;:23::i;:::-;42329:9;42312:44;;42321:6;42312:44;;;42340:15;42312:44;;;;;;;;;;;;;;;;;;41703:661;;;;;;;;;:::o;33308:173::-;33362:15;;33352:7;:25;;;;33404:21;;33388:13;:37;;;;33452:21;;33436:13;:37;;;;33308:173::o;42372:408::-;42453:19;42475:10;:8;:10::i;:::-;42453:32;;42496:27;42526:36;42550:11;42526:19;:23;;:36;;;;:::i;:::-;42496:66;;42598:47;42625:19;42598:7;:22;42614:4;42598:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;42573:7;:22;42589:4;42573:22;;;;;;;;;;;;;;;:72;;;;42659:11;:26;42679:4;42659:26;;;;;;;;;;;;;;;;;;;;;;;;;42656:116;;;42725:47;42752:19;42725:7;:22;42741:4;42725:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;42700:7;:22;42716:4;42700:22;;;;;;;;;;;;;;;:72;;;;42656:116;42372:408;;;:::o;42788:147::-;42866:17;42878:4;42866:7;;:11;;:17;;;;:::i;:::-;42856:7;:27;;;;42907:20;42922:4;42907:10;;:14;;:20;;;;:::i;:::-;42894:10;:33;;;;42788:147;;:::o

Swarm Source

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