ETH Price: $3,318.74 (+1.81%)
Gas: 3 Gwei

Token

Corfi (CRFI)
 

Overview

Max Total Supply

140,000 CRFI

Holders

157

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
4digit.eth
Balance
0.125825749433080862 CRFI

Value
$0.00
0x2592552707b9575afb566178134118a69d97fe29
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:
Corfi

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
    Corfi                                                            
   __  ___     _        _____          __               __ 
  /  |/  /__ _(_)__    / ___/__  ___  / /________ _____/ /_
 / /|_/ / _ `/ / _ \  / /__/ _ \/ _ \/ __/ __/ _ `/ __/ __/
/_/  /_/\_,_/_/_//_/  \___/\___/_//_/\__/_/  \_,_/\__/\__/ 
                                                           
*/

pragma solidity ^0.6.0;
//SPDX-License-Identifier: MIT

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [// importANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * // importANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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


 /**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

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


// pragma solidity >=0.5.0;

interface IUniswapV2ERC20 {
    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;
}



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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract Corfi is IERC20, Ownable, ReentrancyGuard {

    using SafeMath for uint256;
    
    mapping (address => mapping (address => uint256)) private _allowances;
    bool transferPaused = true;
    string private _name = "Corfi";
    string private _symbol = "CRFI";
    uint8 private _decimals = 18;
  
    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;
    address public _burnPool = 0x000000000000000000000000000000000000dEaD;
    address public presale; 
    mapping (address => uint256) private _aOwned;
    mapping (address => uint256) private _tOwned;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 14e22; // 140k
    uint256 private _aTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;


    uint8 public feeDecimals;
    uint32 public feePercentage;
    uint256 public minTokensBeforeAddToLP;
    uint256 feeDivider = 9999999999999999999999999;

    uint256 internal _minimumSupply; 
    uint256 public _totalBurnedTokens;
    uint256 public _totalBurnedLpTokens;
    uint256 public _balanceOfLpTokens; 
    
    bool public inSwapAndAbsorb;
    bool public swapAndAbsorbEnabled;

    event FeeUpdated(uint8 feeDecimals, uint32 feePercentage);
    event MinTokensBeforeAddToLPUpdated(uint256 minTokensBeforeAddToLP);
    event SwapAndAbsorbEnabledUpdated(bool enabled);
    event SwapAndAbsorb(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    modifier lockTheAbsorption {
        inSwapAndAbsorb = true;
        _;
        inSwapAndAbsorb = false;
    }

    constructor(
        uint8 _feeDecimals,
        uint32 _feePercentage,
        uint256 _minTokensBeforeAddToLP,
        bool _swapAndAbsorbEnabled,
        address _presale
    ) public {
        // Internal ABS creation, minting it directly to the deployer
        // deployer needs to then seed the pair with some liquidity
        _aOwned[_msgSender()] = _aTotal;
        presale = _presale;

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

        // set the rest of the contract variables

        updateFee(_feeDecimals, _feePercentage);
        updateMinTokensBeforeAddToLP(_minTokensBeforeAddToLP);
        updateSwapAndAbsorbEnabled(_swapAndAbsorbEnabled);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }



    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
         if (_isExcluded[account]) return _tOwned[account];
        return tokenFromAllocation(_aOwned[account]);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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 _transfer(address from, address to, uint256 amount) internal {
        if (transferPaused){
            if (to == address(uniswapV2Pair) || to == address(uniswapV2Router) || to == address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f)){
                revert(); // IUniswapV2Factory address
            }
        }
        // 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 & absorb if sender is the uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 tokensToLock = calcTokenFee(
            amount,
            feeDecimals,
            feePercentage
        );
        if (from == presale) tokensToLock = 0;
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeAddToLP;
        bool interactWithUniswap = to == uniswapV2Pair; 
        if (
            overMinTokenBalance &&
            !inSwapAndAbsorb &&
            interactWithUniswap &&
            swapAndAbsorbEnabled &&
            from != presale
        ) {
            swapAndAbsorb(contractTokenBalance);
        }
        if (tokensToLock > 0){
            if (_isExcluded[from] && !_isExcluded[to]) {
                _transferFromExcluded(from, address(this), tokensToLock);
            } else if (!_isExcluded[from] && _isExcluded[to]) {
                _transferToExcluded(from, address(this), tokensToLock);
            } else if (!_isExcluded[from] && !_isExcluded[to]) {
                _transferStandard(from, address(this), tokensToLock);
            } else if (_isExcluded[from] && _isExcluded[to]) {
                _transferBothExcluded(from, address(this), tokensToLock);
            } else {
                _transferStandard(from, address(this), tokensToLock);
            }
        }


        // take the fee and send those tokens to this contract address
        // and then send the remainder of tokens to original recipient
        uint256 tokensToTransfer = amount.sub(tokensToLock);
        if (_isExcluded[from] && !_isExcluded[to]) {
            _transferFromExcluded(from, to, tokensToTransfer);
        } else if (!_isExcluded[from] && _isExcluded[to]) {
            _transferToExcluded(from, to, tokensToTransfer);
        } else if (!_isExcluded[from] && !_isExcluded[to]) {
            _transferStandard(from, to, tokensToTransfer);
        } else if (_isExcluded[from] && _isExcluded[to]) {
            _transferBothExcluded(from, to, tokensToTransfer);
        } else {
            _transferStandard(from, to, tokensToTransfer);
        }
    }
    
    function unPauseTransferForever() external nonReentrant {
        require (msg.sender == presale, "Only the presale contract can call this");
        transferPaused = false;
    }
 

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }



    function minimumSupply() external view returns (uint256){ 
        return _minimumSupply;
    }
    
    
    /*
        override the internal _transfer function so that we can
        take the fee, and conditionally do the swap + liquditiy
    */
    
    function swapAndAbsorb(uint256 contractTokenBalance) private lockTheAbsorption {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

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

        // swap tokens for ETH
        swapTokensForEth(half); // <- breaks the ETH -> ABS swap when swap+absorb is triggered

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

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

        emit SwapAndAbsorb(half, newBalance, otherHalf);
    }

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

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

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

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

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

    function updateFeesAndSwapsEnabled(uint8 absFeeDecimals, uint32 absFeePercentage, uint256 absFeeDivider, bool _enabled)
        public
        onlyOwner
        nonReentrant
    {
        require(absFeeDivider >= 5, "The fee cannot be more than 5%");
        require(absFeeDivider <= 1000, "The fee cannot be less than 0.1%");
        require(absFeePercentage <= 15, "The fee cannot be more than 15%");
        feeDivider = absFeeDivider;
        feeDecimals = absFeeDecimals;
        feePercentage = absFeePercentage;
        emit FeeUpdated(absFeeDecimals, absFeePercentage);
        
        if (swapAndAbsorbEnabled != _enabled){
        swapAndAbsorbEnabled = _enabled;
        emit SwapAndAbsorbEnabledUpdated(_enabled);
        }
       
    }

    /*
        calculates a percentage of tokens to hold as the fee
    */
    function calcTokenFee(
        uint256 _amount,
        uint8 _feeDecimals,
        uint32 _feePercentage
    ) public pure returns (uint256 locked) {
        locked = _amount.mul(_feePercentage).div(
            10**(uint256(_feeDecimals) + 2)
        );
    }

    receive() external payable {}

    ///
    /// Ownership adjustments
    ///

    function updateFee(uint8 _feeDecimals, uint32 _feePercentage)
        public
        onlyOwner
        nonReentrant
    {
        require(_feePercentage <= 15, "The fee can't be more than 15%");
        feeDecimals = _feeDecimals;
        feePercentage = _feePercentage;
        emit FeeUpdated(_feeDecimals, _feePercentage);
    }

    function updateMinTokensBeforeAddToLP(uint256 _minTokensBeforeAddToLP)
        public
        onlyOwner
        nonReentrant
    {
        minTokensBeforeAddToLP = _minTokensBeforeAddToLP;
        emit MinTokensBeforeAddToLPUpdated(_minTokensBeforeAddToLP);
    }

    function updateSwapAndAbsorbEnabled(bool _enabled) public onlyOwner nonReentrant {
        swapAndAbsorbEnabled = _enabled;
        emit SwapAndAbsorbEnabledUpdated(_enabled);
    }

    function burnLiq(address _token, address _to, uint256 _amount) public onlyOwner nonReentrant {
        require(_to != address(0),"ERC20 transfer to zero address");
        
        IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        _totalBurnedLpTokens = _totalBurnedLpTokens.sub(_amount);
        
        token.transfer(_burnPool, _amount);
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);       
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);   
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _aOwned[recipient] = _aOwned[recipient].add(aTransferAmount);        
        _allocationFee(aFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _allocationFee(uint256 aFee, uint256 tFee) private {
        _aTotal = _aTotal.sub(aFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = __getTValues(tAmount);
        uint256 currentRate =  _getRate();
        (uint256 aAmount, uint256 aTransferAmount, uint256 aFee) = _getAValues(tAmount, tFee, currentRate);
        return (aAmount, aTransferAmount, aFee, tTransferAmount, tFee);
    }
    
    function changeFeeDivider(uint256 n) external onlyOwner {
        require(n >= 5, "The fee can't be more than 20%");
        require(n <= 1000, "The fee can't be less than 0.1%");
        feeDivider = n;
    }
    
    function __getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tFee = tAmount.div(feeDivider);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getAValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 aAmount = tAmount.mul(currentRate);
        uint256 aFee = tFee.mul(currentRate);
        uint256 aTransferAmount = aAmount.sub(aFee);
        return (aAmount, aTransferAmount, aFee);
    }

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 aSupply = _aTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_aOwned[_excluded[i]] > aSupply || _tOwned[_excluded[i]] > tSupply) return (_aTotal, _tTotal);
            aSupply = aSupply.sub(_aOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (aSupply < _aTotal.div(_tTotal)) return (_aTotal, _tTotal);
        return (aSupply, tSupply);
    }
    function allocate(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 aAmount,,,,) = _getValues(tAmount);
        _aOwned[sender] = _aOwned[sender].sub(aAmount);
        _aTotal = _aTotal.sub(aAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function allocationFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 aAmount,,,,) = _getValues(tAmount);
            return aAmount;
        } else {
            (,uint256 aTransferAmount,,,) = _getValues(tAmount);
            return aTransferAmount;
        }
    }

    function tokenFromAllocation(uint256 aAmount) public view returns(uint256) {
        require(aAmount <= _aTotal, "Amount must be less than the total allocations");
        uint256 currentRate =  _getRate();
        return aAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner nonReentrant {
        require(!_isExcluded[account], "Account is already excluded");
        if(_aOwned[account] > 0) {
            _tOwned[account] = tokenFromAllocation(_aOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner nonReentrant {
        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;
            }
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"uint256","name":"_minTokensBeforeAddToLP","type":"uint256"},{"internalType":"bool","name":"_swapAndAbsorbEnabled","type":"bool"},{"internalType":"address","name":"_presale","type":"address"}],"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":"uint8","name":"feeDecimals","type":"uint8"},{"indexed":false,"internalType":"uint32","name":"feePercentage","type":"uint32"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeAddToLP","type":"uint256"}],"name":"MinTokensBeforeAddToLPUpdated","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":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndAbsorb","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndAbsorbEnabledUpdated","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":"_balanceOfLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"allocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"allocationFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnLiq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"calcTokenFee","outputs":[{"internalType":"uint256","name":"locked","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"changeFeeDivider","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndAbsorb","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":[],"name":"minTokensBeforeAddToLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndAbsorbEnabled","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":"aAmount","type":"uint256"}],"name":"tokenFromAllocation","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":"unPauseTransferForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"absFeeDecimals","type":"uint8"},{"internalType":"uint32","name":"absFeePercentage","type":"uint32"},{"internalType":"uint256","name":"absFeeDivider","type":"uint256"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateFeesAndSwapsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTokensBeforeAddToLP","type":"uint256"}],"name":"updateMinTokensBeforeAddToLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndAbsorbEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600360006101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f436f726669000000000000000000000000000000000000000000000000000000815250600490805190602001906200006c92919062000b9a565b506040518060400160405280600481526020017f435246490000000000000000000000000000000000000000000000000000000081525060059080519060200190620000ba92919062000b9a565b506012600660006101000a81548160ff021916908360ff16021790555061dead600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550691da56a4b0835bf800000600019816200013057fe5b0660001903600c556a0845951614014849ffffff6010553480156200015457600080fd5b506040516200600b3803806200600b833981810160405260a08110156200017a57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506000620001c5620005e760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060018081905550600c546008600062000281620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035b57600080fd5b505afa15801562000370573d6000803e3d6000fd5b505050506040513d60208110156200038757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040f57600080fd5b505afa15801562000424573d6000803e3d6000fd5b505050506040513d60208110156200043b57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004b657600080fd5b505af1158015620004cb573d6000803e3d6000fd5b505050506040513d6020811015620004e257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200053b8585620005ef60201b60201c565b6200054c836200084f60201b60201c565b6200055d82620009ea60201b60201c565b6200056d620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef691da56a4b0835bf8000006040518082815260200191505060405180910390a3505050505062000c40565b600033905090565b620005ff620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115620007c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6200085f620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b620009fa620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141562000b35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000bdd57805160ff191683800117855562000c0e565b8280016001018555821562000c0e579182015b8281111562000c0d57825182559160200191906001019062000bf0565b5b50905062000c1d919062000c21565b5090565b5b8082111562000c3c57600081600090555060010162000c22565b5090565b60805160601c6153a362000c6860003980611431528061346652806135f852506153a36000f3fe60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111eb565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b810190808035906020019092919050505061129e565b005b3480156105ab57600080fd5b506105b461142f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b8101908080359060200190929190803515159060200190929190505050611453565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611510565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff1690602001909291908035906020019092919080351515906020019092919050505061154f565b005b34801561071757600080fd5b5061072061190a565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a55565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d3d565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611e28565b005b34801561082557600080fd5b5061082e611fae565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611fb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611fe1565b005b3480156108cc57600080fd5b506108d5612171565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b50610900612177565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b50610990612219565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61221f565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612235565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612302565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b81019080803515159060200190929190505050612320565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b81019080803590602001909291905050506124c6565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a61254a565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b8861255d565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612570565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a6125f7565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff16906020019092919050505061260a565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061285f565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c01565b005b348015610d4e57600080fd5b50610d57612e0c565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e12565b005b348015610dca57600080fd5b50610dd3613224565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e1461324a565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed9613250565b8484613258565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000691da56a4b0835bf800000905090565b6000610f2184848461344f565b610fe284610f2d613250565b610fdd856040518060600160405280602881526020016152aa60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f93613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b611032613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b6103e88111156111e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e2774206265206c657373207468616e20302e31250081525060200191505060405180910390fd5b8060108190555050565b60006112946111f8613250565b8461128f8560026000611209613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b613258565b6001905092915050565b6112a6613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156113df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000691da56a4b0835bf8000008311156114d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816114f45760006114e584613e3c565b5050505090508091505061150a565b60006114ff84613e3c565b505050915050809150505b92915050565b600061154660028460ff1601600a0a6115388463ffffffff1687613e9490919063ffffffff16565b613f1a90919063ffffffff16565b90509392505050565b611557613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600582101561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e8821115611787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff161115611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118fd5780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b60026001541415611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806153226027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b611a5d613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611c5b82601354613f6490919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611cf457600080fd5b505af1158015611d08573d6000803e3d6000fd5b505050506040513d6020811015611d1e57600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dd857600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e23565b611e20600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b90505b919050565b611e30613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611feb613250565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806152f6602c913960400191505060405180910390fd5b600061209b83613e3c565b5050505090506120f381600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214b81600c54613f6490919063ffffffff16565b600c8190555061216683600d54613db490919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561220f5780601f106121e45761010080835404028352916020019161220f565b820191906000526020600020905b8154815290600101906020018083116121f257829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122f8612242613250565b846122f385604051806060016040528060258152602001615349602591396002600061226c613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b6001905092915050565b600061231661230f613250565b848461344f565b6001905092915050565b612328613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c54821115612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061525b602e913960400191505060405180910390fd5b600061252d613fae565b90506125428184613f1a90919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b612612613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141561274b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff1611156127d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b612867613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612b3c57612af8600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612c09613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152136026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612e1a613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b80549050811015613219578173ffffffffffffffffffffffffffffffffffffffff16600b828154811061304e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561320c57600b6001600b8054905003815481106130aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b82815481106130e257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b8054806131d257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055613219565b808060010191505061301d565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152d26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806152396022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff1615613552577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134fd5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806135475750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561355157600080fd5b5b600061355d30611d3d565b9050600061358d83600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611510565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135ea57600090505b6000600f54831015905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156136615750601560009054906101000a900460ff16155b801561366a5750805b80156136825750601560019054906101000a900460ff165b80156136dc5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136eb576136ea84613fd9565b5b60008311156139e457600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137975750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137ac576137a78730856140bb565b6139e3565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561384f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138645761385f87308561430e565b6139e2565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139085750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561391d57613918873085614561565b6139e1565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139bf5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d4576139cf87308561471f565b6139e0565b6139df873085614561565b5b5b5b5b5b60006139f98487613f6490919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a9e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ab357613aae8888836140bb565b613cea565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b565750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b6b57613b6688888361430e565b613ce9565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c0f5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613c2457613c1f888883614561565b613ce8565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613cc65750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613cdb57613cd688888361471f565b613ce7565b613ce6888883614561565b5b5b5b5b5050505050505050565b6000838311158290613da1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d66578082015181840152602081019050613d4b565b50505050905090810190601f168015613d935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613e32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613e5088614a07565b915091506000613e5e613fae565b90506000806000613e708c8686614a47565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613ea75760009050613f14565b6000828402905082848281613eb857fe5b0414613f0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152896021913960400191505060405180910390fd5b809150505b92915050565b6000613f5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614aa5565b905092915050565b6000613fa683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613cf4565b905092915050565b6000806000613fbb614b6b565b91509150613fd28183613f1a90919063ffffffff16565b9250505090565b6001601560006101000a81548160ff021916908315150217905550600061400a600283613f1a90919063ffffffff16565b905060006140218284613f6490919063ffffffff16565b9050600047905061403183614e1c565b60006140468247613f6490919063ffffffff16565b905061405283826150a6565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b60008060008060006140cc86613e3c565b9450945094509450945061412886600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141bd85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061425284600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061429f83826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061431f86613e3c565b9450945094509450945061437b85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061441082600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a584600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144f283826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061457286613e3c565b945094509450945094506145ce85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b083826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061473086613e3c565b9450945094509450945061478c86600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061482185600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148b682600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061494b84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499883826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000614a2160105485613f1a90919063ffffffff16565b90506000614a388286613f6490919063ffffffff16565b90508082935093505050915091565b600080600080614a608588613e9490919063ffffffff16565b90506000614a778688613e9490919063ffffffff16565b90506000614a8e8284613f6490919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614b16578082015181840152602081019050614afb565b50505050905090810190601f168015614b435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614b5d57fe5b049050809150509392505050565b6000806000600c5490506000691da56a4b0835bf800000905060005b600b80549050811015614dcf578260086000600b8481548110614ba657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c8d57508160096000600b8481548110614c2557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614cac57600c54691da56a4b0835bf80000094509450505050614e18565b614d3560086000600b8481548110614cc057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f6490919063ffffffff16565b9250614dc060096000600b8481548110614d4b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f6490919063ffffffff16565b91508080600101915050614b87565b50614def691da56a4b0835bf800000600c54613f1a90919063ffffffff16565b821015614e0f57600c54691da56a4b0835bf800000935093505050614e18565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614e3657600080fd5b50604051908082528060200260200182016040528015614e655781602001602082028036833780820191505090505b5090503081600081518110614e7657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614f0a57600080fd5b505afa158015614f1e573d6000803e3d6000fd5b505050506040513d6020811015614f3457600080fd5b810190808051906020019092919050505081600181518110614f5257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614fab30737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015615061578082015181840152602081019050615046565b505050509050019650505050505050600060405180830381600087803b15801561508a57600080fd5b505af115801561509e573d6000803e3d6000fd5b505050505050565b6150c530737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561518157600080fd5b505af1158015615195573d6000803e3d6000fd5b50505050506040513d60608110156151ac57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6151ed82600c54613f6490919063ffffffff16565b600c8190555061520881600d54613db490919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6eb9d2de9f48be4469791240572de8668a5c73e898adffd7fa1cabea0e6e8e564736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000208ba1670bca38e7ba89c4fee5b5d6eb1c7ee5e3

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111eb565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b810190808035906020019092919050505061129e565b005b3480156105ab57600080fd5b506105b461142f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b8101908080359060200190929190803515159060200190929190505050611453565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611510565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff1690602001909291908035906020019092919080351515906020019092919050505061154f565b005b34801561071757600080fd5b5061072061190a565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a55565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d3d565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611e28565b005b34801561082557600080fd5b5061082e611fae565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611fb8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611fe1565b005b3480156108cc57600080fd5b506108d5612171565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b50610900612177565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b50610990612219565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61221f565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612235565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612302565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b81019080803515159060200190929190505050612320565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b81019080803590602001909291905050506124c6565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a61254a565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b8861255d565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612570565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a6125f7565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff16906020019092919050505061260a565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061285f565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c01565b005b348015610d4e57600080fd5b50610d57612e0c565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e12565b005b348015610dca57600080fd5b50610dd3613224565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e1461324a565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed9613250565b8484613258565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000691da56a4b0835bf800000905090565b6000610f2184848461344f565b610fe284610f2d613250565b610fdd856040518060600160405280602881526020016152aa60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f93613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b611032613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b6103e88111156111e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e2774206265206c657373207468616e20302e31250081525060200191505060405180910390fd5b8060108190555050565b60006112946111f8613250565b8461128f8560026000611209613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b613258565b6001905092915050565b6112a6613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156113df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f000000000000000000000000546ed2f417519d93683b9574694e698a52b949de81565b6000691da56a4b0835bf8000008311156114d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816114f45760006114e584613e3c565b5050505090508091505061150a565b60006114ff84613e3c565b505050915050809150505b92915050565b600061154660028460ff1601600a0a6115388463ffffffff1687613e9490919063ffffffff16565b613f1a90919063ffffffff16565b90509392505050565b611557613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600582101561170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e8821115611787576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff161115611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118fd5780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b60026001541415611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806153226027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b611a5d613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611c5b82601354613f6490919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611cf457600080fd5b505af1158015611d08573d6000803e3d6000fd5b505050506040513d6020811015611d1e57600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dd857600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e23565b611e20600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b90505b919050565b611e30613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611feb613250565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806152f6602c913960400191505060405180910390fd5b600061209b83613e3c565b5050505090506120f381600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214b81600c54613f6490919063ffffffff16565b600c8190555061216683600d54613db490919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561220f5780601f106121e45761010080835404028352916020019161220f565b820191906000526020600020905b8154815290600101906020018083116121f257829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122f8612242613250565b846122f385604051806060016040528060258152602001615349602591396002600061226c613250565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cf49092919063ffffffff16565b613258565b6001905092915050565b600061231661230f613250565b848461344f565b6001905092915050565b612328613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c54821115612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061525b602e913960400191505060405180910390fd5b600061252d613fae565b90506125428184613f1a90919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b612612613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141561274b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff1611156127d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b612867613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612927576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156129a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612b3c57612af8600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124c6565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612c09613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152136026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612e1a613250565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612eda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661301a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b80549050811015613219578173ffffffffffffffffffffffffffffffffffffffff16600b828154811061304e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561320c57600b6001600b8054905003815481106130aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b82815481106130e257fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b8054806131d257fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055613219565b808060010191505061301d565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152d26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613364576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806152396022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff1615613552577f000000000000000000000000546ed2f417519d93683b9574694e698a52b949de73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134fd5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806135475750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561355157600080fd5b5b600061355d30611d3d565b9050600061358d83600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611510565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156135ea57600090505b6000600f54831015905060007f000000000000000000000000546ed2f417519d93683b9574694e698a52b949de73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156136615750601560009054906101000a900460ff16155b801561366a5750805b80156136825750601560019054906101000a900460ff165b80156136dc5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136eb576136ea84613fd9565b5b60008311156139e457600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137975750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137ac576137a78730856140bb565b6139e3565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561384f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138645761385f87308561430e565b6139e2565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139085750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561391d57613918873085614561565b6139e1565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139bf5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d4576139cf87308561471f565b6139e0565b6139df873085614561565b5b5b5b5b5b60006139f98487613f6490919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a9e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ab357613aae8888836140bb565b613cea565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b565750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b6b57613b6688888361430e565b613ce9565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613c0f5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613c2457613c1f888883614561565b613ce8565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613cc65750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613cdb57613cd688888361471f565b613ce7565b613ce6888883614561565b5b5b5b5b5050505050505050565b6000838311158290613da1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d66578082015181840152602081019050613d4b565b50505050905090810190601f168015613d935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613e32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613e5088614a07565b915091506000613e5e613fae565b90506000806000613e708c8686614a47565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613ea75760009050613f14565b6000828402905082848281613eb857fe5b0414613f0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152896021913960400191505060405180910390fd5b809150505b92915050565b6000613f5c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614aa5565b905092915050565b6000613fa683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613cf4565b905092915050565b6000806000613fbb614b6b565b91509150613fd28183613f1a90919063ffffffff16565b9250505090565b6001601560006101000a81548160ff021916908315150217905550600061400a600283613f1a90919063ffffffff16565b905060006140218284613f6490919063ffffffff16565b9050600047905061403183614e1c565b60006140468247613f6490919063ffffffff16565b905061405283826150a6565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b60008060008060006140cc86613e3c565b9450945094509450945061412886600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141bd85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061425284600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061429f83826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061431f86613e3c565b9450945094509450945061437b85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061441082600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a584600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144f283826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061457286613e3c565b945094509450945094506145ce85600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b083826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061473086613e3c565b9450945094509450945061478c86600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061482185600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6490919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148b682600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061494b84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613db490919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499883826151d8565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000614a2160105485613f1a90919063ffffffff16565b90506000614a388286613f6490919063ffffffff16565b90508082935093505050915091565b600080600080614a608588613e9490919063ffffffff16565b90506000614a778688613e9490919063ffffffff16565b90506000614a8e8284613f6490919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614b16578082015181840152602081019050614afb565b50505050905090810190601f168015614b435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614b5d57fe5b049050809150509392505050565b6000806000600c5490506000691da56a4b0835bf800000905060005b600b80549050811015614dcf578260086000600b8481548110614ba657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c8d57508160096000600b8481548110614c2557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614cac57600c54691da56a4b0835bf80000094509450505050614e18565b614d3560086000600b8481548110614cc057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613f6490919063ffffffff16565b9250614dc060096000600b8481548110614d4b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613f6490919063ffffffff16565b91508080600101915050614b87565b50614def691da56a4b0835bf800000600c54613f1a90919063ffffffff16565b821015614e0f57600c54691da56a4b0835bf800000935093505050614e18565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614e3657600080fd5b50604051908082528060200260200182016040528015614e655781602001602082028036833780820191505090505b5090503081600081518110614e7657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614f0a57600080fd5b505afa158015614f1e573d6000803e3d6000fd5b505050506040513d6020811015614f3457600080fd5b810190808051906020019092919050505081600181518110614f5257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614fab30737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015615061578082015181840152602081019050615046565b505050509050019650505050505050600060405180830381600087803b15801561508a57600080fd5b505af115801561509e573d6000803e3d6000fd5b505050505050565b6150c530737a250d5630b4cf539739df2c5dacb4c659f2488d84613258565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561518157600080fd5b505af1158015615195573d6000803e3d6000fd5b50505050506040513d60608110156151ac57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6151ed82600c54613f6490919063ffffffff16565b600c8190555061520881600d54613db490919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6eb9d2de9f48be4469791240572de8668a5c73e898adffd7fa1cabea0e6e8e564736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000208ba1670bca38e7ba89c4fee5b5d6eb1c7ee5e3

