ETH Price: $2,975.04 (-3.87%)
Gas: 2 Gwei

Token

Hero Inu (HEROS)
 

Overview

Max Total Supply

100,000,000,000,000,000 HEROS

Holders

1,107

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
169,551,263,078,887.377824848 HEROS

Value
$0.00
0x3DC3dEC5B36CC7dc445347d116d0E9a09e9Ee7C3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HeroInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-10
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) public _firstBuyTime;
    mapping (address => bool) private _isExcludedFromFee;

    address payable public marketing;
    address payable public charity;
    address payable private _burnPool = 0x0000000000000000000000000000000000000000;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100 * 10**15 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Hero Inu";
    string private _symbol = "HEROS";
    uint8 private _decimals = 9;

    uint256 public _taxBuyFee = 2;
    uint256 public _taxSellFee = 2;
    uint256 public _taxTransferFee = 1;

    uint256 private _operationsFee = 0; //adjusted on the go
    uint256 private _liquidityFee = 0; //adjusted on the go
    uint256 private _taxFee = 0; //adjusted on the go
    uint256 private _burnFee = 0; //adjusted on the go

    uint256 public _marketingBuyFee = 3;
    uint256 public _marketingSellFee = 3;
    uint256 public _marketingTransferFee = 1;

    uint256 public _charityBuyFee = 1;
    uint256 public _charitySellFee = 1;
    uint256 public _charityTransferFee = 1;

    uint256 public _liquidityBuyFee = 2;
    uint256 public _liquiditySellFee = 2;
    uint256 public _liquidityTransferFee = 1;

    uint256 public _burnBuyFee = 2;
    uint256 public _burnSellFee = 2;
    uint256 public _burnTransferFee = 1;

    uint256 public _prev_liquiditySellFee = 0;
    uint256 public _prev_burnSellFee = 0;
    uint256 public _prev_marketingSellFee = 0;
    uint256 public _prev_charitySellFee = 0;
    uint256 public _prev_taxSellFee = 0;

    //These fees are accumulated and adjusted on a per-transfer basis up until swapAndLiquify is called, during which the accumulated funds get distributed as intended
    uint256 public _pendingCharityFees = 0;
    uint256 public _pendingLiquidityFees = 0;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxWalletHolding = 3 * 10**15 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 200 * 10**12 * 10**9;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor (address payable _marketing, address payable _charity) public {
      marketing = _marketing;
      charity = _charity;
      _rOwned[_msgSender()] = _rTotal;
      IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
      uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
      uniswapV2Router = _uniswapV2Router;
      _isExcludedFromFee[owner()] = true;
      _isExcludedFromFee[address(this)] = true;
      emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

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

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

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

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    //this can be called externally by deployer to immediately process accumulated fees accordingly (distribute to treasury & liquidity)
    function manualSwapAndLiquify() public onlyOwner() {
        uint256 contractTokenBalance = balanceOf(address(this));
        swapAndLiquify(contractTokenBalance);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setTax(uint256 _taxType, uint _taxSize) external onlyOwner() {
      if (_taxType == 1) {
        _taxSellFee = _taxSize;
      }
      else if (_taxType == 2) {
        _taxBuyFee = _taxSize;
      }
      else if (_taxType == 3) {
        _taxTransferFee = _taxSize;
      }
      else if (_taxType == 4) {
        _marketingBuyFee = _taxSize;
      }
      else if (_taxType == 5) {
        _marketingSellFee = _taxSize;
      }
      else if (_taxType == 6) {
        _marketingTransferFee = _taxSize;
      }
      else if (_taxType == 7) {
        _burnBuyFee = _taxSize;
      }
      else if (_taxType == 8) {
        _burnSellFee = _taxSize;
      }
      else if (_taxType == 9) {
        _burnTransferFee = _taxSize;
      }
      else if (_taxType == 10) {
        _charityBuyFee = _taxSize;
      }
      else if (_taxType == 11) {
        _charitySellFee = _taxSize;
      }
      else if (_taxType == 12) {
        _charityTransferFee = _taxSize;
      }
      else if (_taxType == 13) {
        _liquidityBuyFee = _taxSize;
      }
      else if (_taxType == 14) {
        _liquiditySellFee = _taxSize;
      }
      else if (_taxType == 15) {
        _liquidityTransferFee = _taxSize;
      }
    }

    function setMaxWalletHoldingPercent(uint256 maxHoldingPercent) external onlyOwner() {
        _maxWalletHolding = _tTotal.mul(maxHoldingPercent).div(
            10**2
        );
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        uint256[4] memory tValues = _getTValuesArray(tAmount);
        uint256[3] memory rValues = _getRValuesArray(tAmount, tValues[1], tValues[2], tValues[3]);
        return (rValues[0], rValues[1], rValues[2], tValues[0], tValues[1], tValues[2], tValues[3]);
    }

    function _getTValuesArray(uint256 tAmount) private view returns (uint256[4] memory val) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tOperations = calculateOperationsFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tOperations);
        return [tTransferAmount, tFee, tLiquidity, tOperations];
    }

    function _getRValuesArray(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tOperations) private view returns (uint256[3] memory val) {
        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(tLiquidity.mul(currentRate)).sub(tOperations.mul(currentRate));
        return [rAmount, rTransferAmount, rFee];
    }

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        _pendingLiquidityFees = _pendingLiquidityFees.add(tLiquidity);
    }

    function _takeOperations(uint256 tOperations, uint8 transferType) private {
        uint256 currentRate =  _getRate();
        uint256 tBurn = 0;
        if (_operationsFee > 0) {
          tBurn = _burnFee.mul(tOperations).div(_operationsFee);
          emit Transfer(address(this), address(0), tBurn);
        }
        uint256 rOperations = tOperations.sub(tBurn).mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rOperations);
        _rOwned[_burnPool] = _rOwned[_burnPool].add(tBurn.mul(currentRate));

        if (_operationsFee > 0) {
          uint256 _deltaCharityFees = 0;

          if (transferType == 1) {
            _deltaCharityFees = tOperations.mul(_charityBuyFee).div(_operationsFee);
          }
          else if (transferType == 2) {
            _deltaCharityFees = tOperations.mul(_charitySellFee).div(_operationsFee);
          }
          else if (transferType == 0) {
            _deltaCharityFees = tOperations.mul(_charityTransferFee).div(_operationsFee);
          }

          if (_deltaCharityFees > 0) _pendingCharityFees = _pendingCharityFees.add(_deltaCharityFees);
        }

    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }

    function calculateOperationsFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_operationsFee).div(
            10**2
        );
    }

    function removeAllFee() private {
        _taxFee = 0;
        _liquidityFee = 0;
        _operationsFee = 0;
        _burnFee = 0;

        _liquiditySellFee = _prev_liquiditySellFee;
        _marketingSellFee = _prev_marketingSellFee;
        _burnSellFee = _prev_burnSellFee;
        _taxSellFee = _prev_taxSellFee;
        _charitySellFee = _prev_charitySellFee;
    }

    function saveAllFee() private {
        _prev_liquiditySellFee = _liquiditySellFee;
        _prev_marketingSellFee = _marketingSellFee;
        _prev_burnSellFee = _burnSellFee;
        _prev_taxSellFee = _taxSellFee;
        _prev_charitySellFee = _charitySellFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        saveAllFee();
        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

        //depending on type of transfer (buy, sell, or p2p tokens transfer) different taxes & fees are imposed
        uint8 transferType = 0;
        bool isTransferBuy = from == uniswapV2Pair;
        bool isTransferSell = to == uniswapV2Pair;

        if (!isTransferBuy && !isTransferSell) {
          _operationsFee = _marketingTransferFee.add(_charityTransferFee).add(_burnTransferFee);
          _liquidityFee = _liquidityTransferFee;
          _taxFee = _taxTransferFee;
          _burnFee = _burnTransferFee;
        }
        else if (isTransferBuy) {
          _operationsFee = _marketingBuyFee.add(_charityBuyFee).add(_burnBuyFee);
          _liquidityFee = _liquidityBuyFee;
          _taxFee = _taxBuyFee;
          _burnFee = _burnBuyFee;
          transferType = 1;
          if (_firstBuyTime[to] == 0) _firstBuyTime[to] = block.timestamp;
        }
        else if (isTransferSell) {
          _operationsFee = _marketingSellFee.add(_charitySellFee).add(_burnSellFee);
          _liquidityFee = _liquiditySellFee;
          _taxFee = _taxSellFee;
          _burnFee = _burnSellFee;
          transferType = 2;
          if (_firstBuyTime[from] != 0 && (_firstBuyTime[from] + (24 hours) > block.timestamp) ) {
            //doubling sell tax when user is flipping within 24 hrs
            _marketingSellFee = _marketingSellFee.mul(2);
            _liquiditySellFee = _liquiditySellFee.mul(2);
            _burnSellFee = _burnSellFee.mul(2);
            _taxSellFee = _taxSellFee.mul(2);
            _charitySellFee = _charitySellFee.mul(2);
            _operationsFee = _operationsFee.mul(2);
            _liquidityFee = _liquidityFee.mul(2);
            _taxFee = _taxFee.mul(2);
            _burnFee = _burnFee.mul(2);
          }
        }

        //transfer amount, it will take tax, liquidity & treasury fees
        _tokenTransfer(from,to,amount,takeFee,transferType);
        removeAllFee();
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 liquidityPart = 0;
        if (_pendingLiquidityFees < contractTokenBalance) liquidityPart = _pendingLiquidityFees;
        uint256 distributionPart = contractTokenBalance.sub(liquidityPart);
        uint256 liquidityHalfPart = liquidityPart.div(2);
        uint256 liquidityHalfTokenPart = liquidityPart.sub(liquidityHalfPart);

        //now swapping half of the liquidity part + all of the distribution part into ETH
        uint256 totalETHSwap = liquidityHalfPart.add(distributionPart);

        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(totalETHSwap);

        uint256 newBalance = address(this).balance.sub(initialBalance);
        uint256 liquidityBalance = liquidityHalfPart.mul(newBalance).div(totalETHSwap);

        // add liquidity to uniswap
        if (liquidityHalfTokenPart > 0 && liquidityBalance > 0) addLiquidity(liquidityHalfTokenPart, liquidityBalance);
        emit SwapAndLiquify(liquidityHalfPart, liquidityBalance, liquidityHalfPart);

        newBalance = address(this).balance;
        uint256 charityETHPart = newBalance.mul(_pendingCharityFees).div(distributionPart);
        uint256 marketingETHPart = newBalance.sub(charityETHPart);
        payDistribution(marketingETHPart, charityETHPart);
        _pendingLiquidityFees = 0;
        _pendingCharityFees = 0;
    }

    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 payDistribution(uint256 marketingETHPart, uint256 charityETHPart) private {
      marketing.sendValue(marketingETHPart);
      charity.sendValue(charityETHPart);
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee, uint8 transferType) private {
        if(!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount, transferType);
        if (!_isExcludedFromFee[recipient] && (recipient != uniswapV2Pair)) require(balanceOf(recipient) < _maxWalletHolding, "Max Wallet holding limit exceeded");
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_marketing","type":"address"},{"internalType":"address payable","name":"_charity","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":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charitySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_firstBuyTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pendingCharityFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pendingLiquidityFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prev_burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prev_charitySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prev_liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prev_marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prev_taxSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charity","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwapAndLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHoldingPercent","type":"uint256"}],"name":"setMaxWalletHoldingPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxType","type":"uint256"},{"internalType":"uint256","name":"_taxSize","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506a52b7d2dcc80cd2e4000000600b55600b54600019816200006357fe5b0660001903600c556040518060400160405280600881526020017f4865726f20496e75000000000000000000000000000000000000000000000000815250600e9080519060200190620000b892919062000773565b506040518060400160405280600581526020017f4845524f53000000000000000000000000000000000000000000000000000000815250600f90805190602001906200010692919062000773565b506009601060006101000a81548160ff021916908360ff1602179055506002601155600260125560016013556000601455600060155560006016556000601755600360185560036019556001601a556001601b556001601c556001601d556002601e556002601f5560016020556002602155600260225560016023556000602455600060255560006026556000602755600060285560006029556000602a556001602b60016101000a81548160ff0219169083151502179055506a027b46536c66c8e3000000602c55692a5a058fc295ed000000602d55348015620001ea57600080fd5b50604051620051ff380380620051ff833981810160405260408110156200021057600080fd5b81019080805190602001909291908051906020019092919050505060006200023d6200074260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c5460036000620003746200074260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200041257600080fd5b505afa15801562000427573d6000803e3d6000fd5b505050506040513d60208110156200043e57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620004b257600080fd5b505afa158015620004c7573d6000803e3d6000fd5b505050506040513d6020811015620004de57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200055957600080fd5b505af11580156200056e573d6000803e3d6000fd5b505050506040513d60208110156200058557600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160076000620006196200074a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006d26200074260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350505062000819565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007b657805160ff1916838001178555620007e7565b82800160010185558215620007e7579182015b82811115620007e6578251825591602001919060010190620007c9565b5b509050620007f69190620007fa565b5090565b5b8082111562000815576000816000905550600101620007fb565b5090565b60805160601c60a05160601c61498f62000870600039806116bf5280612bfd5280612d295280612d7c52806136cc5250806112505280613b2c5280613c185280613c3f5280613d4a5280613d71525061498f6000f3fe60806040526004361061036f5760003560e01c80637b29f1bc116101c6578063b64d6639116100f7578063e125460211610095578063ea2f0b371161006f578063ea2f0b3714611086578063f2fde38b146110d7578063f499133514611128578063fa156a661461115357610376565b8063e125460214611005578063e3624bba14611030578063e799eb261461105b57610376565b8063cd4f852d116100d1578063cd4f852d14610eef578063dac1138014610f1a578063dd46706414610f45578063dd62ed3e14610f8057610376565b8063b64d663914610e5c578063b6c5232414610e87578063c49b9a8014610eb257610376565b8063934aa02311610164578063a639c05c1161013e578063a639c05c14610d44578063a69df4b514610da9578063a9059cbb14610dc0578063a93a0fd014610e3157610376565b8063934aa02314610c0257806395d89b4114610c43578063a457c2d714610cd357610376565b806389da2b96116101a057806389da2b9614610b405780638b5bdeb314610b6b5780638da5cb5b14610b965780639271123414610bd757610376565b80637b29f1bc14610abf5780637b6af6f914610aea578063866435c514610b1557610376565b806339509351116102a05780635d05a6ff1161023e57806370a082311161021857806370a0823114610a01578063715018a614610a66578063733b864f14610a7d5780637881fc2714610a9457610376565b80635d05a6ff14610966578063667f6526146109915780636b73fc9a146109d657610376565b806349bd5a5e1161027a57806349bd5a5e146108565780634a74bb02146108975780634f67e714146108c45780635342acb4146108ff57610376565b80633950935114610739578063437823ec146107aa5780634549b039146107fb57610376565b80631944ada31161030d578063250020cd116102e7578063250020cd146106505780632d3e474a1461067b5780632d838119146106bc578063313ce5671461070b57610376565b80631944ada314610569578063232f3ff21461059457806323b872dd146105bf57610376565b80631453f600116103495780631453f600146104a75780631694505e146104d257806318160ddd1461051357806318a194001461053e57610376565b806306fdde031461037b578063095ea7b31461040b57806313114a9d1461047c57610376565b3661037657005b600080fd5b34801561038757600080fd5b5061039061117e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103d05780820151818401526020810190506103b5565b50505050905090810190601f1680156103fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041757600080fd5b506104646004803603604081101561042e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611220565b60405180821515815260200191505060405180910390f35b34801561048857600080fd5b5061049161123e565b6040518082815260200191505060405180910390f35b3480156104b357600080fd5b506104bc611248565b6040518082815260200191505060405180910390f35b3480156104de57600080fd5b506104e761124e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561051f57600080fd5b50610528611272565b6040518082815260200191505060405180910390f35b34801561054a57600080fd5b5061055361127c565b6040518082815260200191505060405180910390f35b34801561057557600080fd5b5061057e611282565b6040518082815260200191505060405180910390f35b3480156105a057600080fd5b506105a9611288565b6040518082815260200191505060405180910390f35b3480156105cb57600080fd5b50610638600480360360608110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061128e565b60405180821515815260200191505060405180910390f35b34801561065c57600080fd5b50610665611367565b6040518082815260200191505060405180910390f35b34801561068757600080fd5b5061069061136d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c857600080fd5b506106f5600480360360208110156106df57600080fd5b8101908080359060200190929190505050611393565b6040518082815260200191505060405180910390f35b34801561071757600080fd5b50610720611417565b604051808260ff16815260200191505060405180910390f35b34801561074557600080fd5b506107926004803603604081101561075c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061142e565b60405180821515815260200191505060405180910390f35b3480156107b657600080fd5b506107f9600480360360208110156107cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114e1565b005b34801561080757600080fd5b506108406004803603604081101561081e57600080fd5b8101908080359060200190929190803515159060200190929190505050611604565b6040518082815260200191505060405180910390f35b34801561086257600080fd5b5061086b6116bd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108a357600080fd5b506108ac6116e1565b60405180821515815260200191505060405180910390f35b3480156108d057600080fd5b506108fd600480360360208110156108e757600080fd5b81019080803590602001909291905050506116f4565b005b34801561090b57600080fd5b5061094e6004803603602081101561092257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ed565b60405180821515815260200191505060405180910390f35b34801561097257600080fd5b5061097b611843565b6040518082815260200191505060405180910390f35b34801561099d57600080fd5b506109d4600480360360408110156109b457600080fd5b810190808035906020019092919080359060200190929190505050611849565b005b3480156109e257600080fd5b506109eb611a5a565b6040518082815260200191505060405180910390f35b348015610a0d57600080fd5b50610a5060048036036020811015610a2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a60565b6040518082815260200191505060405180910390f35b348015610a7257600080fd5b50610a7b611ab1565b005b348015610a8957600080fd5b50610a92611c37565b005b348015610aa057600080fd5b50610aa9611d18565b6040518082815260200191505060405180910390f35b348015610acb57600080fd5b50610ad4611d1e565b6040518082815260200191505060405180910390f35b348015610af657600080fd5b50610aff611d24565b6040518082815260200191505060405180910390f35b348015610b2157600080fd5b50610b2a611d2a565b6040518082815260200191505060405180910390f35b348015610b4c57600080fd5b50610b55611d30565b6040518082815260200191505060405180910390f35b348015610b7757600080fd5b50610b80611d36565b6040518082815260200191505060405180910390f35b348015610ba257600080fd5b50610bab611d3c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610be357600080fd5b50610bec611d65565b6040518082815260200191505060405180910390f35b348015610c0e57600080fd5b50610c17611d6b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c4f57600080fd5b50610c58611d91565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c98578082015181840152602081019050610c7d565b50505050905090810190601f168015610cc55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610cdf57600080fd5b50610d2c60048036036040811015610cf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e33565b60405180821515815260200191505060405180910390f35b348015610d5057600080fd5b50610d9360048036036020811015610d6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f00565b6040518082815260200191505060405180910390f35b348015610db557600080fd5b50610dbe611f18565b005b348015610dcc57600080fd5b50610e1960048036036040811015610de357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612135565b60405180821515815260200191505060405180910390f35b348015610e3d57600080fd5b50610e46612153565b6040518082815260200191505060405180910390f35b348015610e6857600080fd5b50610e71612159565b6040518082815260200191505060405180910390f35b348015610e9357600080fd5b50610e9c61215f565b6040518082815260200191505060405180910390f35b348015610ebe57600080fd5b50610eed60048036036020811015610ed557600080fd5b81019080803515159060200190929190505050612169565b005b348015610efb57600080fd5b50610f04612287565b6040518082815260200191505060405180910390f35b348015610f2657600080fd5b50610f2f61228d565b6040518082815260200191505060405180910390f35b348015610f5157600080fd5b50610f7e60048036036020811015610f6857600080fd5b8101908080359060200190929190505050612293565b005b348015610f8c57600080fd5b50610fef60048036036040811015610fa357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612484565b6040518082815260200191505060405180910390f35b34801561101157600080fd5b5061101a61250b565b6040518082815260200191505060405180910390f35b34801561103c57600080fd5b50611045612511565b6040518082815260200191505060405180910390f35b34801561106757600080fd5b50611070612517565b6040518082815260200191505060405180910390f35b34801561109257600080fd5b506110d5600480360360208110156110a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061251d565b005b3480156110e357600080fd5b50611126600480360360208110156110fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612640565b005b34801561113457600080fd5b5061113d61284b565b6040518082815260200191505060405180910390f35b34801561115f57600080fd5b50611168612851565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112165780601f106111eb57610100808354040283529160200191611216565b820191906000526020600020905b8154815290600101906020018083116111f957829003601f168201915b5050505050905090565b600061123461122d612857565b848461285f565b6001905092915050565b6000600d54905090565b60245481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b54905090565b60225481565b601a5481565b60275481565b600061129b848484612a56565b61135c846112a7612857565b6113578560405180606001604052806028815260200161485760289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061130d612857565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131239092919063ffffffff16565b61285f565b600190509392505050565b601c5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c548211156113f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061478a602a913960400191505060405180910390fd5b60006113fa6131e3565b905061140f818461320e90919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b60006114d761143b612857565b846114d2856005600061144c612857565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b61285f565b6001905092915050565b6114e9612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b5483111561167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161169f57600061168e846132e0565b5050505050509050809150506116b7565b60006116aa846132e0565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b602b60019054906101000a900460ff1681565b6116fc612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117e460646117d683600b546133e090919063ffffffff16565b61320e90919063ffffffff16565b602c8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60265481565b611851612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018214156119265780601281905550611a56565b600282141561193b5780601181905550611a55565b60038214156119505780601381905550611a54565b60048214156119655780601881905550611a53565b600582141561197a5780601981905550611a52565b600682141561198f5780601a81905550611a51565b60078214156119a45780602181905550611a50565b60088214156119b95780602281905550611a4f565b60098214156119ce5780602381905550611a4e565b600a8214156119e35780601b81905550611a4d565b600b8214156119f85780601c81905550611a4c565b600c821415611a0d5780601d81905550611a4b565b600d821415611a225780601e81905550611a4a565b600e821415611a375780601f81905550611a49565b600f821415611a4857806020819055505b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5050565b60215481565b6000611aaa600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611393565b9050919050565b611ab9612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c3f612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611d0a30611a60565b9050611d1581613466565b50565b60205481565b60115481565b601b5481565b602a5481565b60285481565b60295481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60255481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e295780601f10611dfe57610100808354040283529160200191611e29565b820191906000526020600020905b815481529060010190602001808311611e0c57829003601f168201915b5050505050905090565b6000611ef6611e40612857565b84611ef1856040518060600160405280602581526020016149146025913960056000611e6a612857565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131239092919063ffffffff16565b61285f565b6001905092915050565b60066020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fbe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148f16023913960400191505060405180910390fd5b6002544211612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000612149612142612857565b8484612a56565b6001905092915050565b60185481565b601d5481565b6000600254905090565b612171612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80602b60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b60125481565b601f5481565b61229b612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461235b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601e5481565b60195481565b60235481565b612525612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612648612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147b46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602c5481565b60135481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148cd6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561296b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806147da6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612adc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806148a86025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147676023913960400191505060405180910390fd5b60008111612bbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061487f6029913960400191505060405180910390fd5b612bc361362c565b6000612bce30611a60565b90506000602d548210159050808015612bf45750602b60009054906101000a900460ff16155b8015612c4c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612c645750602b60019054906101000a900460ff165b15612c7357612c7282613466565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d1a5750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d2457600090505b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614905081158015612dd7575080155b15612e2d57612e07602354612df9601d54601a5461325890919063ffffffff16565b61325890919063ffffffff16565b601481905550602054601581905550601354601681905550602354601781905550613103565b8115612f1557612e5e602154612e50601b5460185461325890919063ffffffff16565b61325890919063ffffffff16565b601481905550601e54601581905550601154601681905550602154601781905550600192506000600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415612f105742600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b613102565b801561310157612f46602254612f38601c5460195461325890919063ffffffff16565b61325890919063ffffffff16565b601481905550601f54601581905550601254601681905550602254601781905550600292506000600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414158015612ffe57504262015180600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401115b156131005761301960026019546133e090919063ffffffff16565b6019819055506130356002601f546133e090919063ffffffff16565b601f8190555061305160026022546133e090919063ffffffff16565b60228190555061306d60026012546133e090919063ffffffff16565b6012819055506130896002601c546133e090919063ffffffff16565b601c819055506130a560026014546133e090919063ffffffff16565b6014819055506130c160026015546133e090919063ffffffff16565b6015819055506130dd60026016546133e090919063ffffffff16565b6016819055506130f960026017546133e090919063ffffffff16565b6017819055505b5b5b5b613110898989878761365b565b61311861378a565b505050505050505050565b60008383111582906131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561319557808201518184015260208101905061317a565b50505050905090810190601f1680156131c25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006131f06137d9565b91509150613207818361320e90919063ffffffff16565b9250505090565b600061325083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613826565b905092915050565b6000808284019050838110156132d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060006132f3614722565b6132fc896138ec565b9050613306614744565b6133458a8360016004811061331757fe5b60200201518460026004811061332957fe5b60200201518560036004811061333b57fe5b6020020151613982565b90508060006003811061335457fe5b60200201518160016003811061336657fe5b60200201518260026003811061337857fe5b60200201518460006004811061338a57fe5b60200201518560016004811061339c57fe5b6020020151866002600481106133ae57fe5b6020020151876003600481106133c057fe5b602002015198509850985098509850985098505050919395979092949650565b6000808314156133f35760009050613460565b600082840290508284828161340457fe5b041461345b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148366021913960400191505060405180910390fd5b809150505b92915050565b6001602b60006101000a81548160ff021916908315150217905550600081602a54101561349357602a5490505b60006134a88284613a4c90919063ffffffff16565b905060006134c060028461320e90919063ffffffff16565b905060006134d78285613a4c90919063ffffffff16565b905060006134ee848461325890919063ffffffff16565b905060004790506134fe82613a96565b60006135138247613a4c90919063ffffffff16565b9050600061353c8461352e84896133e090919063ffffffff16565b61320e90919063ffffffff16565b905060008511801561354e5750600081115b1561355e5761355d8582613d44565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a147915060006135d1886135c3602954866133e090919063ffffffff16565b61320e90919063ffffffff16565b905060006135e88285613a4c90919063ffffffff16565b90506135f48183613e8e565b6000602a819055506000602981905550505050505050505050506000602b60006101000a81548160ff02191690831515021790555050565b601f54602481905550601954602681905550602254602581905550601254602881905550601c54602781905550565b816136695761366861378a565b5b61367585858584613f28565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561371b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561378357602c5461372c85611a60565b10613782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149396021913960400191505060405180910390fd5b5b5050505050565b6000601681905550600060158190555060006014819055506000601781905550602454601f81905550602654601981905550602554602281905550602854601281905550602754601c81905550565b6000806000600c5490506000600b549050613801600b54600c5461320e90919063ffffffff16565b82101561381957600c54600b54935093505050613822565b81819350935050505b9091565b600080831182906138d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561389757808201518184015260208101905061387c565b50505050905090810190601f1680156138c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816138de57fe5b049050809150509392505050565b6138f4614722565b60006138ff83614103565b9050600061390c84614134565b9050600061391985614165565b905060006139548261394685613938888b613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b61398a614744565b60006139946131e3565b905060006139ab82886133e090919063ffffffff16565b905060006139c283886133e090919063ffffffff16565b90506000613a216139dc85886133e090919063ffffffff16565b613a136139f2878b6133e090919063ffffffff16565b613a058688613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b6000613a8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613123565b905092915050565b6060600267ffffffffffffffff81118015613ab057600080fd5b50604051908082528060200260200182016040528015613adf5781602001602082028036833780820191505090505b5090503081600081518110613af057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b9057600080fd5b505afa158015613ba4573d6000803e3d6000fd5b505050506040513d6020811015613bba57600080fd5b810190808051906020019092919050505081600181518110613bd857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c3d307f00000000000000000000000000000000000000000000000000000000000000008461285f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cff578082015181840152602081019050613ce4565b505050509050019650505050505050600060405180830381600087803b158015613d2857600080fd5b505af1158015613d3c573d6000803e3d6000fd5b505050505050565b613d6f307f00000000000000000000000000000000000000000000000000000000000000008461285f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613e3757600080fd5b505af1158015613e4b573d6000803e3d6000fd5b50505050506040513d6060811015613e6257600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b613ed982600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661419690919063ffffffff16565b613f2481600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661419690919063ffffffff16565b5050565b6000806000806000806000613f3c896132e0565b9650965096509650965096509650613f9c87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061403186600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061407d826142d0565b61408781896143a8565b61409185846146e8565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061412d606461411f601654856133e090919063ffffffff16565b61320e90919063ffffffff16565b9050919050565b600061415e6064614150601554856133e090919063ffffffff16565b61320e90919063ffffffff16565b9050919050565b600061418f6064614181601454856133e090919063ffffffff16565b61320e90919063ffffffff16565b9050919050565b8047101561420c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d806000811461426c576040519150601f19603f3d011682016040523d82523d6000602084013e614271565b606091505b50509050806142cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806147fc603a913960400191505060405180910390fd5b505050565b60006142da6131e3565b905060006142f182846133e090919063ffffffff16565b905061434581600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439d83602a5461325890919063ffffffff16565b602a81905550505050565b60006143b26131e3565b90506000806014541115614452576143e96014546143db866017546133e090919063ffffffff16565b61320e90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35b60006144798361446b8488613a4c90919063ffffffff16565b6133e090919063ffffffff16565b90506144cd81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061459661452684846133e090919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600060145411156146e157600060018560ff1614156146445761463d60145461462f601b54896133e090919063ffffffff16565b61320e90919063ffffffff16565b90506146ba565b60028560ff1614156146805761467960145461466b601c54896133e090919063ffffffff16565b61320e90919063ffffffff16565b90506146b9565b60008560ff1614156146b8576146b56014546146a7601d54896133e090919063ffffffff16565b61320e90919063ffffffff16565b90505b5b5b60008111156146df576146d88160295461325890919063ffffffff16565b6029819055505b505b5050505050565b6146fd82600c54613a4c90919063ffffffff16565b600c8190555061471881600d5461325890919063ffffffff16565b600d819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220dfe2524f72bcaac86db1a35bf235c839f3437e54b8a4b1d3ee1bf8b2d68a2bc164736f6c634300060c003300000000000000000000000099bd1f147482d88d424127bb7a1a0547f6f3460e0000000000000000000000001437f8a610a189365af3fc440ed67d78b7a3fe33

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80637b29f1bc116101c6578063b64d6639116100f7578063e125460211610095578063ea2f0b371161006f578063ea2f0b3714611086578063f2fde38b146110d7578063f499133514611128578063fa156a661461115357610376565b8063e125460214611005578063e3624bba14611030578063e799eb261461105b57610376565b8063cd4f852d116100d1578063cd4f852d14610eef578063dac1138014610f1a578063dd46706414610f45578063dd62ed3e14610f8057610376565b8063b64d663914610e5c578063b6c5232414610e87578063c49b9a8014610eb257610376565b8063934aa02311610164578063a639c05c1161013e578063a639c05c14610d44578063a69df4b514610da9578063a9059cbb14610dc0578063a93a0fd014610e3157610376565b8063934aa02314610c0257806395d89b4114610c43578063a457c2d714610cd357610376565b806389da2b96116101a057806389da2b9614610b405780638b5bdeb314610b6b5780638da5cb5b14610b965780639271123414610bd757610376565b80637b29f1bc14610abf5780637b6af6f914610aea578063866435c514610b1557610376565b806339509351116102a05780635d05a6ff1161023e57806370a082311161021857806370a0823114610a01578063715018a614610a66578063733b864f14610a7d5780637881fc2714610a9457610376565b80635d05a6ff14610966578063667f6526146109915780636b73fc9a146109d657610376565b806349bd5a5e1161027a57806349bd5a5e146108565780634a74bb02146108975780634f67e714146108c45780635342acb4146108ff57610376565b80633950935114610739578063437823ec146107aa5780634549b039146107fb57610376565b80631944ada31161030d578063250020cd116102e7578063250020cd146106505780632d3e474a1461067b5780632d838119146106bc578063313ce5671461070b57610376565b80631944ada314610569578063232f3ff21461059457806323b872dd146105bf57610376565b80631453f600116103495780631453f600146104a75780631694505e146104d257806318160ddd1461051357806318a194001461053e57610376565b806306fdde031461037b578063095ea7b31461040b57806313114a9d1461047c57610376565b3661037657005b600080fd5b34801561038757600080fd5b5061039061117e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103d05780820151818401526020810190506103b5565b50505050905090810190601f1680156103fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041757600080fd5b506104646004803603604081101561042e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611220565b60405180821515815260200191505060405180910390f35b34801561048857600080fd5b5061049161123e565b6040518082815260200191505060405180910390f35b3480156104b357600080fd5b506104bc611248565b6040518082815260200191505060405180910390f35b3480156104de57600080fd5b506104e761124e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561051f57600080fd5b50610528611272565b6040518082815260200191505060405180910390f35b34801561054a57600080fd5b5061055361127c565b6040518082815260200191505060405180910390f35b34801561057557600080fd5b5061057e611282565b6040518082815260200191505060405180910390f35b3480156105a057600080fd5b506105a9611288565b6040518082815260200191505060405180910390f35b3480156105cb57600080fd5b50610638600480360360608110156105e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061128e565b60405180821515815260200191505060405180910390f35b34801561065c57600080fd5b50610665611367565b6040518082815260200191505060405180910390f35b34801561068757600080fd5b5061069061136d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106c857600080fd5b506106f5600480360360208110156106df57600080fd5b8101908080359060200190929190505050611393565b6040518082815260200191505060405180910390f35b34801561071757600080fd5b50610720611417565b604051808260ff16815260200191505060405180910390f35b34801561074557600080fd5b506107926004803603604081101561075c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061142e565b60405180821515815260200191505060405180910390f35b3480156107b657600080fd5b506107f9600480360360208110156107cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114e1565b005b34801561080757600080fd5b506108406004803603604081101561081e57600080fd5b8101908080359060200190929190803515159060200190929190505050611604565b6040518082815260200191505060405180910390f35b34801561086257600080fd5b5061086b6116bd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108a357600080fd5b506108ac6116e1565b60405180821515815260200191505060405180910390f35b3480156108d057600080fd5b506108fd600480360360208110156108e757600080fd5b81019080803590602001909291905050506116f4565b005b34801561090b57600080fd5b5061094e6004803603602081101561092257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ed565b60405180821515815260200191505060405180910390f35b34801561097257600080fd5b5061097b611843565b6040518082815260200191505060405180910390f35b34801561099d57600080fd5b506109d4600480360360408110156109b457600080fd5b810190808035906020019092919080359060200190929190505050611849565b005b3480156109e257600080fd5b506109eb611a5a565b6040518082815260200191505060405180910390f35b348015610a0d57600080fd5b50610a5060048036036020811015610a2457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a60565b6040518082815260200191505060405180910390f35b348015610a7257600080fd5b50610a7b611ab1565b005b348015610a8957600080fd5b50610a92611c37565b005b348015610aa057600080fd5b50610aa9611d18565b6040518082815260200191505060405180910390f35b348015610acb57600080fd5b50610ad4611d1e565b6040518082815260200191505060405180910390f35b348015610af657600080fd5b50610aff611d24565b6040518082815260200191505060405180910390f35b348015610b2157600080fd5b50610b2a611d2a565b6040518082815260200191505060405180910390f35b348015610b4c57600080fd5b50610b55611d30565b6040518082815260200191505060405180910390f35b348015610b7757600080fd5b50610b80611d36565b6040518082815260200191505060405180910390f35b348015610ba257600080fd5b50610bab611d3c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610be357600080fd5b50610bec611d65565b6040518082815260200191505060405180910390f35b348015610c0e57600080fd5b50610c17611d6b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610c4f57600080fd5b50610c58611d91565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c98578082015181840152602081019050610c7d565b50505050905090810190601f168015610cc55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610cdf57600080fd5b50610d2c60048036036040811015610cf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e33565b60405180821515815260200191505060405180910390f35b348015610d5057600080fd5b50610d9360048036036020811015610d6757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f00565b6040518082815260200191505060405180910390f35b348015610db557600080fd5b50610dbe611f18565b005b348015610dcc57600080fd5b50610e1960048036036040811015610de357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612135565b60405180821515815260200191505060405180910390f35b348015610e3d57600080fd5b50610e46612153565b6040518082815260200191505060405180910390f35b348015610e6857600080fd5b50610e71612159565b6040518082815260200191505060405180910390f35b348015610e9357600080fd5b50610e9c61215f565b6040518082815260200191505060405180910390f35b348015610ebe57600080fd5b50610eed60048036036020811015610ed557600080fd5b81019080803515159060200190929190505050612169565b005b348015610efb57600080fd5b50610f04612287565b6040518082815260200191505060405180910390f35b348015610f2657600080fd5b50610f2f61228d565b6040518082815260200191505060405180910390f35b348015610f5157600080fd5b50610f7e60048036036020811015610f6857600080fd5b8101908080359060200190929190505050612293565b005b348015610f8c57600080fd5b50610fef60048036036040811015610fa357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612484565b6040518082815260200191505060405180910390f35b34801561101157600080fd5b5061101a61250b565b6040518082815260200191505060405180910390f35b34801561103c57600080fd5b50611045612511565b6040518082815260200191505060405180910390f35b34801561106757600080fd5b50611070612517565b6040518082815260200191505060405180910390f35b34801561109257600080fd5b506110d5600480360360208110156110a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061251d565b005b3480156110e357600080fd5b50611126600480360360208110156110fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612640565b005b34801561113457600080fd5b5061113d61284b565b6040518082815260200191505060405180910390f35b34801561115f57600080fd5b50611168612851565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112165780601f106111eb57610100808354040283529160200191611216565b820191906000526020600020905b8154815290600101906020018083116111f957829003601f168201915b5050505050905090565b600061123461122d612857565b848461285f565b6001905092915050565b6000600d54905090565b60245481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600b54905090565b60225481565b601a5481565b60275481565b600061129b848484612a56565b61135c846112a7612857565b6113578560405180606001604052806028815260200161485760289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061130d612857565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131239092919063ffffffff16565b61285f565b600190509392505050565b601c5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c548211156113f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061478a602a913960400191505060405180910390fd5b60006113fa6131e3565b905061140f818461320e90919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b60006114d761143b612857565b846114d2856005600061144c612857565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b61285f565b6001905092915050565b6114e9612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b5483111561167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161169f57600061168e846132e0565b5050505050509050809150506116b7565b60006116aa846132e0565b5050505050915050809150505b92915050565b7f000000000000000000000000b8c2abc13cc2103608d594cc68577ae098e1fec781565b602b60019054906101000a900460ff1681565b6116fc612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117e460646117d683600b546133e090919063ffffffff16565b61320e90919063ffffffff16565b602c8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60265481565b611851612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018214156119265780601281905550611a56565b600282141561193b5780601181905550611a55565b60038214156119505780601381905550611a54565b60048214156119655780601881905550611a53565b600582141561197a5780601981905550611a52565b600682141561198f5780601a81905550611a51565b60078214156119a45780602181905550611a50565b60088214156119b95780602281905550611a4f565b60098214156119ce5780602381905550611a4e565b600a8214156119e35780601b81905550611a4d565b600b8214156119f85780601c81905550611a4c565b600c821415611a0d5780601d81905550611a4b565b600d821415611a225780601e81905550611a4a565b600e821415611a375780601f81905550611a49565b600f821415611a4857806020819055505b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5050565b60215481565b6000611aaa600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611393565b9050919050565b611ab9612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c3f612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611d0a30611a60565b9050611d1581613466565b50565b60205481565b60115481565b601b5481565b602a5481565b60285481565b60295481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60255481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e295780601f10611dfe57610100808354040283529160200191611e29565b820191906000526020600020905b815481529060010190602001808311611e0c57829003601f168201915b5050505050905090565b6000611ef6611e40612857565b84611ef1856040518060600160405280602581526020016149146025913960056000611e6a612857565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131239092919063ffffffff16565b61285f565b6001905092915050565b60066020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fbe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148f16023913960400191505060405180910390fd5b6002544211612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000612149612142612857565b8484612a56565b6001905092915050565b60185481565b601d5481565b6000600254905090565b612171612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80602b60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b60125481565b601f5481565b61229b612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461235b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601e5481565b60195481565b60235481565b612525612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612648612857565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147b46026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602c5481565b60135481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148cd6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561296b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806147da6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612adc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806148a86025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147676023913960400191505060405180910390fd5b60008111612bbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061487f6029913960400191505060405180910390fd5b612bc361362c565b6000612bce30611a60565b90506000602d548210159050808015612bf45750602b60009054906101000a900460ff16155b8015612c4c57507f000000000000000000000000b8c2abc13cc2103608d594cc68577ae098e1fec773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612c645750602b60019054906101000a900460ff165b15612c7357612c7282613466565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d1a5750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d2457600090505b6000807f000000000000000000000000b8c2abc13cc2103608d594cc68577ae098e1fec773ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000b8c2abc13cc2103608d594cc68577ae098e1fec773ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614905081158015612dd7575080155b15612e2d57612e07602354612df9601d54601a5461325890919063ffffffff16565b61325890919063ffffffff16565b601481905550602054601581905550601354601681905550602354601781905550613103565b8115612f1557612e5e602154612e50601b5460185461325890919063ffffffff16565b61325890919063ffffffff16565b601481905550601e54601581905550601154601681905550602154601781905550600192506000600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415612f105742600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b613102565b801561310157612f46602254612f38601c5460195461325890919063ffffffff16565b61325890919063ffffffff16565b601481905550601f54601581905550601254601681905550602254601781905550600292506000600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414158015612ffe57504262015180600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401115b156131005761301960026019546133e090919063ffffffff16565b6019819055506130356002601f546133e090919063ffffffff16565b601f8190555061305160026022546133e090919063ffffffff16565b60228190555061306d60026012546133e090919063ffffffff16565b6012819055506130896002601c546133e090919063ffffffff16565b601c819055506130a560026014546133e090919063ffffffff16565b6014819055506130c160026015546133e090919063ffffffff16565b6015819055506130dd60026016546133e090919063ffffffff16565b6016819055506130f960026017546133e090919063ffffffff16565b6017819055505b5b5b5b613110898989878761365b565b61311861378a565b505050505050505050565b60008383111582906131d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561319557808201518184015260208101905061317a565b50505050905090810190601f1680156131c25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006131f06137d9565b91509150613207818361320e90919063ffffffff16565b9250505090565b600061325083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613826565b905092915050565b6000808284019050838110156132d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060006132f3614722565b6132fc896138ec565b9050613306614744565b6133458a8360016004811061331757fe5b60200201518460026004811061332957fe5b60200201518560036004811061333b57fe5b6020020151613982565b90508060006003811061335457fe5b60200201518160016003811061336657fe5b60200201518260026003811061337857fe5b60200201518460006004811061338a57fe5b60200201518560016004811061339c57fe5b6020020151866002600481106133ae57fe5b6020020151876003600481106133c057fe5b602002015198509850985098509850985098505050919395979092949650565b6000808314156133f35760009050613460565b600082840290508284828161340457fe5b041461345b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148366021913960400191505060405180910390fd5b809150505b92915050565b6001602b60006101000a81548160ff021916908315150217905550600081602a54101561349357602a5490505b60006134a88284613a4c90919063ffffffff16565b905060006134c060028461320e90919063ffffffff16565b905060006134d78285613a4c90919063ffffffff16565b905060006134ee848461325890919063ffffffff16565b905060004790506134fe82613a96565b60006135138247613a4c90919063ffffffff16565b9050600061353c8461352e84896133e090919063ffffffff16565b61320e90919063ffffffff16565b905060008511801561354e5750600081115b1561355e5761355d8582613d44565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a147915060006135d1886135c3602954866133e090919063ffffffff16565b61320e90919063ffffffff16565b905060006135e88285613a4c90919063ffffffff16565b90506135f48183613e8e565b6000602a819055506000602981905550505050505050505050506000602b60006101000a81548160ff02191690831515021790555050565b601f54602481905550601954602681905550602254602581905550601254602881905550601c54602781905550565b816136695761366861378a565b5b61367585858584613f28565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561371b57507f000000000000000000000000b8c2abc13cc2103608d594cc68577ae098e1fec773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561378357602c5461372c85611a60565b10613782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149396021913960400191505060405180910390fd5b5b5050505050565b6000601681905550600060158190555060006014819055506000601781905550602454601f81905550602654601981905550602554602281905550602854601281905550602754601c81905550565b6000806000600c5490506000600b549050613801600b54600c5461320e90919063ffffffff16565b82101561381957600c54600b54935093505050613822565b81819350935050505b9091565b600080831182906138d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561389757808201518184015260208101905061387c565b50505050905090810190601f1680156138c45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816138de57fe5b049050809150509392505050565b6138f4614722565b60006138ff83614103565b9050600061390c84614134565b9050600061391985614165565b905060006139548261394685613938888b613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b61398a614744565b60006139946131e3565b905060006139ab82886133e090919063ffffffff16565b905060006139c283886133e090919063ffffffff16565b90506000613a216139dc85886133e090919063ffffffff16565b613a136139f2878b6133e090919063ffffffff16565b613a058688613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b613a4c90919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b6000613a8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613123565b905092915050565b6060600267ffffffffffffffff81118015613ab057600080fd5b50604051908082528060200260200182016040528015613adf5781602001602082028036833780820191505090505b5090503081600081518110613af057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b9057600080fd5b505afa158015613ba4573d6000803e3d6000fd5b505050506040513d6020811015613bba57600080fd5b810190808051906020019092919050505081600181518110613bd857fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c3d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461285f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cff578082015181840152602081019050613ce4565b505050509050019650505050505050600060405180830381600087803b158015613d2857600080fd5b505af1158015613d3c573d6000803e3d6000fd5b505050505050565b613d6f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461285f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613e3757600080fd5b505af1158015613e4b573d6000803e3d6000fd5b50505050506040513d6060811015613e6257600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b613ed982600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661419690919063ffffffff16565b613f2481600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661419690919063ffffffff16565b5050565b6000806000806000806000613f3c896132e0565b9650965096509650965096509650613f9c87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a4c90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061403186600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061407d826142d0565b61408781896143a8565b61409185846146e8565b8973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061412d606461411f601654856133e090919063ffffffff16565b61320e90919063ffffffff16565b9050919050565b600061415e6064614150601554856133e090919063ffffffff16565b61320e90919063ffffffff16565b9050919050565b600061418f6064614181601454856133e090919063ffffffff16565b61320e90919063ffffffff16565b9050919050565b8047101561420c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d806000811461426c576040519150601f19603f3d011682016040523d82523d6000602084013e614271565b606091505b50509050806142cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806147fc603a913960400191505060405180910390fd5b505050565b60006142da6131e3565b905060006142f182846133e090919063ffffffff16565b905061434581600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439d83602a5461325890919063ffffffff16565b602a81905550505050565b60006143b26131e3565b90506000806014541115614452576143e96014546143db866017546133e090919063ffffffff16565b61320e90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35b60006144798361446b8488613a4c90919063ffffffff16565b6133e090919063ffffffff16565b90506144cd81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061459661452684846133e090919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325890919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600060145411156146e157600060018560ff1614156146445761463d60145461462f601b54896133e090919063ffffffff16565b61320e90919063ffffffff16565b90506146ba565b60028560ff1614156146805761467960145461466b601c54896133e090919063ffffffff16565b61320e90919063ffffffff16565b90506146b9565b60008560ff1614156146b8576146b56014546146a7601d54896133e090919063ffffffff16565b61320e90919063ffffffff16565b90505b5b5b60008111156146df576146d88160295461325890919063ffffffff16565b6029819055505b505b5050505050565b6146fd82600c54613a4c90919063ffffffff16565b600c8190555061471881600d5461325890919063ffffffff16565b600d819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220dfe2524f72bcaac86db1a35bf235c839f3437e54b8a4b1d3ee1bf8b2d68a2bc164736f6c634300060c0033

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

00000000000000000000000099bd1f147482d88d424127bb7a1a0547f6f3460e0000000000000000000000001437f8a610a189365af3fc440ed67d78b7a3fe33

-----Decoded View---------------
Arg [0] : _marketing (address): 0x99Bd1F147482D88d424127bB7A1A0547F6f3460e
Arg [1] : _charity (address): 0x1437F8A610a189365Af3Fc440ed67d78b7A3Fe33

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000099bd1f147482d88d424127bb7a1a0547f6f3460e
Arg [1] : 0000000000000000000000001437f8a610a189365af3fc440ed67d78b7a3fe33


Deployed Bytecode Sourcemap

25610:20454:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29168:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30020:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31013:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27370:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27862:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29445:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27288:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26940:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27509:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30189:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27029:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26032:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31554:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29354:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30510:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32133:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31108:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27920:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27995:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33648:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38702:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27461:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32370:1270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27251:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29548:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16209:148;;;;;;;;;;;;;:::i;:::-;;31953:172;;;;;;;;;;;;;:::i;:::-;;27202:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26503:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26989:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27813:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27555:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27768:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15566:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27418:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26071:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29259:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30736:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25915:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17215:293;;;;;;;;;;;;;:::i;:::-;;29694:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26855:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27070:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16764:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33844:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26539:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27159:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16929:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29869:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27117:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26897:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27326:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32252:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16512:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28044:53;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26576:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29168:83;29205:13;29238:5;29231:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29168:83;:::o;30020:161::-;30095:4;30112:39;30121:12;:10;:12::i;:::-;30135:7;30144:6;30112:8;:39::i;:::-;30169:4;30162:11;;30020:161;;;;:::o;31013:87::-;31055:7;31082:10;;31075:17;;31013:87;:::o;27370:41::-;;;;:::o;27862:51::-;;;:::o;29445:95::-;29498:7;29525;;29518:14;;29445:95;:::o;27288:31::-;;;;:::o;26940:40::-;;;;:::o;27509:39::-;;;;:::o;30189:313::-;30287:4;30304:36;30314:6;30322:9;30333:6;30304:9;:36::i;:::-;30351:121;30360:6;30368:12;:10;:12::i;:::-;30382:89;30420:6;30382:89;;;;;;;;;;;;;;;;;:11;:19;30394:6;30382:19;;;;;;;;;;;;;;;:33;30402:12;:10;:12::i;:::-;30382:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30351:8;:121::i;:::-;30490:4;30483:11;;30189:313;;;;;:::o;27029:34::-;;;;:::o;26032:32::-;;;;;;;;;;;;;:::o;31554:253::-;31620:7;31659;;31648;:18;;31640:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31724:19;31747:10;:8;:10::i;:::-;31724:33;;31775:24;31787:11;31775:7;:11;;:24;;;;:::i;:::-;31768:31;;;31554:253;;;:::o;29354:83::-;29395:5;29420:9;;;;;;;;;;;29413:16;;29354:83;:::o;30510:218::-;30598:4;30615:83;30624:12;:10;:12::i;:::-;30638:7;30647:50;30686:10;30647:11;:25;30659:12;:10;:12::i;:::-;30647:25;;;;;;;;;;;;;;;:34;30673:7;30647:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30615:8;:83::i;:::-;30716:4;30709:11;;30510:218;;;;:::o;32133:111::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32232:4:::1;32202:18;:27;32221:7;32202:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32133:111:::0;:::o;31108:438::-;31198:7;31237;;31226;:18;;31218:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31296:17;31291:248;;31331:15;31356:19;31367:7;31356:10;:19::i;:::-;31330:45;;;;;;;;31397:7;31390:14;;;;;31291:248;31439:23;31471:19;31482:7;31471:10;:19::i;:::-;31437:53;;;;;;;;31512:15;31505:22;;;31108:438;;;;;:::o;27920:38::-;;;:::o;27995:40::-;;;;;;;;;;;;;:::o;33648:188::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33763:65:::1;33812:5;33763:30;33775:17;33763:7;;:11;;:30;;;;:::i;:::-;:34;;:65;;;;:::i;:::-;33743:17;:85;;;;33648:188:::0;:::o;38702:123::-;38766:4;38790:18;:27;38809:7;38790:27;;;;;;;;;;;;;;;;;;;;;;;;;38783:34;;38702:123;;;:::o;27461:41::-;;;;:::o;32370:1270::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32465:1:::1;32453:8;:13;32449:1184;;;32493:8;32479:11;:22;;;;32449:1184;;;32540:1;32528:8;:13;32524:1109;;;32567:8;32554:10;:21;;;;32524:1109;;;32614:1;32602:8;:13;32598:1035;;;32646:8;32628:15;:26;;;;32598:1035;;;32693:1;32681:8;:13;32677:956;;;32726:8;32707:16;:27;;;;32677:956;;;32773:1;32761:8;:13;32757:876;;;32807:8;32787:17;:28;;;;32757:876;;;32854:1;32842:8;:13;32838:795;;;32892:8;32868:21;:32;;;;32838:795;;;32939:1;32927:8;:13;32923:710;;;32967:8;32953:11;:22;;;;32923:710;;;33014:1;33002:8;:13;32998:635;;;33043:8;33028:12;:23;;;;32998:635;;;33090:1;33078:8;:13;33074:559;;;33123:8;33104:16;:27;;;;33074:559;;;33170:2;33158:8;:14;33154:479;;;33202:8;33185:14;:25;;;;33154:479;;;33249:2;33237:8;:14;33233:400;;;33282:8;33264:15;:26;;;;33233:400;;;33329:2;33317:8;:14;33313:320;;;33366:8;33344:19;:30;;;;33313:320;;;33413:2;33401:8;:14;33397:236;;;33447:8;33428:16;:27;;;;33397:236;;;33494:2;33482:8;:14;33478:155;;;33529:8;33509:17;:28;;;;33478:155;;;33576:2;33564:8;:14;33560:73;;;33615:8;33591:21;:32;;;;33560:73;33478:155;33397:236;33313:320;33233:400;33154:479;33074:559;32998:635;32923:710;32838:795;32757:876;32677:956;32598:1035;32524:1109;32449:1184;32370:1270:::0;;:::o;27251:30::-;;;;:::o;29548:138::-;29614:7;29641:37;29661:7;:16;29669:7;29661:16;;;;;;;;;;;;;;;;29641:19;:37::i;:::-;29634:44;;29548:138;;;:::o;16209:148::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16316:1:::1;16279:40;;16300:6;::::0;::::1;;;;;;;;16279:40;;;;;;;;;;;;16347:1;16330:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16209:148::o:0;31953:172::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32015:28:::1;32046:24;32064:4;32046:9;:24::i;:::-;32015:55;;32081:36;32096:20;32081:14;:36::i;:::-;15848:1;31953:172::o:0;27202:40::-;;;;:::o;26503:29::-;;;;:::o;26989:33::-;;;;:::o;27813:40::-;;;;:::o;27555:35::-;;;;:::o;27768:38::-;;;;:::o;15566:79::-;15604:7;15631:6;;;;;;;;;;;15624:13;;15566:79;:::o;27418:36::-;;;;:::o;26071:30::-;;;;;;;;;;;;;:::o;29259:87::-;29298:13;29331:7;29324:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29259:87;:::o;30736:269::-;30829:4;30846:129;30855:12;:10;:12::i;:::-;30869:7;30878:96;30917:15;30878:96;;;;;;;;;;;;;;;;;:11;:25;30890:12;:10;:12::i;:::-;30878:25;;;;;;;;;;;;;;;:34;30904:7;30878:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30846:8;:129::i;:::-;30993:4;30986:11;;30736:269;;;;:::o;25915:49::-;;;;;;;;;;;;;;;;;:::o;17215:293::-;17285:10;17267:28;;:14;;;;;;;;;;;:28;;;17259:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17360:9;;17354:3;:15;17346:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17451:14;;;;;;;;;;;17422:44;;17443:6;;;;;;;;;;17422:44;;;;;;;;;;;;17486:14;;;;;;;;;;;17477:6;;:23;;;;;;;;;;;;;;;;;;17215:293::o;29694:167::-;29772:4;29789:42;29799:12;:10;:12::i;:::-;29813:9;29824:6;29789:9;:42::i;:::-;29849:4;29842:11;;29694:167;;;;:::o;26855:35::-;;;;:::o;27070:38::-;;;;:::o;16764:89::-;16809:7;16836:9;;16829:16;;16764:89;:::o;33844:171::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33945:8:::1;33921:21;;:32;;;;;;;;;;;;;;;;;;33969:38;33998:8;33969:38;;;;;;;;;;;;;;;;;;;;33844:171:::0;:::o;26539:30::-;;;;:::o;27159:36::-;;;;:::o;16929:214::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17010:6:::1;::::0;::::1;;;;;;;;16993:14;;:23;;;;;;;;;;;;;;;;;;17044:1;17027:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17075:4;17069:3;:10;17057:9;:22;;;;17132:1;17095:40;;17116:6;::::0;::::1;;;;;;;;17095:40;;;;;;;;;;;;16929:214:::0;:::o;29869:143::-;29950:7;29977:11;:18;29989:5;29977:18;;;;;;;;;;;;;;;:27;29996:7;29977:27;;;;;;;;;;;;;;;;29970:34;;29869:143;;;;:::o;27117:35::-;;;;:::o;26897:36::-;;;;:::o;27326:35::-;;;;:::o;32252:110::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32349:5:::1;32319:18;:27;32338:7;32319:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;32252:110:::0;:::o;16512:244::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16621:1:::1;16601:22;;:8;:22;;;;16593:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16711:8;16682:38;;16703:6;::::0;::::1;;;;;;;;16682:38;;;;;;;;;;;;16740:8;16731:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16512:244:::0;:::o;28044:53::-;;;;:::o;26576:34::-;;;;:::o;7974:106::-;8027:15;8062:10;8055:17;;7974:106;:::o;38833:337::-;38943:1;38926:19;;:5;:19;;;;38918:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39024:1;39005:21;;:7;:21;;;;38997:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39108:6;39078:11;:18;39090:5;39078:18;;;;;;;;;;;;;;;:27;39097:7;39078:27;;;;;;;;;;;;;;;:36;;;;39146:7;39130:32;;39139:5;39130:32;;;39155:6;39130:32;;;;;;;;;;;;;;;;;;38833:337;;;:::o;39178:3001::-;39316:1;39300:18;;:4;:18;;;;39292:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39393:1;39379:16;;:2;:16;;;;39371:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39463:1;39454:6;:10;39446:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39521:12;:10;:12::i;:::-;39544:28;39575:24;39593:4;39575:9;:24::i;:::-;39544:55;;39612:24;39663:29;;39639:20;:53;;39612:80;;39721:19;:53;;;;;39758:16;;;;;;;;;;;39757:17;39721:53;:91;;;;;39799:13;39791:21;;:4;:21;;;;39721:91;:129;;;;;39829:21;;;;;;;;;;;39721:129;39703:222;;;39877:36;39892:20;39877:14;:36::i;:::-;39703:222;39998:12;40013:4;39998:19;;40117:18;:24;40136:4;40117:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;40145:18;:22;40164:2;40145:22;;;;;;;;;;;;;;;;;;;;;;;;;40117:50;40114:96;;;40193:5;40183:15;;40114:96;40334:18;40367;40396:13;40388:21;;:4;:21;;;40367:42;;40420:19;40448:13;40442:19;;:2;:19;;;40420:41;;40479:13;40478:14;:33;;;;;40497:14;40496:15;40478:33;40474:1537;;;40543:68;40594:16;;40543:46;40569:19;;40543:21;;:25;;:46;;;;:::i;:::-;:50;;:68;;;;:::i;:::-;40526:14;:85;;;;40640:21;;40624:13;:37;;;;40684:15;;40674:7;:25;;;;40723:16;;40712:8;:27;;;;40474:1537;;;40770:13;40766:1245;;;40815:53;40856:11;;40815:36;40836:14;;40815:16;;:20;;:36;;;;:::i;:::-;:40;;:53;;;;:::i;:::-;40798:14;:70;;;;40897:16;;40881:13;:32;;;;40936:10;;40926:7;:20;;;;40970:11;;40959:8;:22;;;;41009:1;40994:16;;41048:1;41027:13;:17;41041:2;41027:17;;;;;;;;;;;;;;;;:22;41023:63;;;41071:15;41051:13;:17;41065:2;41051:17;;;;;;;;;;;;;;;:35;;;;41023:63;40766:1245;;;41117:14;41113:898;;;41163:56;41206:12;;41163:38;41185:15;;41163:17;;:21;;:38;;;;:::i;:::-;:42;;:56;;;;:::i;:::-;41146:14;:73;;;;41248:17;;41232:13;:33;;;;41288:11;;41278:7;:21;;;;41323:12;;41312:8;:23;;;;41363:1;41348:16;;41404:1;41381:13;:19;41395:4;41381:19;;;;;;;;;;;;;;;;:24;;:80;;;;;41445:15;41433:8;41410:13;:19;41424:4;41410:19;;;;;;;;;;;;;;;;:32;:50;41381:80;41377:623;;;41568:24;41590:1;41568:17;;:21;;:24;;;;:::i;:::-;41548:17;:44;;;;41627:24;41649:1;41627:17;;:21;;:24;;;;:::i;:::-;41607:17;:44;;;;41681:19;41698:1;41681:12;;:16;;:19;;;;:::i;:::-;41666:12;:34;;;;41729:18;41745:1;41729:11;;:15;;:18;;;;:::i;:::-;41715:11;:32;;;;41780:22;41800:1;41780:15;;:19;;:22;;;;:::i;:::-;41762:15;:40;;;;41834:21;41853:1;41834:14;;:18;;:21;;;;:::i;:::-;41817:14;:38;;;;41886:20;41904:1;41886:13;;:17;;:20;;;;:::i;:::-;41870:13;:36;;;;41931:14;41943:1;41931:7;;:11;;:14;;;;:::i;:::-;41921:7;:24;;;;41971:15;41984:1;41971:8;;:12;;:15;;;;:::i;:::-;41960:8;:26;;;;41377:623;41113:898;40766:1245;40474:1537;42095:51;42110:4;42115:2;42118:6;42125:7;42133:12;42095:14;:51::i;:::-;42157:14;:12;:14::i;:::-;39178:3001;;;;;;;;;:::o;4384:192::-;4470:7;4503:1;4498;:6;;4506:12;4490:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4530:9;4546:1;4542;:5;4530:17;;4567:1;4560:8;;;4384:192;;;;;:::o;35582:163::-;35623:7;35644:15;35661;35680:19;:17;:19::i;:::-;35643:56;;;;35717:20;35729:7;35717;:11;;:20;;;;:::i;:::-;35710:27;;;;35582:163;:::o;5782:132::-;5840:7;5867:39;5871:1;5874;5867:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5860:46;;5782:132;;;;:::o;3481:181::-;3539:7;3559:9;3575:1;3571;:5;3559:17;;3600:1;3595;:6;;3587:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3653:1;3646:8;;;3481:181;;;;:::o;34272:396::-;34331:7;34340;34349;34358;34367;34376;34385;34405:25;;:::i;:::-;34433;34450:7;34433:16;:25::i;:::-;34405:53;;34469:25;;:::i;:::-;34497:61;34514:7;34523;34531:1;34523:10;;;;;;;;;;;34535:7;34543:1;34535:10;;;;;;;;;;;34547:7;34555:1;34547:10;;;;;;;;;;;34497:16;:61::i;:::-;34469:89;;34577:7;34585:1;34577:10;;;;;;;;;;;34589:7;34597:1;34589:10;;;;;;;;;;;34601:7;34609:1;34601:10;;;;;;;;;;;34613:7;34621:1;34613:10;;;;;;;;;;;34625:7;34633:1;34625:10;;;;;;;;;;;34637:7;34645:1;34637:10;;;;;;;;;;;34649:7;34657:1;34649:10;;;;;;;;;;;34569:91;;;;;;;;;;;;;;;;34272:396;;;;;;;;;:::o;4835:471::-;4893:7;5143:1;5138;:6;5134:47;;;5168:1;5161:8;;;;5134:47;5193:9;5209:1;5205;:5;5193:17;;5238:1;5233;5229;:5;;;;;;:10;5221:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5297:1;5290:8;;;4835:471;;;;;:::o;42187:1480::-;28491:4;28472:16;;:23;;;;;;;;;;;;;;;;;;42272:21:::1;42336:20;42312:21;;:44;42308:87;;;42374:21;;42358:37;;42308:87;42406:24;42433:39;42458:13;42433:20;:24;;:39;;;;:::i;:::-;42406:66;;42483:25;42511:20;42529:1;42511:13;:17;;:20;;;;:::i;:::-;42483:48;;42542:30;42575:36;42593:17;42575:13;:17;;:36;;;;:::i;:::-;42542:69;;42715:20;42738:39;42760:16;42738:17;:21;;:39;;;;:::i;:::-;42715:62;;42790:22;42815:21;42790:46;;42881:30;42898:12;42881:16;:30::i;:::-;42924:18;42945:41;42971:14;42945:21;:25;;:41;;;;:::i;:::-;42924:62;;42997:24;43024:51;43062:12;43024:33;43046:10;43024:17;:21;;:33;;;;:::i;:::-;:37;;:51;;;;:::i;:::-;42997:78;;43154:1;43129:22;:26;:50;;;;;43178:1;43159:16;:20;43129:50;43125:110;;;43181:54;43194:22;43218:16;43181:12;:54::i;:::-;43125:110;43251:70;43266:17;43285:16;43303:17;43251:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43347:21;43334:34;;43379:22;43404:57;43444:16;43404:35;43419:19;;43404:10;:14;;:35;;;;:::i;:::-;:39;;:57;;;;:::i;:::-;43379:82;;43472:24;43499:30;43514:14;43499:10;:14;;:30;;;;:::i;:::-;43472:57;;43540:49;43556:16;43574:14;43540:15;:49::i;:::-;43624:1;43600:21;:25;;;;43658:1;43636:19;:23;;;;28506:1;;;;;;;;;;28537:5:::0;28518:16;;:24;;;;;;;;;;;;;;;;;;42187:1480;:::o;38417:277::-;38483:17;;38458:22;:42;;;;38536:17;;38511:22;:42;;;;38584:12;;38564:17;:32;;;;38626:11;;38607:16;:30;;;;38671:15;;38648:20;:38;;;;38417:277::o;45059:396::-;45190:7;45186:27;;45199:14;:12;:14::i;:::-;45186:27;45224:58;45242:6;45250:9;45261:6;45269:12;45224:17;:58::i;:::-;45298:18;:29;45317:9;45298:29;;;;;;;;;;;;;;;;;;;;;;;;;45297:30;:62;;;;;45345:13;45332:26;;:9;:26;;;;45297:62;45293:154;;;45392:17;;45369:20;45379:9;45369;:20::i;:::-;:40;45361:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45293:154;45059:396;;;;;:::o;38026:383::-;38079:1;38069:7;:11;;;;38107:1;38091:13;:17;;;;38136:1;38119:14;:18;;;;38159:1;38148:8;:12;;;;38193:22;;38173:17;:42;;;;38246:22;;38226:17;:42;;;;38294:17;;38279:12;:32;;;;38336:16;;38322:11;:30;;;;38381:20;;38363:15;:38;;;;38026:383::o;35753:256::-;35803:7;35812;35832:15;35850:7;;35832:25;;35868:15;35886:7;;35868:25;;35918:20;35930:7;;35918;;:11;;:20;;;;:::i;:::-;35908:7;:30;35904:61;;;35948:7;;35957;;35940:25;;;;;;;;35904:61;35984:7;35993;35976:25;;;;;;35753:256;;;:::o;6410:278::-;6496:7;6528:1;6524;:5;6531:12;6516:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6555:9;6571:1;6567;:5;;;;;;6555:17;;6679:1;6672:8;;;6410:278;;;;;:::o;34676:425::-;34741:21;;:::i;:::-;34775:12;34790:24;34806:7;34790:15;:24::i;:::-;34775:39;;34825:18;34846:30;34868:7;34846:21;:30::i;:::-;34825:51;;34887:19;34909:31;34932:7;34909:22;:31::i;:::-;34887:53;;34951:23;34977:50;35015:11;34977:33;34999:10;34977:17;34989:4;34977:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;:37;;:50;;;;:::i;:::-;34951:76;;35038:55;;;;;;;;35046:15;35038:55;;;;35063:4;35038:55;;;;35069:10;35038:55;;;;35081:11;35038:55;;;;;;;;;34676:425;;;:::o;35109:465::-;35229:21;;:::i;:::-;35263:19;35285:10;:8;:10::i;:::-;35263:32;;35306:15;35324:24;35336:11;35324:7;:11;;:24;;;;:::i;:::-;35306:42;;35359:12;35374:21;35383:11;35374:4;:8;;:21;;;;:::i;:::-;35359:36;;35406:23;35432:84;35487:28;35503:11;35487;:15;;:28;;;;:::i;:::-;35432:50;35454:27;35469:11;35454:10;:14;;:27;;;;:::i;:::-;35432:17;35444:4;35432:7;:11;;:17;;;;:::i;:::-;:21;;:50;;;;:::i;:::-;:54;;:84;;;;:::i;:::-;35406:110;;35527:39;;;;;;;;35535:7;35527:39;;;;35544:15;35527:39;;;;35561:4;35527:39;;;;;;;;;35109:465;;;;;;:::o;3945:136::-;4003:7;4030:43;4034:1;4037;4030:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4023:50;;3945:136;;;;:::o;43675:589::-;43801:21;43839:1;43825:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43801:40;;43870:4;43852;43857:1;43852:7;;;;;;;;;;;;;:23;;;;;;;;;;;43896:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43886:4;43891:1;43886:7;;;;;;;;;;;;;:32;;;;;;;;;;;43931:62;43948:4;43963:15;43981:11;43931:8;:62::i;:::-;44032:15;:66;;;44113:11;44139:1;44183:4;44210;44230:15;44032:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43675:589;;:::o;44272:519::-;44420:62;44437:4;44452:15;44470:11;44420:8;:62::i;:::-;44525:15;:31;;;44564:9;44597:4;44617:11;44643:1;44686;44737:4;44757:15;44525:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44272:519;;:::o;44799:179::-;44891:37;44911:16;44891:9;;;;;;;;;;;:19;;;;:37;;;;:::i;:::-;44937:33;44955:14;44937:7;;;;;;;;;;;:17;;;;:33;;;;:::i;:::-;44799:179;;:::o;45463:596::-;45582:15;45599:23;45624:12;45638:23;45663:12;45677:18;45697:19;45720;45731:7;45720:10;:19::i;:::-;45581:158;;;;;;;;;;;;;;45768:28;45788:7;45768;:15;45776:6;45768:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45750:7;:15;45758:6;45750:15;;;;;;;;;;;;;;;:46;;;;45828:39;45851:15;45828:7;:18;45836:9;45828:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45807:7;:18;45815:9;45807:18;;;;;;;;;;;;;;;:60;;;;45878:26;45893:10;45878:14;:26::i;:::-;45915:42;45931:11;45944:12;45915:15;:42::i;:::-;45968:23;45980:4;45986;45968:11;:23::i;:::-;46024:9;46007:44;;46016:6;46007:44;;;46035:15;46007:44;;;;;;;;;;;;;;;;;;45463:596;;;;;;;;;;;:::o;37514:154::-;37578:7;37605:55;37644:5;37605:20;37617:7;;37605;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;37598:62;;37514:154;;;:::o;37676:166::-;37746:7;37773:61;37818:5;37773:26;37785:13;;37773:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;37766:68;;37676:166;;;:::o;37850:168::-;37921:7;37948:62;37994:5;37948:27;37960:14;;37948:7;:11;;:27;;;;:::i;:::-;:31;;:62;;;;:::i;:::-;37941:69;;37850:168;;;:::o;10565:397::-;10680:6;10655:21;:31;;10647:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10812:12;10830:9;:14;;10853:6;10830:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10811:54;;;10884:7;10876:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10565:397;;;:::o;36017:309::-;36080:19;36103:10;:8;:10::i;:::-;36080:33;;36124:18;36145:27;36160:11;36145:10;:14;;:27;;;;:::i;:::-;36124:48;;36208:38;36235:10;36208:7;:22;36224:4;36208:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;36183:7;:22;36199:4;36183:22;;;;;;;;;;;;;;;:63;;;;36281:37;36307:10;36281:21;;:25;;:37;;;;:::i;:::-;36257:21;:61;;;;36017:309;;;:::o;36334:1172::-;36419:19;36442:10;:8;:10::i;:::-;36419:33;;36463:13;36512:1;36495:14;;:18;36491:162;;;36536:45;36566:14;;36536:25;36549:11;36536:8;;:12;;:25;;;;:::i;:::-;:29;;:45;;;;:::i;:::-;36528:53;;36631:1;36599:42;;36616:4;36599:42;;;36635:5;36599:42;;;;;;;;;;;;;;;;;;36491:162;36663:19;36685:39;36712:11;36685:22;36701:5;36685:11;:15;;:22;;;;:::i;:::-;:26;;:39;;;;:::i;:::-;36663:61;;36760:39;36787:11;36760:7;:22;36776:4;36760:22;;;;;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;36735:7;:22;36751:4;36735:22;;;;;;;;;;;;;;;:64;;;;36831:46;36854:22;36864:11;36854:5;:9;;:22;;;;:::i;:::-;36831:7;:18;36839:9;;;;;;;;;;;36831:18;;;;;;;;;;;;;;;;:22;;:46;;;;:::i;:::-;36810:7;:18;36818:9;;;;;;;;;;;36810:18;;;;;;;;;;;;;;;:67;;;;36911:1;36894:14;;:18;36890:607;;;36927:25;36991:1;36975:12;:17;;;36971:409;;;37029:51;37065:14;;37029:31;37045:14;;37029:11;:15;;:31;;;;:::i;:::-;:35;;:51;;;;:::i;:::-;37009:71;;36971:409;;;37131:1;37115:12;:17;;;37111:269;;;37169:52;37206:14;;37169:32;37185:15;;37169:11;:15;;:32;;;;:::i;:::-;:36;;:52;;;;:::i;:::-;37149:72;;37111:269;;;37272:1;37256:12;:17;;;37252:128;;;37310:56;37351:14;;37310:36;37326:19;;37310:11;:15;;:36;;;;:::i;:::-;:40;;:56;;;;:::i;:::-;37290:76;;37252:128;37111:269;36971:409;37418:1;37398:17;:21;37394:91;;;37443:42;37467:17;37443:19;;:23;;:42;;;;:::i;:::-;37421:19;:64;;;;37394:91;36890:607;;36334:1172;;;;;:::o;34117:147::-;34195:17;34207:4;34195:7;;:11;;:17;;;;:::i;:::-;34185:7;:27;;;;34236:20;34251:4;34236:10;;:14;;:20;;;;:::i;:::-;34223:10;:33;;;;34117:147;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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