ETH Price: $2,596.10 (-3.05%)
Gas: 1 Gwei

Token

TheArmada.eth.link (ARM)
 

Overview

Max Total Supply

700,000 ARM

Holders

242

Market

Price

$0.58 @ 0.000224 ETH

Onchain Market Cap

$406,246.43

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.00000246657858158 ARM

Value
$0.00 ( ~0 Eth) [0.0000%]
0x4138e34E5f688915f7B7A31B64da0fbBAc8D1413
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Armada Token is a DeFi token which features a mix of technologies to take in profits. It is complementary to the BORG token, however, 'Resistance Is Not Futile'.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ARM

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-29
*/

/*
    ************************************************
    * Armada (ARM) v1.3 - Resistance Is Not Futile *
    ************************************************
    * Part of the BORG Ecosystem *******************
    * https://TheArmada.eth.link *******************
    * https://t.me/BORG_ResistanceIsFutile *********
    ************************************************
*/

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 ARM is IERC20, Ownable, ReentrancyGuard {

    using SafeMath for uint256;
    
    mapping (address => mapping (address => uint256)) private _allowances;
    bool transferPaused = true;
    string private _name = "TheArmada.eth.link";
    string private _symbol = "ARM";
    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 = 70 * 10**4 * 10**18;
    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 Assimilate 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"}]

60a06040526001600360006101000a81548160ff0219169083151502179055506040518060400160405280601281526020017f54686541726d6164612e6574682e6c696e6b0000000000000000000000000000815250600490805190602001906200006c92919062000b9a565b506040518060400160405280600381526020017f41524d000000000000000000000000000000000000000000000000000000000081525060059080519060200190620000ba92919062000b9a565b506012600660006101000a81548160ff021916908360ff16021790555061dead600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069943b1377290cbd800000600019816200013057fe5b0660001903600c556a0845951614014849ffffff6010553480156200015457600080fd5b5060405162005f9338038062005f93833981810160405260a08110156200017a57600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506000620001c5620005e760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060018081905550600c546008600062000281620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035b57600080fd5b505afa15801562000370573d6000803e3d6000fd5b505050506040513d60208110156200038757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040f57600080fd5b505afa15801562000424573d6000803e3d6000fd5b505050506040513d60208110156200043b57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004b657600080fd5b505af1158015620004cb573d6000803e3d6000fd5b505050506040513d6020811015620004e257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200053b8585620005ef60201b60201c565b6200054c836200084f60201b60201c565b6200055d82620009ea60201b60201c565b6200056d620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef69943b1377290cbd8000006040518082815260200191505060405180910390a3505050505062000c40565b600033905090565b620005ff620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115620007c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6200085f620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156200099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b620009fa620005e760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000abb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600154141562000b35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000bdd57805160ff191683800117855562000c0e565b8280016001018555821562000c0e579182015b8281111562000c0d57825182559160200191906001019062000bf0565b5b50905062000c1d919062000c21565b5090565b5b8082111562000c3c57600081600090555060010162000c22565b5090565b60805160601c61532b62000c68600039806113b952806133ee5280613580525061532b6000f3fe60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611173565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b8101908080359060200190929190505050611226565b005b3480156105ab57600080fd5b506105b46113b7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b81019080803590602001909291908035151590602001909291905050506113db565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611498565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190803590602001909291908035151590602001909291905050506114d7565b005b34801561071757600080fd5b50610720611892565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119dd565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc5565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611db0565b005b34801561082557600080fd5b5061082e611f36565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611f40565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611f69565b005b3480156108cc57600080fd5b506108d56120f9565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b506109006120ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b506109906121a1565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb6121a7565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121bd565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061228a565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b810190808035151590602001909291905050506122a8565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b810190808035906020019092919050505061244e565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a6124d2565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b886124e5565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124f8565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a61257f565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190505050612592565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127e7565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b89565b005b348015610d4e57600080fd5b50610d57612d94565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d9a565b005b348015610dca57600080fd5b50610dd36131ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e146131d2565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed96131d8565b84846131e0565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600069943b1377290cbd800000905090565b6000610f218484846133d7565b610fe284610f2d6131d8565b610fdd8560405180606001604052806028815260200161523260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f936131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b6110326131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b8060108190555050565b600061121c6111806131d8565b8461121785600260006111916131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b6131e0565b6001905092915050565b61122e6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600069943b1377290cbd80000083111561145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161147c57600061146d84613dc4565b50505050905080915050611492565b600061148784613dc4565b505050915050809150505b92915050565b60006114ce60028460ff1601600a0a6114c08463ffffffff1687613e1c90919063ffffffff16565b613ea290919063ffffffff16565b90509392505050565b6114df6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506005821015611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e882111561170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff16111561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118855780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b6002600154141561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806152aa6027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b6119e56131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611be382601354613eec90919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611c7c57600080fd5b505af1158015611c90573d6000803e3d6000fd5b505050506040513d6020811015611ca657600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d6057600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611dab565b611da8600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b90505b919050565b611db86131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611f736131d8565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061527e602c913960400191505060405180910390fd5b600061202383613dc4565b50505050905061207b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120d381600c54613eec90919063ffffffff16565b600c819055506120ee83600d54613d3c90919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121975780601f1061216c57610100808354040283529160200191612197565b820191906000526020600020905b81548152906001019060200180831161217a57829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122806121ca6131d8565b8461227b856040518060600160405280602581526020016152d160259139600260006121f46131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b6001905092915050565b600061229e6122976131d8565b84846133d7565b6001905092915050565b6122b06131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156123e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c548211156124ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806151e3602e913960400191505060405180910390fd5b60006124b5613f36565b90506124ca8184613ea290919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b61259a6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461265a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6127ef6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156129f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612ac457612a80600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612b916131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061519b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612da26131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612edb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fa2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b805490508110156131a1578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612fd657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561319457600b6001600b80549050038154811061303257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b828154811061306a57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b80548061315a57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556131a1565b8080600101915050612fa5565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061525a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c16022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff16156134da577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134855750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806134cf5750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156134d957600080fd5b5b60006134e530611cc5565b9050600061351583600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611498565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561357257600090505b6000600f54831015905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156135e95750601560009054906101000a900460ff16155b80156135f25750805b801561360a5750601560019054906101000a900460ff165b80156136645750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136735761367284613f61565b5b600083111561396c57600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561371f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137345761372f873085614043565b61396b565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137d75750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ec576137e7873085614296565b61396a565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138905750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138a5576138a08730856144e9565b613969565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139475750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561395c576139578730856146a7565b613968565b6139678730856144e9565b5b5b5b5b5b60006139818487613eec90919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a265750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613a3b57613a36888883614043565b613c72565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ade5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af357613aee888883614296565b613c71565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b975750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bac57613ba78888836144e9565b613c70565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613c4e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c6357613c5e8888836146a7565b613c6f565b613c6e8888836144e9565b5b5b5b5b5050505050505050565b6000838311158290613d29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613cee578082015181840152602081019050613cd3565b50505050905090810190601f168015613d1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613dba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613dd88861498f565b915091506000613de6613f36565b90506000806000613df88c86866149cf565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613e2f5760009050613e9c565b6000828402905082848281613e4057fe5b0414613e97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152116021913960400191505060405180910390fd5b809150505b92915050565b6000613ee483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a2d565b905092915050565b6000613f2e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c7c565b905092915050565b6000806000613f43614af3565b91509150613f5a8183613ea290919063ffffffff16565b9250505090565b6001601560006101000a81548160ff0219169083151502179055506000613f92600283613ea290919063ffffffff16565b90506000613fa98284613eec90919063ffffffff16565b90506000479050613fb983614da4565b6000613fce8247613eec90919063ffffffff16565b9050613fda838261502e565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b600080600080600061405486613dc4565b945094509450945094506140b086600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061414585600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141da84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142278382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006142a786613dc4565b9450945094509450945061430385600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439882600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061442d84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061447a8382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006144fa86613dc4565b9450945094509450945061455685600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145eb84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146388382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006146b886613dc4565b9450945094509450945061471486600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a985600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061483e82600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148d384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149208382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006149a960105485613ea290919063ffffffff16565b905060006149c08286613eec90919063ffffffff16565b90508082935093505050915091565b6000806000806149e88588613e1c90919063ffffffff16565b905060006149ff8688613e1c90919063ffffffff16565b90506000614a168284613eec90919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a9e578082015181840152602081019050614a83565b50505050905090810190601f168015614acb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614ae557fe5b049050809150509392505050565b6000806000600c549050600069943b1377290cbd800000905060005b600b80549050811015614d57578260086000600b8481548110614b2e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c1557508160096000600b8481548110614bad57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614c3457600c5469943b1377290cbd80000094509450505050614da0565b614cbd60086000600b8481548110614c4857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613eec90919063ffffffff16565b9250614d4860096000600b8481548110614cd357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613eec90919063ffffffff16565b91508080600101915050614b0f565b50614d7769943b1377290cbd800000600c54613ea290919063ffffffff16565b821015614d9757600c5469943b1377290cbd800000935093505050614da0565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614dbe57600080fd5b50604051908082528060200260200182016040528015614ded5781602001602082028036833780820191505090505b5090503081600081518110614dfe57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614e9257600080fd5b505afa158015614ea6573d6000803e3d6000fd5b505050506040513d6020811015614ebc57600080fd5b810190808051906020019092919050505081600181518110614eda57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614f3330737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614fe9578082015181840152602081019050614fce565b505050509050019650505050505050600060405180830381600087803b15801561501257600080fd5b505af1158015615026573d6000803e3d6000fd5b505050505050565b61504d30737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561510957600080fd5b505af115801561511d573d6000803e3d6000fd5b50505050506040513d606081101561513457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b61517582600c54613eec90919063ffffffff16565b600c8190555061519081600d54613d3c90919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f731d9f42dd6917d5259b8503c16b869d37655b11cf34996bfb029860a53a03064736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e84800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2d89895958da5736edf22b39be690965c8c6fec

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806390ca796b1161012e578063d5cbed9b116100ab578063f2fde38b1161006f578063f2fde38b14610cf1578063f51d4df514610d42578063f84354f114610d6d578063fdea8e0b14610dbe578063ff7c479014610dff57610246565b8063d5cbed9b14610b73578063dd62ed3e14610ba0578063e3c2fa1114610c25578063eaa93e7814610c52578063f2cc0c1814610ca057610246565b8063a457c2d7116100f2578063a457c2d7146109d7578063a9059cbb14610a48578063bdb2637014610ab9578063c44b75b014610af6578063cc0f178614610b4557610246565b806390ca796b1461088557806391fe5a64146108c057806395d89b41146108eb5780639fd3677f1461097b578063a001ecdd146109a657610246565b806349bd5a5e116101bc578063689dc62d11610180578063689dc62d1461072257806370a082311461079d578063715018a6146108025780637ede036d146108195780638da5cb5b1461084457610246565b806349bd5a5e1461059f5780634a45b7d9146105e057806354bf93591461063b5780635a15ba24146106a7578063647af8e61461070b57610246565b806328d2bc911161020357806328d2bc9114610449578063313ce5671461048a5780633793d4b5146104b857806339509351146104f35780634183d35e1461056457610246565b806306fdde031461024b578063095ea7b3146102db5780631694505e1461034c57806318160ddd1461038d57806323b872dd146103b857610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610e2a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a0578082015181840152602081019050610285565b50505050905090810190601f1680156102cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e757600080fd5b50610334600480360360408110156102fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ecc565b60405180821515815260200191505060405180910390f35b34801561035857600080fd5b50610361610eea565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f02565b6040518082815260200191505060405180910390f35b3480156103c457600080fd5b50610431600480360360608110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f14565b60405180821515815260200191505060405180910390f35b34801561045557600080fd5b5061045e610fed565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049657600080fd5b5061049f611013565b604051808260ff16815260200191505060405180910390f35b3480156104c457600080fd5b506104f1600480360360208110156104db57600080fd5b810190808035906020019092919050505061102a565b005b3480156104ff57600080fd5b5061054c6004803603604081101561051657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611173565b60405180821515815260200191505060405180910390f35b34801561057057600080fd5b5061059d6004803603602081101561058757600080fd5b8101908080359060200190929190505050611226565b005b3480156105ab57600080fd5b506105b46113b7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ec57600080fd5b506106256004803603604081101561060357600080fd5b81019080803590602001909291908035151590602001909291905050506113db565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506106916004803603606081101561065e57600080fd5b8101908080359060200190929190803560ff169060200190929190803563ffffffff169060200190929190505050611498565b6040518082815260200191505060405180910390f35b3480156106b357600080fd5b50610709600480360360808110156106ca57600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190803590602001909291908035151590602001909291905050506114d7565b005b34801561071757600080fd5b50610720611892565b005b34801561072e57600080fd5b5061079b6004803603606081101561074557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119dd565b005b3480156107a957600080fd5b506107ec600480360360208110156107c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc5565b6040518082815260200191505060405180910390f35b34801561080e57600080fd5b50610817611db0565b005b34801561082557600080fd5b5061082e611f36565b6040518082815260200191505060405180910390f35b34801561085057600080fd5b50610859611f40565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561089157600080fd5b506108be600480360360208110156108a857600080fd5b8101908080359060200190929190505050611f69565b005b3480156108cc57600080fd5b506108d56120f9565b6040518082815260200191505060405180910390f35b3480156108f757600080fd5b506109006120ff565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610940578082015181840152602081019050610925565b50505050905090810190601f16801561096d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561098757600080fd5b506109906121a1565b6040518082815260200191505060405180910390f35b3480156109b257600080fd5b506109bb6121a7565b604051808263ffffffff16815260200191505060405180910390f35b3480156109e357600080fd5b50610a30600480360360408110156109fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121bd565b60405180821515815260200191505060405180910390f35b348015610a5457600080fd5b50610aa160048036036040811015610a6b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061228a565b60405180821515815260200191505060405180910390f35b348015610ac557600080fd5b50610af460048036036020811015610adc57600080fd5b810190808035151590602001909291905050506122a8565b005b348015610b0257600080fd5b50610b2f60048036036020811015610b1957600080fd5b810190808035906020019092919050505061244e565b6040518082815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a6124d2565b604051808260ff16815260200191505060405180910390f35b348015610b7f57600080fd5b50610b886124e5565b60405180821515815260200191505060405180910390f35b348015610bac57600080fd5b50610c0f60048036036040811015610bc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124f8565b6040518082815260200191505060405180910390f35b348015610c3157600080fd5b50610c3a61257f565b60405180821515815260200191505060405180910390f35b348015610c5e57600080fd5b50610c9e60048036036040811015610c7557600080fd5b81019080803560ff169060200190929190803563ffffffff169060200190929190505050612592565b005b348015610cac57600080fd5b50610cef60048036036020811015610cc357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127e7565b005b348015610cfd57600080fd5b50610d4060048036036020811015610d1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b89565b005b348015610d4e57600080fd5b50610d57612d94565b6040518082815260200191505060405180910390f35b348015610d7957600080fd5b50610dbc60048036036020811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d9a565b005b348015610dca57600080fd5b50610dd36131ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610e0b57600080fd5b50610e146131d2565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec25780601f10610e9757610100808354040283529160200191610ec2565b820191906000526020600020905b815481529060010190602001808311610ea557829003601f168201915b5050505050905090565b6000610ee0610ed96131d8565b84846131e0565b6001905092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600069943b1377290cbd800000905090565b6000610f218484846133d7565b610fe284610f2d6131d8565b610fdd8560405180606001604052806028815260200161523260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f936131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b600190509392505050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b6110326131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6005811015611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20323025000081525060200191505060405180910390fd5b8060108190555050565b600061121c6111806131d8565b8461121785600260006111916131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b6131e0565b6001905092915050565b61122e6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080600f819055507fa19cd73a84349518e5c3d968935fb1f202c6eb5b69967184ad5013bbf24af63b816040518082815260200191505060405180910390a16001808190555050565b7f000000000000000000000000a7ddf273e9d1eade13c6e5c51ffe35a23cd6feed81565b600069943b1377290cbd80000083111561145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161147c57600061146d84613dc4565b50505050905080915050611492565b600061148784613dc4565b505050915050809150505b92915050565b60006114ce60028460ff1601600a0a6114c08463ffffffff1687613e1c90919063ffffffff16565b613ea290919063ffffffff16565b90509392505050565b6114df6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506005821015611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203525000081525060200191505060405180910390fd5b6103e882111561170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f546865206665652063616e6e6f74206265206c657373207468616e20302e312581525060200191505060405180910390fd5b600f8363ffffffff16111561178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206665652063616e6e6f74206265206d6f7265207468616e203135250081525060200191505060405180910390fd5b8160108190555083600e60006101000a81548160ff021916908360ff16021790555082600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08484604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1801515601560019054906101000a900460ff161515146118855780601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a15b6001808190555050505050565b6002600154141561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806152aa6027913960400191505060405180910390fd5b6000600360006101000a81548160ff02191690831515021790555060018081905550565b6119e56131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415611b1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4552433230207472616e7366657220746f207a65726f2061646472657373000081525060200191505060405180910390fd5b6000839050611be382601354613eec90919063ffffffff16565b6013819055508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611c7c57600080fd5b505af1158015611c90573d6000803e3d6000fd5b505050506040513d6020811015611ca657600080fd5b8101908080519060200190929190505050505060018081905550505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d6057600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611dab565b611da8600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b90505b919050565b611db86131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000601154905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611f736131d8565b9050600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061527e602c913960400191505060405180910390fd5b600061202383613dc4565b50505050905061207b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120d381600c54613eec90919063ffffffff16565b600c819055506120ee83600d54613d3c90919063ffffffff16565b600d81905550505050565b60125481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121975780601f1061216c57610100808354040283529160200191612197565b820191906000526020600020905b81548152906001019060200180831161217a57829003601f168201915b5050505050905090565b600f5481565b600e60019054906101000a900463ffffffff1681565b60006122806121ca6131d8565b8461227b856040518060600160405280602581526020016152d160259139600260006121f46131d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c7c9092919063ffffffff16565b6131e0565b6001905092915050565b600061229e6122976131d8565b84846133d7565b6001905092915050565b6122b06131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156123e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555080601560016101000a81548160ff0219169083151502179055507ff6048fff6212fd7a65ba15a0d33e029f1e2297a028e8951998aea1d8ead7b30a8160405180821515815260200191505060405180910390a16001808190555050565b6000600c548211156124ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806151e3602e913960400191505060405180910390fd5b60006124b5613f36565b90506124ca8184613ea290919063ffffffff16565b915050919050565b600e60009054906101000a900460ff1681565b601560019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b61259a6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461265a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600260015414156126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600f8163ffffffff161115612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f546865206665652063616e2774206265206d6f7265207468616e20313525000081525060200191505060405180910390fd5b81600e60006101000a81548160ff021916908360ff16021790555080600e60016101000a81548163ffffffff021916908363ffffffff1602179055507f460fa919625630f734b5d86356a2511f134b6df313c793ca09e0399de8d933a08282604051808360ff1681526020018263ffffffff1681526020019250505060405180910390a1600180819055505050565b6127ef6131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156129f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612ac457612a80600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461244e565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555050565b612b916131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061519b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b612da26131d8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60026001541415612edb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fa2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600b805490508110156131a1578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110612fd657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561319457600b6001600b80549050038154811061303257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b828154811061306a57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b80548061315a57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556131a1565b8080600101915050612fa5565b506001808190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061525a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c16022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600360009054906101000a900460ff16156134da577f000000000000000000000000a7ddf273e9d1eade13c6e5c51ffe35a23cd6feed73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806134855750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806134cf5750735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156134d957600080fd5b5b60006134e530611cc5565b9050600061351583600e60009054906101000a900460ff16600e60019054906101000a900463ffffffff16611498565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561357257600090505b6000600f54831015905060007f000000000000000000000000a7ddf273e9d1eade13c6e5c51ffe35a23cd6feed73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161490508180156135e95750601560009054906101000a900460ff16155b80156135f25750805b801561360a5750601560019054906101000a900460ff165b80156136645750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b156136735761367284613f61565b5b600083111561396c57600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561371f5750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137345761372f873085614043565b61396b565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156137d75750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137ec576137e7873085614296565b61396a565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138905750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138a5576138a08730856144e9565b613969565b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139475750600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561395c576139578730856146a7565b613968565b6139678730856144e9565b5b5b5b5b5b60006139818487613eec90919063ffffffff16565b9050600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a265750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613a3b57613a36888883614043565b613c72565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ade5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af357613aee888883614296565b613c71565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613b975750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613bac57613ba78888836144e9565b613c70565b600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613c4e5750600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c6357613c5e8888836146a7565b613c6f565b613c6e8888836144e9565b5b5b5b5b5050505050505050565b6000838311158290613d29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613cee578082015181840152602081019050613cd3565b50505050905090810190601f168015613d1b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613dba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000613dd88861498f565b915091506000613de6613f36565b90506000806000613df88c86866149cf565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600080831415613e2f5760009050613e9c565b6000828402905082848281613e4057fe5b0414613e97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152116021913960400191505060405180910390fd5b809150505b92915050565b6000613ee483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614a2d565b905092915050565b6000613f2e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613c7c565b905092915050565b6000806000613f43614af3565b91509150613f5a8183613ea290919063ffffffff16565b9250505090565b6001601560006101000a81548160ff0219169083151502179055506000613f92600283613ea290919063ffffffff16565b90506000613fa98284613eec90919063ffffffff16565b90506000479050613fb983614da4565b6000613fce8247613eec90919063ffffffff16565b9050613fda838261502e565b7f4ef2142970fd06465a66d49cd924fdd56a52bae776dc706128dfeb6a49ce97c784828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b600080600080600061405486613dc4565b945094509450945094506140b086600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061414585600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141da84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506142278382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006142a786613dc4565b9450945094509450945061430385600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439882600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061442d84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061447a8382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006144fa86613dc4565b9450945094509450945061455685600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145eb84600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146388382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006146b886613dc4565b9450945094509450945061471486600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a985600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613eec90919063ffffffff16565b600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061483e82600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148d384600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d3c90919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149208382615160565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060006149a960105485613ea290919063ffffffff16565b905060006149c08286613eec90919063ffffffff16565b90508082935093505050915091565b6000806000806149e88588613e1c90919063ffffffff16565b905060006149ff8688613e1c90919063ffffffff16565b90506000614a168284613eec90919063ffffffff16565b905082818395509550955050505093509350939050565b60008083118290614ad9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614a9e578082015181840152602081019050614a83565b50505050905090810190601f168015614acb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614ae557fe5b049050809150509392505050565b6000806000600c549050600069943b1377290cbd800000905060005b600b80549050811015614d57578260086000600b8481548110614b2e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614c1557508160096000600b8481548110614bad57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614c3457600c5469943b1377290cbd80000094509450505050614da0565b614cbd60086000600b8481548110614c4857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613eec90919063ffffffff16565b9250614d4860096000600b8481548110614cd357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613eec90919063ffffffff16565b91508080600101915050614b0f565b50614d7769943b1377290cbd800000600c54613ea290919063ffffffff16565b821015614d9757600c5469943b1377290cbd800000935093505050614da0565b81819350935050505b9091565b6060600267ffffffffffffffff81118015614dbe57600080fd5b50604051908082528060200260200182016040528015614ded5781602001602082028036833780820191505090505b5090503081600081518110614dfe57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614e9257600080fd5b505afa158015614ea6573d6000803e3d6000fd5b505050506040513d6020811015614ebc57600080fd5b810190808051906020019092919050505081600181518110614eda57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614f3330737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614fe9578082015181840152602081019050614fce565b505050509050019650505050505050600060405180830381600087803b15801561501257600080fd5b505af1158015615026573d6000803e3d6000fd5b505050505050565b61504d30737a250d5630b4cf539739df2c5dacb4c659f2488d846131e0565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561510957600080fd5b505af115801561511d573d6000803e3d6000fd5b50505050506040513d606081101561513457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b61517582600c54613eec90919063ffffffff16565b600c8190555061519081600d54613d3c90919063ffffffff16565b600d81905550505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e2074686520746f74616c20616c6c6f636174696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e4f6e6c79207468652070726573616c6520636f6e74726163742063616e2063616c6c207468697345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f731d9f42dd6917d5259b8503c16b869d37655b11cf34996bfb029860a53a03064736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e84800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a2d89895958da5736edf22b39be690965c8c6fec

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 00000000000000000000000000000000000000000000000000000000001e8480
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000a2d89895958da5736edf22b39be690965c8c6fec


Deployed Bytecode Sourcemap

26760:23181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29582:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31763:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27092:115;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30657:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32406:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27259:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30509:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46457:216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33136:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42928:270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27214:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48389:434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42215:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41360:769;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36879:182;;;;;;;;;;;;;:::i;:::-;;43398:361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30815:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2484:148;;;;;;;;;;;;;:::i;:::-;;38977:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1842:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48004:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27966:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29784:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27828:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27794:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33857:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31227:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43206:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48831:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27763:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28129:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31465:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28095:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42580:340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49096:343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2787:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28006:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49447:489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27335:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28048:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29582:83;29619:13;29652:5;29645:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29582:83;:::o;31763:169::-;31846:4;31863:39;31872:12;:10;:12::i;:::-;31886:7;31895:6;31863:8;:39::i;:::-;31920:4;31913:11;;31763:169;;;;:::o;27092:115::-;27164:42;27092:115;:::o;30657:95::-;30710:7;27644:19;30730:14;;30657:95;:::o;32406:321::-;32512:4;32529:36;32539:6;32547:9;32558:6;32529:9;:36::i;:::-;32576:121;32585:6;32593:12;:10;:12::i;:::-;32607:89;32645:6;32607:89;;;;;;;;;;;;;;;;;:11;:19;32619:6;32607:19;;;;;;;;;;;;;;;:33;32627:12;:10;:12::i;:::-;32607:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32576:8;:121::i;:::-;32715:4;32708:11;;32406:321;;;;;:::o;27259:69::-;;;;;;;;;;;;;:::o;30509:83::-;30550:5;30575:9;;;;;;;;;;;30568:16;;30509:83;:::o;46457:216::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46537:1:::1;46532;:6;;46524:49;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46664:1;46651:10;:14;;;;46457:216:::0;:::o;33136:218::-;33224:4;33241:83;33250:12;:10;:12::i;:::-;33264:7;33273:50;33312:10;33273:11;:25;33285:12;:10;:12::i;:::-;33273:25;;;;;;;;;;;;;;;:34;33299:7;33273:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33241:8;:83::i;:::-;33342:4;33335:11;;33136:218;;;;:::o;42928:270::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1:::1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25803:1;26542:7;:18;;;;43097:23:::2;43072:22;:48;;;;43136:54;43166:23;43136:54;;;;;;;;;;;;;;;;;;25759:1:::1;26721:7:::0;:22:::1;;;;42928:270:::0;:::o;27214:38::-;;;:::o;48389:434::-;48479:7;27644:19;48507:7;:18;;48499:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48577:17;48572:244;;48612:15;48635:19;48646:7;48635:10;:19::i;:::-;48611:43;;;;;;48676:7;48669:14;;;;;48572:244;48718:23;48748:19;48759:7;48748:10;:19::i;:::-;48716:51;;;;;;48789:15;48782:22;;;48389:434;;;;;:::o;42215:269::-;42352:14;42388:88;42463:1;42447:12;42439:21;;:25;42434:2;:31;42388:27;42400:14;42388:27;;:7;:11;;:27;;;;:::i;:::-;:31;;:88;;;;:::i;:::-;42379:97;;42215:269;;;;;:::o;41360:769::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1:::1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25803:1;26542:7;:18;;;;41578:1:::2;41561:13;:18;;41553:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41650:4;41633:13;:21;;41625:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41731:2;41711:16;:22;;;;41703:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;41793:13;41780:10;:26;;;;41831:14;41817:11;;:28;;;;;;;;;;;;;;;;;;41872:16;41856:13;;:32;;;;;;;;;;;;;;;;;;41904:44;41915:14;41931:16;41904:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;41997:8;41973:32;;:20;;;;;;;;;;;:32;;;41969:144;;42040:8;42017:20;;:31;;;;;;;;;;;;;;;;;;42064:37;42092:8;42064:37;;;;;;;;;;;;;;;;;;;;41969:144;25759:1:::1;26721:7:::0;:22:::1;;;;41360:769:::0;;;;:::o;36879:182::-;25803:1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1;26542:7;:18;;;;36969:7:::1;;;;;;;;;;;36955:21;;:10;:21;;;36946:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37048:5;37031:14;;:22;;;;;;;;;;;;;;;;;;25759:1:::0;26721:7;:22;;;;36879:182::o;43398:361::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1:::1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25803:1;26542:7;:18;;;;43525:1:::2;43510:17;;:3;:17;;;;43502:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;43582:21;43622:6;43582:47;;43663:33;43688:7;43663:20;;:24;;:33;;;;:::i;:::-;43640:20;:56;;;;43717:5;:14;;;43732:9;;;;;;;;;;;43743:7;43717:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;26573:1;25759::::1;26721:7:::0;:22:::1;;;;43398:361:::0;;;:::o;30815:199::-;30881:7;30906:11;:20;30918:7;30906:20;;;;;;;;;;;;;;;;;;;;;;;;;30902:49;;;30935:7;:16;30943:7;30935:16;;;;;;;;;;;;;;;;30928:23;;;;30902:49;30969:37;30989:7;:16;30997:7;30989:16;;;;;;;;;;;;;;;;30969:19;:37::i;:::-;30962:44;;30815:199;;;;:::o;2484:148::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2591:1:::1;2554:40;;2575:6;::::0;::::1;;;;;;;;2554:40;;;;;;;;;;;;2622:1;2605:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2484:148::o:0;38977:97::-;39025:7;39052:14;;39045:21;;38977:97;:::o;1842:79::-;1880:7;1907:6;;;;;;;;;;;1900:13;;1842:79;:::o;48004:377::-;48057:14;48074:12;:10;:12::i;:::-;48057:29;;48106:11;:19;48118:6;48106:19;;;;;;;;;;;;;;;;;;;;;;;;;48105:20;48097:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48186:15;48209:19;48220:7;48209:10;:19::i;:::-;48185:43;;;;;;48257:28;48277:7;48257;:15;48265:6;48257:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48239:7;:15;48247:6;48239:15;;;;;;;;;;;;;;;:46;;;;48306:20;48318:7;48306;;:11;;:20;;;;:::i;:::-;48296:7;:30;;;;48350:23;48365:7;48350:10;;:14;;:23;;;;:::i;:::-;48337:10;:36;;;;48004:377;;;:::o;27966:33::-;;;;:::o;29784:87::-;29823:13;29856:7;29849:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29784:87;:::o;27828:37::-;;;;:::o;27794:27::-;;;;;;;;;;;;;:::o;33857:269::-;33950:4;33967:129;33976:12;:10;:12::i;:::-;33990:7;33999:96;34038:15;33999:96;;;;;;;;;;;;;;;;;:11;:25;34011:12;:10;:12::i;:::-;33999:25;;;;;;;;;;;;;;;:34;34025:7;33999:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33967:8;:129::i;:::-;34114:4;34107:11;;33857:269;;;;:::o;31227:175::-;31313:4;31330:42;31340:12;:10;:12::i;:::-;31354:9;31365:6;31330:9;:42::i;:::-;31390:4;31383:11;;31227:175;;;;:::o;43206:184::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1:::1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25803:1;26542:7;:18;;;;43321:8:::2;43298:20;;:31;;;;;;;;;;;;;;;;;;43345:37;43373:8;43345:37;;;;;;;;;;;;;;;;;;;;25759:1:::1;26721:7:::0;:22:::1;;;;43206:184:::0;:::o;48831:257::-;48897:7;48936;;48925;:18;;48917:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49005:19;49028:10;:8;:10::i;:::-;49005:33;;49056:24;49068:11;49056:7;:11;;:24;;;;:::i;:::-;49049:31;;;48831:257;;;:::o;27763:24::-;;;;;;;;;;;;;:::o;28129:32::-;;;;;;;;;;;;;:::o;31465:151::-;31554:7;31581:11;:18;31593:5;31581:18;;;;;;;;;;;;;;;:27;31600:7;31581:27;;;;;;;;;;;;;;;;31574:34;;31465:151;;;;:::o;28095:27::-;;;;;;;;;;;;;:::o;42580:340::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1:::1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25803:1;26542:7;:18;;;;42741:2:::2;42723:14;:20;;;;42715:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;42803:12;42789:11;;:26;;;;;;;;;;;;;;;;;;42842:14;42826:13;;:30;;;;;;;;;;;;;;;;;;42872:40;42883:12;42897:14;42872:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;25759:1:::1;26721:7:::0;:22:::1;;;;42580:340:::0;;:::o;49096:343::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1:::1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25803:1;26542:7;:18;;;;49189:11:::2;:20;49201:7;49189:20;;;;;;;;;;;;;;;;;;;;;;;;;49188:21;49180:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;49274:1;49255:7;:16;49263:7;49255:16;;;;;;;;;;;;;;;;:20;49252:108;;;49311:37;49331:7;:16;49339:7;49331:16;;;;;;;;;;;;;;;;49311:19;:37::i;:::-;49292:7;:16;49300:7;49292:16;;;;;;;;;;;;;;;:56;;;;49252:108;49393:4;49370:11;:20;49382:7;49370:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;49408:9;49423:7;49408:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25759:1:::1;26721:7:::0;:22:::1;;;;49096:343:::0;:::o;2787:244::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2896:1:::1;2876:22;;:8;:22;;;;2868:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2986:8;2957:38;;2978:6;::::0;::::1;;;;;;;;2957:38;;;;;;;;;;;;3015:8;3006:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2787:244:::0;:::o;28006:35::-;;;;:::o;49447:489::-;2064:12;:10;:12::i;:::-;2054:22;;:6;;;;;;;;;;:22;;;2046:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25803:1:::1;26409:7;;:19;;26401:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;25803:1;26542:7;:18;;;;49539:11:::2;:20;49551:7;49539:20;;;;;;;;;;;;;;;;;;;;;;;;;49531:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;49607:9;49602:327;49626:9;:16;;;;49622:1;:20;49602:327;;;49684:7;49668:23;;:9;49678:1;49668:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;49664:254;;;49727:9;49756:1;49737:9;:16;;;;:20;49727:31;;;;;;;;;;;;;;;;;;;;;;;;;49712:9;49722:1;49712:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;49796:1;49777:7;:16;49785:7;49777:16;;;;;;;;;;;;;;;:20;;;;49839:5;49816:11;:20;49828:7;49816:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;49863:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49897:5;;49664:254;49644:3;;;;;;;49602:327;;;;25759:1:::1;26721:7:::0;:22:::1;;;;49447:489:::0;:::o;27335:22::-;;;;;;;;;;;;;:::o;28048:33::-;;;;:::o;480:106::-;533:15;568:10;561:17;;480:106;:::o;37502:346::-;37621:1;37604:19;;:5;:19;;;;37596:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37702:1;37683:21;;:7;:21;;;;37675:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37786:6;37756:11;:18;37768:5;37756:18;;;;;;;;;;;;;;;:27;37775:7;37756:27;;;;;;;;;;;;;;;:36;;;;37824:7;37808:32;;37817:5;37808:32;;;37833:6;37808:32;;;;;;;;;;;;;;;;;;37502:346;;;:::o;34130:2737::-;34249:14;;;;;;;;;;;34245:245;;;34308:13;34294:28;;:2;:28;;;:62;;;;27164:42;34326:30;;:2;:30;;;34294:62;:123;;;;34374:42;34360:57;;:2;:57;;;34294:123;34290:192;;;34433:8;;;34290:192;34245:245;34785:28;34816:24;34834:4;34816:9;:24::i;:::-;34785:55;;34851:20;34874:98;34901:6;34922:11;;;;;;;;;;;34948:13;;;;;;;;;;;34874:12;:98::i;:::-;34851:121;;34995:7;;;;;;;;;;;34987:15;;:4;:15;;;34983:37;;;35019:1;35004:16;;34983:37;35031:24;35082:22;;35058:20;:46;;35031:73;;35115:24;35148:13;35142:19;;:2;:19;;;35115:46;;35191:19;:52;;;;;35228:15;;;;;;;;;;;35227:16;35191:52;:88;;;;;35260:19;35191:88;:125;;;;;35296:20;;;;;;;;;;;35191:125;:157;;;;;35341:7;;;;;;;;;;;35333:15;;:4;:15;;;;35191:157;35173:243;;;35375:35;35389:20;35375:13;:35::i;:::-;35173:243;35441:1;35426:12;:16;35422:642;;;35458:11;:17;35470:4;35458:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;35480:11;:15;35492:2;35480:15;;;;;;;;;;;;;;;;;;;;;;;;;35479:16;35458:37;35454:603;;;35513:56;35535:4;35549;35556:12;35513:21;:56::i;:::-;35454:603;;;35592:11;:17;35604:4;35592:17;;;;;;;;;;;;;;;;;;;;;;;;;35591:18;:37;;;;;35613:11;:15;35625:2;35613:15;;;;;;;;;;;;;;;;;;;;;;;;;35591:37;35587:470;;;35646:54;35666:4;35680;35687:12;35646:19;:54::i;:::-;35587:470;;;35723:11;:17;35735:4;35723:17;;;;;;;;;;;;;;;;;;;;;;;;;35722:18;:38;;;;;35745:11;:15;35757:2;35745:15;;;;;;;;;;;;;;;;;;;;;;;;;35744:16;35722:38;35718:339;;;35777:52;35795:4;35809;35816:12;35777:17;:52::i;:::-;35718:339;;;35851:11;:17;35863:4;35851:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;35872:11;:15;35884:2;35872:15;;;;;;;;;;;;;;;;;;;;;;;;;35851:36;35847:210;;;35904:56;35926:4;35940;35947:12;35904:21;:56::i;:::-;35847:210;;;35993:52;36011:4;36025;36032:12;35993:17;:52::i;:::-;35847:210;35718:339;35587:470;35454:603;35422:642;36222:24;36249;36260:12;36249:6;:10;;:24;;;;:::i;:::-;36222:51;;36288:11;:17;36300:4;36288:17;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;;36310:11;:15;36322:2;36310:15;;;;;;;;;;;;;;;;;;;;;;;;;36309:16;36288:37;36284:566;;;36342:49;36364:4;36370:2;36374:16;36342:21;:49::i;:::-;36284:566;;;36414:11;:17;36426:4;36414:17;;;;;;;;;;;;;;;;;;;;;;;;;36413:18;:37;;;;;36435:11;:15;36447:2;36435:15;;;;;;;;;;;;;;;;;;;;;;;;;36413:37;36409:441;;;36467:47;36487:4;36493:2;36497:16;36467:19;:47::i;:::-;36409:441;;;36537:11;:17;36549:4;36537:17;;;;;;;;;;;;;;;;;;;;;;;;;36536:18;:38;;;;;36559:11;:15;36571:2;36559:15;;;;;;;;;;;;;;;;;;;;;;;;;36558:16;36536:38;36532:318;;;36591:45;36609:4;36615:2;36619:16;36591:17;:45::i;:::-;36532:318;;;36658:11;:17;36670:4;36658:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;36679:11;:15;36691:2;36679:15;;;;;;;;;;;;;;;;;;;;;;;;;36658:36;36654:196;;;36711:49;36733:4;36739:2;36743:16;36711:21;:49::i;:::-;36654:196;;;36793:45;36811:4;36817:2;36821:16;36793:17;:45::i;:::-;36654:196;36532:318;36409:441;36284:566;34130:2737;;;;;;;;:::o;4783:192::-;4869:7;4902:1;4897;:6;;4905:12;4889:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4929:9;4945:1;4941;:5;4929:17;;4966:1;4959:8;;;4783:192;;;;;:::o;3880:181::-;3938:7;3958:9;3974:1;3970;:5;3958:17;;3999:1;3994;:6;;3986:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4052:1;4045:8;;;3880:181;;;;:::o;46033:412::-;46092:7;46101;46110;46119;46128;46149:23;46174:12;46190:21;46203:7;46190:12;:21::i;:::-;46148:63;;;;46222:19;46245:10;:8;:10::i;:::-;46222:33;;46267:15;46284:23;46309:12;46325:39;46337:7;46346:4;46352:11;46325;:39::i;:::-;46266:98;;;;;;46383:7;46392:15;46409:4;46415:15;46432:4;46375:62;;;;;;;;;;;;;;;;46033:412;;;;;;;:::o;5234:471::-;5292:7;5542:1;5537;:6;5533:47;;;5567:1;5560:8;;;;5533:47;5592:9;5608:1;5604;:5;5592:17;;5637:1;5632;5628;:5;;;;;;:10;5620:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5696:1;5689:8;;;5234:471;;;;;:::o;6181:132::-;6239:7;6266:39;6270:1;6273;6266:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6259:46;;6181:132;;;;:::o;4344:136::-;4402:7;4429:43;4433:1;4436;4429:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4422:50;;4344:136;;;;:::o;47266:163::-;47307:7;47328:15;47345;47364:19;:17;:19::i;:::-;47327:56;;;;47401:20;47413:7;47401;:11;;:20;;;;:::i;:::-;47394:27;;;;47266:163;:::o;39244:984::-;28553:4;28535:15;;:22;;;;;;;;;;;;;;;;;;39385:12:::1;39400:27;39425:1;39400:20;:24;;:27;;;;:::i;:::-;39385:42;;39438:17;39458:30;39483:4;39458:20;:24;;:30;;;;:::i;:::-;39438:50;;39766:22;39791:21;39766:46;;39857:22;39874:4;39857:16;:22::i;:::-;40003:18;40024:41;40050:14;40024:21;:25;;:41;;;;:::i;:::-;40003:62;;40115:35;40128:9;40139:10;40115:12;:35::i;:::-;40178:42;40192:4;40198:10;40210:9;40178:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28568:1;;;;28598:5:::0;28580:15;;:23;;;;;;;;;;;;;;;;;;39244:984;:::o;44759:512::-;44862:15;44879:23;44904:12;44918:23;44943:12;44959:19;44970:7;44959:10;:19::i;:::-;44861:117;;;;;;;;;;45007:28;45027:7;45007;:15;45015:6;45007:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44989:7;:15;44997:6;44989:15;;;;;;;;;;;;;;;:46;;;;45064:28;45084:7;45064;:15;45072:6;45064:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45046:7;:15;45054:6;45046:15;;;;;;;;;;;;;;;:46;;;;45124:39;45147:15;45124:7;:18;45132:9;45124:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45103:7;:18;45111:9;45103:18;;;;;;;;;;;;;;;:60;;;;45177:26;45192:4;45198;45177:14;:26::i;:::-;45236:9;45219:44;;45228:6;45219:44;;;45247:15;45219:44;;;;;;;;;;;;;;;;;;44759:512;;;;;;;;:::o;44230:521::-;44331:15;44348:23;44373:12;44387:23;44412:12;44428:19;44439:7;44428:10;:19::i;:::-;44330:117;;;;;;;;;;44476:28;44496:7;44476;:15;44484:6;44476:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44458:7;:15;44466:6;44458:15;;;;;;;;;;;;;;;:46;;;;44536:39;44559:15;44536:7;:18;44544:9;44536:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44515:7;:18;44523:9;44515:18;;;;;;;;;;;;;;;:60;;;;44607:39;44630:15;44607:7;:18;44615:9;44607:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44586:7;:18;44594:9;44586:18;;;;;;;;;;;;;;;:60;;;;44657:26;44672:4;44678;44657:14;:26::i;:::-;44716:9;44699:44;;44708:6;44699:44;;;44727:15;44699:44;;;;;;;;;;;;;;;;;;44230:521;;;;;;;;:::o;43767:455::-;43866:15;43883:23;43908:12;43922:23;43947:12;43963:19;43974:7;43963:10;:19::i;:::-;43865:117;;;;;;;;;;44011:28;44031:7;44011;:15;44019:6;44011:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43993:7;:15;44001:6;43993:15;;;;;;;;;;;;;;;:46;;;;44071:39;44094:15;44071:7;:18;44079:9;44071:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44050:7;:18;44058:9;44050:18;;;;;;;;;;;;;;;:60;;;;44128:26;44143:4;44149;44128:14;:26::i;:::-;44187:9;44170:44;;44179:6;44170:44;;;44198:15;44170:44;;;;;;;;;;;;;;;;;;43767:455;;;;;;;;:::o;45279:588::-;45382:15;45399:23;45424:12;45438:23;45463:12;45479:19;45490:7;45479:10;:19::i;:::-;45381:117;;;;;;;;;;45527:28;45547:7;45527;:15;45535:6;45527:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45509:7;:15;45517:6;45509:15;;;;;;;;;;;;;;;:46;;;;45584:28;45604:7;45584;:15;45592:6;45584:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45566:7;:15;45574:6;45566:15;;;;;;;;;;;;;;;:46;;;;45644:39;45667:15;45644:7;:18;45652:9;45644:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45623:7;:18;45631:9;45623:18;;;;;;;;;;;;;;;:60;;;;45715:39;45738:15;45715:7;:18;45723:9;45715:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45694:7;:18;45702:9;45694:18;;;;;;;;;;;;;;;:60;;;;45773:26;45788:4;45794;45773:14;:26::i;:::-;45832:9;45815:44;;45824:6;45815:44;;;45843:15;45815:44;;;;;;;;;;;;;;;;;;45279:588;;;;;;;;:::o;46685:231::-;46746:7;46755;46775:12;46790:23;46802:10;;46790:7;:11;;:23;;;;:::i;:::-;46775:38;;46824:23;46850:17;46862:4;46850:7;:11;;:17;;;;:::i;:::-;46824:43;;46886:15;46903:4;46878:30;;;;;;46685:231;;;:::o;46924:334::-;47019:7;47028;47037;47057:15;47075:24;47087:11;47075:7;:11;;:24;;;;:::i;:::-;47057:42;;47110:12;47125:21;47134:11;47125:4;:8;;:21;;;;:::i;:::-;47110:36;;47157:23;47183:17;47195:4;47183:7;:11;;:17;;;;:::i;:::-;47157:43;;47219:7;47228:15;47245:4;47211:39;;;;;;;;;46924:334;;;;;;;:::o;6809:278::-;6895:7;6927:1;6923;:5;6930:12;6915:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6954:9;6970:1;6966;:5;;;;;;6954:17;;7078:1;7071:8;;;6809:278;;;;;:::o;47437:561::-;47487:7;47496;47516:15;47534:7;;47516:25;;47552:15;27644:19;47552:25;;47599:9;47594:289;47618:9;:16;;;;47614:1;:20;47594:289;;;47684:7;47660;:21;47668:9;47678:1;47668:12;;;;;;;;;;;;;;;;;;;;;;;;;47660:21;;;;;;;;;;;;;;;;:31;:66;;;;47719:7;47695;:21;47703:9;47713:1;47703:12;;;;;;;;;;;;;;;;;;;;;;;;;47695:21;;;;;;;;;;;;;;;;:31;47660:66;47656:97;;;47736:7;;27644:19;47728:25;;;;;;;;;47656:97;47778:34;47790:7;:21;47798:9;47808:1;47798:12;;;;;;;;;;;;;;;;;;;;;;;;;47790:21;;;;;;;;;;;;;;;;47778:7;:11;;:34;;;;:::i;:::-;47768:44;;47837:34;47849:7;:21;47857:9;47867:1;47857:12;;;;;;;;;;;;;;;;;;;;;;;;;47849:21;;;;;;;;;;;;;;;;47837:7;:11;;:34;;;;:::i;:::-;47827:44;;47636:3;;;;;;;47594:289;;;;47907:20;27644:19;47907:7;;:11;;:20;;;;:::i;:::-;47897:7;:30;47893:61;;;47937:7;;27644:19;47929:25;;;;;;;;47893:61;47973:7;47982;47965:25;;;;;;47437:561;;;:::o;40236:589::-;40362:21;40400:1;40386:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40362:40;;40431:4;40413;40418:1;40413:7;;;;;;;;;;;;;:23;;;;;;;;;;;27164:42;40457:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40447:4;40452:1;40447:7;;;;;;;;;;;;;:32;;;;;;;;;;;40492:62;40509:4;27164:42;40542:11;40492:8;:62::i;:::-;27164:42;40593:66;;;40674:11;40700:1;40744:4;40771;40791:15;40593:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40236:589;;:::o;40833:519::-;40981:62;40998:4;27164:42;41031:11;40981:8;:62::i;:::-;27164:42;41086:31;;;41125:9;41158:4;41178:11;41204:1;41247;41298:4;41318:15;41086:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40833:519;;:::o;45875:150::-;45956:17;45968:4;45956:7;;:11;;:17;;;;:::i;:::-;45946:7;:27;;;;45997:20;46012:4;45997:10;;:14;;:20;;;;:::i;:::-;45984:10;:33;;;;45875:150;;:::o

Swarm Source

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