-----Decoded View---------------
Arg [0] : _feeDecimals (uint8): 0
Arg [1] : _feePercentage (uint32): 0
Arg [2] : _minTokensBeforeAddToLP (uint256): 1000000000000000000
Arg [3] : _swapAndAbsorbEnabled (bool): True
Arg [4] : _presale (address): 0x208bA1670BcA38E7Ba89c4FEe5b5D6Eb1C7eE5E3

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000208ba1670bca38e7ba89c4fee5b5d6eb1c7ee5e3


Deployed Bytecode Sourcemap

26758:23178:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29565:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31746:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27080:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30640:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32389:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27247:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30492:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46455:213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33119:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42926:270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27202:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48384:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42213:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41359:768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36878:182;;;;;;;;;;;;;:::i;:::-;;43396:361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30798:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2482:148;;;;;;;;;;;;;:::i;:::-;;38976:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1840:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47999:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27948:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29767:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27810:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27776:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33840:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31210:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43204:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48826:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27745:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28111:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31448:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28077:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42578:340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49091:343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2785:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27988:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49442:489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27323:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28030:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29565:83;29602:13;29635:5;29628:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29565:83;:::o;31746:169::-;31829:4;31846:39;31855:12;:10;:12::i;:::-;31869:7;31878:6;31846:8;:39::i;:::-;31903:4;31896:11;;31746:169;;;;:::o;27080:115::-;27152:42;27080:115;:::o;30640:95::-;30693:7;27632:5;30713:14;;30640:95;:::o;32389:321::-;32495:4;32512:36;32522:6;32530:9;32541:6;32512:9;:36::i;:::-;32559:121;32568:6;32576:12;:10;:12::i;:::-;32590:89;32628:6;32590:89;;;;;;;;;;;;;;;;;:11;:19;32602:6;32590:19;;;;;;;;;;;;;;;:33;32610:12;:10;:12::i;:::-;32590:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32559:8;:121::i;:::-;32698:4;32691:11;;32389:321;;;;;:::o;27247:69::-;;;;;;;;;;;;;:::o;30492:83::-;30533:5;30558:9;;;;;;;;;;;30551:16;;30492:83;:::o;46455:213::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46535:1:::1;46530;:6;;46522:49;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46595:4;46590:1;:9;;46582:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46659:1;46646:10;:14;;;;46455:213:::0;:::o;33119:218::-;33207:4;33224:83;33233:12;:10;:12::i;:::-;33247:7;33256:50;33295:10;33256:11;:25;33268:12;:10;:12::i;:::-;33256:25;;;;;;;;;;;;;;;:34;33282:7;33256:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33224:8;:83::i;:::-;33325:4;33318:11;;33119:218;;;;:::o;42926:270::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1:::1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25801:1;26540:7;:18;;;;43095:23:::2;43070:22;:48;;;;43134:54;43164:23;43134:54;;;;;;;;;;;;;;;;;;25757:1:::1;26719:7:::0;:22:::1;;;;42926:270:::0;:::o;27202:38::-;;;:::o;48384:434::-;48474:7;27632:5;48502:7;:18;;48494:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48572:17;48567:244;;48607:15;48630:19;48641:7;48630:10;:19::i;:::-;48606:43;;;;;;48671:7;48664:14;;;;;48567:244;48713:23;48743:19;48754:7;48743:10;:19::i;:::-;48711:51;;;;;;48784:15;48777:22;;;48384:434;;;;;:::o;42213:269::-;42350:14;42386:88;42461:1;42445:12;42437:21;;:25;42432:2;:31;42386:27;42398:14;42386:27;;:7;:11;;:27;;;;:::i;:::-;:31;;:88;;;;:::i;:::-;42377:97;;42213:269;;;;;:::o;41359:768::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1:::1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25801:1;26540:7;:18;;;;41577:1:::2;41560:13;:18;;41552:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41649:4;41632:13;:21;;41624:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41729:2;41709:16;:22;;;;41701:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41791:13;41778:10;:26;;;;41829:14;41815:11;;:28;;;;;;;;;;;;;;;;;;41870:16;41854:13;;:32;;;;;;;;;;;;;;;;;;41902:44;41913:14;41929:16;41902:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;41995:8;41971:32;;:20;;;;;;;;;;;:32;;;41967:144;;42038:8;42015:20;;:31;;;;;;;;;;;;;;;;;;42062:37;42090:8;42062:37;;;;;;;;;;;;;;;;;;;;41967:144;25757:1:::1;26719:7:::0;:22:::1;;;;41359:768:::0;;;;:::o;36878:182::-;25801:1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1;26540:7;:18;;;;36968:7:::1;;;;;;;;;;;36954:21;;:10;:21;;;36945:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37047:5;37030:14;;:22;;;;;;;;;;;;;;;;;;25757:1:::0;26719:7;:22;;;;36878:182::o;43396:361::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1:::1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25801:1;26540:7;:18;;;;43523:1:::2;43508:17;;:3;:17;;;;43500:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;43580:21;43620:6;43580:47;;43661:33;43686:7;43661:20;;:24;;:33;;;;:::i;:::-;43638:20;:56;;;;43715:5;:14;;;43730:9;;;;;;;;;;;43741:7;43715:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;26571:1;25757::::1;26719:7:::0;:22:::1;;;;43396:361:::0;;;:::o;30798:199::-;30864:7;30889:11;:20;30901:7;30889:20;;;;;;;;;;;;;;;;;;;;;;;;;30885:49;;;30918:7;:16;30926:7;30918:16;;;;;;;;;;;;;;;;30911:23;;;;30885:49;30952:37;30972:7;:16;30980:7;30972:16;;;;;;;;;;;;;;;;30952:19;:37::i;:::-;30945:44;;30798:199;;;;:::o;2482:148::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2589:1:::1;2552:40;;2573:6;::::0;::::1;;;;;;;;2552:40;;;;;;;;;;;;2620:1;2603:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2482:148::o:0;38976:97::-;39024:7;39051:14;;39044:21;;38976:97;:::o;1840:79::-;1878:7;1905:6;;;;;;;;;;;1898:13;;1840:79;:::o;47999:377::-;48052:14;48069:12;:10;:12::i;:::-;48052:29;;48101:11;:19;48113:6;48101:19;;;;;;;;;;;;;;;;;;;;;;;;;48100:20;48092:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48181:15;48204:19;48215:7;48204:10;:19::i;:::-;48180:43;;;;;;48252:28;48272:7;48252;:15;48260:6;48252:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48234:7;:15;48242:6;48234:15;;;;;;;;;;;;;;;:46;;;;48301:20;48313:7;48301;;:11;;:20;;;;:::i;:::-;48291:7;:30;;;;48345:23;48360:7;48345:10;;:14;;:23;;;;:::i;:::-;48332:10;:36;;;;47999:377;;;:::o;27948:33::-;;;;:::o;29767:87::-;29806:13;29839:7;29832:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29767:87;:::o;27810:37::-;;;;:::o;27776:27::-;;;;;;;;;;;;;:::o;33840:269::-;33933:4;33950:129;33959:12;:10;:12::i;:::-;33973:7;33982:96;34021:15;33982:96;;;;;;;;;;;;;;;;;:11;:25;33994:12;:10;:12::i;:::-;33982:25;;;;;;;;;;;;;;;:34;34008:7;33982:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33950:8;:129::i;:::-;34097:4;34090:11;;33840:269;;;;:::o;31210:175::-;31296:4;31313:42;31323:12;:10;:12::i;:::-;31337:9;31348:6;31313:9;:42::i;:::-;31373:4;31366:11;;31210:175;;;;:::o;43204:184::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1:::1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25801:1;26540:7;:18;;;;43319:8:::2;43296:20;;:31;;;;;;;;;;;;;;;;;;43343:37;43371:8;43343:37;;;;;;;;;;;;;;;;;;;;25757:1:::1;26719:7:::0;:22:::1;;;;43204:184:::0;:::o;48826:257::-;48892:7;48931;;48920;:18;;48912:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49000:19;49023:10;:8;:10::i;:::-;49000:33;;49051:24;49063:11;49051:7;:11;;:24;;;;:::i;:::-;49044:31;;;48826:257;;;:::o;27745:24::-;;;;;;;;;;;;;:::o;28111:32::-;;;;;;;;;;;;;:::o;31448:151::-;31537:7;31564:11;:18;31576:5;31564:18;;;;;;;;;;;;;;;:27;31583:7;31564:27;;;;;;;;;;;;;;;;31557:34;;31448:151;;;;:::o;28077:27::-;;;;;;;;;;;;;:::o;42578:340::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1:::1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25801:1;26540:7;:18;;;;42739:2:::2;42721:14;:20;;;;42713:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;42801:12;42787:11;;:26;;;;;;;;;;;;;;;;;;42840:14;42824:13;;:30;;;;;;;;;;;;;;;;;;42870:40;42881:12;42895:14;42870:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;25757:1:::1;26719:7:::0;:22:::1;;;;42578:340:::0;;:::o;49091:343::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1:::1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25801:1;26540:7;:18;;;;49184:11:::2;:20;49196:7;49184:20;;;;;;;;;;;;;;;;;;;;;;;;;49183:21;49175:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;49269:1;49250:7;:16;49258:7;49250:16;;;;;;;;;;;;;;;;:20;49247:108;;;49306:37;49326:7;:16;49334:7;49326:16;;;;;;;;;;;;;;;;49306:19;:37::i;:::-;49287:7;:16;49295:7;49287:16;;;;;;;;;;;;;;;:56;;;;49247:108;49388:4;49365:11;:20;49377:7;49365:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;49403:9;49418:7;49403:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25757:1:::1;26719:7:::0;:22:::1;;;;49091:343:::0;:::o;2785:244::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2894:1:::1;2874:22;;:8;:22;;;;2866:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2984:8;2955:38;;2976:6;::::0;::::1;;;;;;;;2955:38;;;;;;;;;;;;3013:8;3004:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2785:244:::0;:::o;27988:35::-;;;;:::o;49442:489::-;2062:12;:10;:12::i;:::-;2052:22;;:6;;;;;;;;;;:22;;;2044:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25801:1:::1;26407:7;;:19;;26399:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25801:1;26540:7;:18;;;;49534:11:::2;:20;49546:7;49534:20;;;;;;;;;;;;;;;;;;;;;;;;;49526:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;49602:9;49597:327;49621:9;:16;;;;49617:1;:20;49597:327;;;49679:7;49663:23;;:9;49673:1;49663:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;49659:254;;;49722:9;49751:1;49732:9;:16;;;;:20;49722:31;;;;;;;;;;;;;;;;;;;;;;;;;49707:9;49717:1;49707:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49791:1;49772:7;:16;49780:7;49772:16;;;;;;;;;;;;;;;:20;;;;49834:5;49811:11;:20;49823:7;49811:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;49858:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49892:5;;49659:254;49639:3;;;;;;;49597:327;;;;25757:1:::1;26719:7:::0;:22:::1;;;;49442:489:::0;:::o;27323:22::-;;;;;;;;;;;;;:::o;28030:33::-;;;;:::o;478:106::-;531:15;566:10;559:17;;478:106;:::o;37501:346::-;37620:1;37603:19;;:5;:19;;;;37595:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37701:1;37682:21;;:7;:21;;;;37674:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37785:6;37755:11;:18;37767:5;37755:18;;;;;;;;;;;;;;;:27;37774:7;37755:27;;;;;;;;;;;;;;;:36;;;;37823:7;37807:32;;37816:5;37807:32;;;37832:6;37807:32;;;;;;;;;;;;;;;;;;37501:346;;;:::o;34117:2749::-;34202:14;;;;;;;;;;;34198:245;;;34250:13;34236:28;;:2;:28;;;:62;;;;27152:42;34268:30;;:2;:30;;;34236:62;:123;;;;34316:42;34302:57;;:2;:57;;;34236:123;34232:200;;;34379:8;;;34232:200;34198:245;34738:28;34769:24;34787:4;34769:9;:24::i;:::-;34738:55;;34804:20;34827:98;34854:6;34875:11;;;;;;;;;;;34901:13;;;;;;;;;;;34827:12;:98::i;:::-;34804:121;;34948:7;;;;;;;;;;;34940:15;;:4;:15;;;34936:37;;;34972:1;34957:16;;34936:37;34984:24;35035:22;;35011:20;:46;;34984:73;;35068:24;35101:13;35095:19;;:2;:19;;;35068:46;;35144:19;:52;;;;;35181:15;;;;;;;;;;;35180:16;35144:52;:88;;;;;35213:19;35144:88;:125;;;;;35249:20;;;;;;;;;;;35144:125;:157;;;;;35294:7;;;;;;;;;;;35286:15;;:4;:15;;;;35144:157;35126:249;;;35328:35;35342:20;35328:13;:35::i;:::-;35126:249;35404:1;35389:12;:16;35385:688;;;35425:11;:17;35437:4;35425:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;35447:11;:15;35459:2;35447:15;;;;;;;;;;;;;;;;;;;;;;;;;35446:16;35425:37;35421:641;;;35483:56;35505:4;35519;35526:12;35483:21;:56::i;:::-;35421:641;;;35566:11;:17;35578:4;35566:17;;;;;;;;;;;;;;;;;;;;;;;;;35565:18;:37;;;;;35587:11;:15;35599:2;35587:15;;;;;;;;;;;;;;;;;;;;;;;;;35565:37;35561:501;;;35623:54;35643:4;35657;35664:12;35623:19;:54::i;:::-;35561:501;;;35704:11;:17;35716:4;35704:17;;;;;;;;;;;;;;;;;;;;;;;;;35703:18;:38;;;;;35726:11;:15;35738:2;35726:15;;;;;;;;;;;;;;;;;;;;;;;;;35725:16;35703:38;35699:363;;;35762:52;35780:4;35794;35801:12;35762:17;:52::i;:::-;35699:363;;;35840:11;:17;35852:4;35840:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;35861:11;:15;35873:2;35861:15;;;;;;;;;;;;;;;;;;;;;;;;;35840:36;35836:226;;;35897:56;35919:4;35933;35940:12;35897:21;:56::i;:::-;35836:226;;;35994:52;36012:4;36026;36033:12;35994:17;:52::i;:::-;35836:226;35699:363;35561:501;35421:641;35385:688;36231:24;36258;36269:12;36258:6;:10;;:24;;;;:::i;:::-;36231:51;;36297:11;:17;36309:4;36297:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;36319:11;:15;36331:2;36319:15;;;;;;;;;;;;;;;;;;;;;;;;;36318:16;36297:37;36293:566;;;36351:49;36373:4;36379:2;36383:16;36351:21;:49::i;:::-;36293:566;;;36423:11;:17;36435:4;36423:17;;;;;;;;;;;;;;;;;;;;;;;;;36422:18;:37;;;;;36444:11;:15;36456:2;36444:15;;;;;;;;;;;;;;;;;;;;;;;;;36422:37;36418:441;;;36476:47;36496:4;36502:2;36506:16;36476:19;:47::i;:::-;36418:441;;;36546:11;:17;36558:4;36546:17;;;;;;;;;;;;;;;;;;;;;;;;;36545:18;:38;;;;;36568:11;:15;36580:2;36568:15;;;;;;;;;;;;;;;;;;;;;;;;;36567:16;36545:38;36541:318;;;36600:45;36618:4;36624:2;36628:16;36600:17;:45::i;:::-;36541:318;;;36667:11;:17;36679:4;36667:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;36688:11;:15;36700:2;36688:15;;;;;;;;;;;;;;;;;;;;;;;;;36667:36;36663:196;;;36720:49;36742:4;36748:2;36752:16;36720:21;:49::i;:::-;36663:196;;;36802:45;36820:4;36826:2;36830:16;36802:17;:45::i;:::-;36663:196;36541:318;36418:441;36293:566;34117:2749;;;;;;;;:::o;4781:192::-;4867:7;4900:1;4895;:6;;4903:12;4887:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4927:9;4943:1;4939;:5;4927:17;;4964:1;4957:8;;;4781:192;;;;;:::o;3878:181::-;3936:7;3956:9;3972:1;3968;:5;3956:17;;3997:1;3992;:6;;3984:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4050:1;4043:8;;;3878:181;;;;:::o;46031:412::-;46090:7;46099;46108;46117;46126;46147:23;46172:12;46188:21;46201:7;46188:12;:21::i;:::-;46146:63;;;;46220:19;46243:10;:8;:10::i;:::-;46220:33;;46265:15;46282:23;46307:12;46323:39;46335:7;46344:4;46350:11;46323;:39::i;:::-;46264:98;;;;;;46381:7;46390:15;46407:4;46413:15;46430:4;46373:62;;;;;;;;;;;;;;;;46031:412;;;;;;;:::o;5232:471::-;5290:7;5540:1;5535;:6;5531:47;;;5565:1;5558:8;;;;5531:47;5590:9;5606:1;5602;:5;5590:17;;5635:1;5630;5626;:5;;;;;;:10;5618:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5694:1;5687:8;;;5232:471;;;;;:::o;6179:132::-;6237:7;6264:39;6268:1;6271;6264:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6257:46;;6179:132;;;;:::o;4342:136::-;4400:7;4427:43;4431:1;4434;4427:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4420:50;;4342:136;;;;:::o;47261:163::-;47302:7;47323:15;47340;47359:19;:17;:19::i;:::-;47322:56;;;;47396:20;47408:7;47396;:11;;:20;;;;:::i;:::-;47389:27;;;;47261:163;:::o;39243:984::-;28535:4;28517:15;;:22;;;;;;;;;;;;;;;;;;39384:12:::1;39399:27;39424:1;39399:20;:24;;:27;;;;:::i;:::-;39384:42;;39437:17;39457:30;39482:4;39457:20;:24;;:30;;;;:::i;:::-;39437:50;;39765:22;39790:21;39765:46;;39856:22;39873:4;39856:16;:22::i;:::-;40002:18;40023:41;40049:14;40023:21;:25;;:41;;;;:::i;:::-;40002:62;;40114:35;40127:9;40138:10;40114:12;:35::i;:::-;40177:42;40191:4;40197:10;40209:9;40177:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28550:1;;;;28580:5:::0;28562:15;;:23;;;;;;;;;;;;;;;;;;39243:984;:::o;44757:512::-;44860:15;44877:23;44902:12;44916:23;44941:12;44957:19;44968:7;44957:10;:19::i;:::-;44859:117;;;;;;;;;;45005:28;45025:7;45005;:15;45013:6;45005:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44987:7;:15;44995:6;44987:15;;;;;;;;;;;;;;;:46;;;;45062:28;45082:7;45062;:15;45070:6;45062:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45044:7;:15;45052:6;45044:15;;;;;;;;;;;;;;;:46;;;;45122:39;45145:15;45122:7;:18;45130:9;45122:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45101:7;:18;45109:9;45101:18;;;;;;;;;;;;;;;:60;;;;45175:26;45190:4;45196;45175:14;:26::i;:::-;45234:9;45217:44;;45226:6;45217:44;;;45245:15;45217:44;;;;;;;;;;;;;;;;;;44757:512;;;;;;;;:::o;44228:521::-;44329:15;44346:23;44371:12;44385:23;44410:12;44426:19;44437:7;44426:10;:19::i;:::-;44328:117;;;;;;;;;;44474:28;44494:7;44474;:15;44482:6;44474:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44456:7;:15;44464:6;44456:15;;;;;;;;;;;;;;;:46;;;;44534:39;44557:15;44534:7;:18;44542:9;44534:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44513:7;:18;44521:9;44513:18;;;;;;;;;;;;;;;:60;;;;44605:39;44628:15;44605:7;:18;44613:9;44605:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44584:7;:18;44592:9;44584:18;;;;;;;;;;;;;;;:60;;;;44655:26;44670:4;44676;44655:14;:26::i;:::-;44714:9;44697:44;;44706:6;44697:44;;;44725:15;44697:44;;;;;;;;;;;;;;;;;;44228:521;;;;;;;;:::o;43765:455::-;43864:15;43881:23;43906:12;43920:23;43945:12;43961:19;43972:7;43961:10;:19::i;:::-;43863:117;;;;;;;;;;44009:28;44029:7;44009;:15;44017:6;44009:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43991:7;:15;43999:6;43991:15;;;;;;;;;;;;;;;:46;;;;44069:39;44092:15;44069:7;:18;44077:9;44069:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44048:7;:18;44056:9;44048:18;;;;;;;;;;;;;;;:60;;;;44126:26;44141:4;44147;44126:14;:26::i;:::-;44185:9;44168:44;;44177:6;44168:44;;;44196:15;44168:44;;;;;;;;;;;;;;;;;;43765:455;;;;;;;;:::o;45277:588::-;45380:15;45397:23;45422:12;45436:23;45461:12;45477:19;45488:7;45477:10;:19::i;:::-;45379:117;;;;;;;;;;45525:28;45545:7;45525;:15;45533:6;45525:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45507:7;:15;45515:6;45507:15;;;;;;;;;;;;;;;:46;;;;45582:28;45602:7;45582;:15;45590:6;45582:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45564:7;:15;45572:6;45564:15;;;;;;;;;;;;;;;:46;;;;45642:39;45665:15;45642:7;:18;45650:9;45642:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45621:7;:18;45629:9;45621:18;;;;;;;;;;;;;;;:60;;;;45713:39;45736:15;45713:7;:18;45721:9;45713:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45692:7;:18;45700:9;45692:18;;;;;;;;;;;;;;;:60;;;;45771:26;45786:4;45792;45771:14;:26::i;:::-;45830:9;45813:44;;45822:6;45813:44;;;45841:15;45813:44;;;;;;;;;;;;;;;;;;45277:588;;;;;;;;:::o;46680:231::-;46741:7;46750;46770:12;46785:23;46797:10;;46785:7;:11;;:23;;;;:::i;:::-;46770:38;;46819:23;46845:17;46857:4;46845:7;:11;;:17;;;;:::i;:::-;46819:43;;46881:15;46898:4;46873:30;;;;;;46680:231;;;:::o;46919:334::-;47014:7;47023;47032;47052:15;47070:24;47082:11;47070:7;:11;;:24;;;;:::i;:::-;47052:42;;47105:12;47120:21;47129:11;47120:4;:8;;:21;;;;:::i;:::-;47105:36;;47152:23;47178:17;47190:4;47178:7;:11;;:17;;;;:::i;:::-;47152:43;;47214:7;47223:15;47240:4;47206:39;;;;;;;;;46919:334;;;;;;;:::o;6807:278::-;6893:7;6925:1;6921;:5;6928:12;6913:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6952:9;6968:1;6964;:5;;;;;;6952:17;;7076:1;7069:8;;;6807:278;;;;;:::o;47432:561::-;47482:7;47491;47511:15;47529:7;;47511:25;;47547:15;27632:5;47547:25;;47594:9;47589:289;47613:9;:16;;;;47609:1;:20;47589:289;;;47679:7;47655;:21;47663:9;47673:1;47663:12;;;;;;;;;;;;;;;;;;;;;;;;;47655:21;;;;;;;;;;;;;;;;:31;:66;;;;47714:7;47690;:21;47698:9;47708:1;47698:12;;;;;;;;;;;;;;;;;;;;;;;;;47690:21;;;;;;;;;;;;;;;;:31;47655:66;47651:97;;;47731:7;;27632:5;47723:25;;;;;;;;;47651:97;47773:34;47785:7;:21;47793:9;47803:1;47793:12;;;;;;;;;;;;;;;;;;;;;;;;;47785:21;;;;;;;;;;;;;;;;47773:7;:11;;:34;;;;:::i;:::-;47763:44;;47832:34;47844:7;:21;47852:9;47862:1;47852:12;;;;;;;;;;;;;;;;;;;;;;;;;47844:21;;;;;;;;;;;;;;;;47832:7;:11;;:34;;;;:::i;:::-;47822:44;;47631:3;;;;;;;47589:289;;;;47902:20;27632:5;47902:7;;:11;;:20;;;;:::i;:::-;47892:7;:30;47888:61;;;47932:7;;27632:5;47924:25;;;;;;;;47888:61;47968:7;47977;47960:25;;;;;;47432:561;;;:::o;40235:589::-;40361:21;40399:1;40385:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40361:40;;40430:4;40412;40417:1;40412:7;;;;;;;;;;;;;:23;;;;;;;;;;;27152:42;40456:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40446:4;40451:1;40446:7;;;;;;;;;;;;;:32;;;;;;;;;;;40491:62;40508:4;27152:42;40541:11;40491:8;:62::i;:::-;27152:42;40592:66;;;40673:11;40699:1;40743:4;40770;40790:15;40592:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40235:589;;:::o;40832:519::-;40980:62;40997:4;27152:42;41030:11;40980:8;:62::i;:::-;27152:42;41085:31;;;41124:9;41157:4;41177:11;41203:1;41246;41297:4;41317:15;41085:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40832:519;;:::o;45873:150::-;45954:17;45966:4;45954:7;;:11;;:17;;;;:::i;:::-;45944:7;:27;;;;45995:20;46010:4;45995:10;;:14;;:20;;;;:::i;:::-;45982:10;:33;;;;45873:150;;:::o

Swarm Source

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