ETH Price: $3,149.73 (-8.35%)
Gas: 8 Gwei

Token

Chubby Inu (CHINU)
 

Overview

Max Total Supply

100,000,000,000,000 CHINU

Holders

1,230

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
6,741,403,688.033681839 CHINU

Value
$0.00
0x0F2990342Bfe3D6C3538C7878928eAea824CDcD8
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:
ChubbyInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

/*                                 

    ChubbyInu is here, we want every dog
    to be comfy and reach healthy chub levels
    so they can be happy dogs!
    3% redist
    2% liq
    2% charity
   
 */
 
//SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

// Contract implementation
contract ChubbyInu is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

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

    uint256 private constant MAX = ~uint256(0);

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


    string private _name = 'Chubby Inu';
    string private _symbol = 'CHINU';
    uint8 private _decimals = 9;

    uint256 private _taxFee = 4;
    uint256 private _charityFee = 3; 
    uint256 private _liquidityFee = 3; 

    uint256 private _previousTaxFee = _taxFee;
    uint256 private _previousCharityFee = _charityFee;
    uint256 private _previousLiquidityFee = _liquidityFee;

    address payable private _charityWalletAddress = payable(0x7067f9128c02428DfE4B0164990f670798Aa9bE7);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify = false;
    bool public swapAndLiquifyEnabled = true;

    uint256 private _maxTxAmount = _tTotal;
    uint256 private _numTokensSellToAddToLiquidity = 1000000000 * 10**9;

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

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

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;

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

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

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


            _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
            _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)); 
    
            _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
            _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));
    
            _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
            _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));
    
            _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
            _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));
            
            _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
            _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));
            
            _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
            _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));

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

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

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

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

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
        _isExcludedFromFee[account] = excluded;
    }

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

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

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

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

    function excludeFromReward(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

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

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

        _previousTaxFee = _taxFee;
        _previousCharityFee = _charityFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _charityFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _charityFee = _previousCharityFee;
        _liquidityFee = _previousLiquidityFee;
    }

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

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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[recipient], "You have no power here!");
        require(!_isBlackListedBot[msg.sender], "You have no power here!");

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

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

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

        bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity;
        if (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
            contractTokenBalance = _numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

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

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

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

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

        // split the contract balance into halves
        uint256 half = toLiquify.div(2);
        uint256 otherHalf = toLiquify.sub(half);

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

        // swap tokens for ETH
        uint256 toSwapForEth = half.add(toCharity);
        swapTokensForEth(toSwapForEth); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

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

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

        emit SwapAndLiquify(half, newBalance, otherHalf);

        sendETHToCharity(fromSwap.sub(newBalance));
    }

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

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

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

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

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

    function sendETHToCharity(uint256 amount) private {
        _charityWalletAddress.transfer(amount);
    }

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

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

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

    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
        if(!takeFee)
            removeAllFee();

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        if(!takeFee)
            restoreAllFee();
    }

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

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

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

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

    function _takeCharityLiquidity(uint256 tCharityLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rCharityLiquidity = tCharityLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rCharityLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tCharityLiquidity);
    }

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

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

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

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

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

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _getTaxFee() private view returns(uint256) {
        return _taxFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _maxTxAmount;
    }

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

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

    function _setCharityFee(uint256 charityFee) external onlyOwner() {
        require(charityFee >= 1 && charityFee <= 49, 'charityFee should be in 1 - 11');
        _charityFee = charityFee;
    }

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


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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFee","type":"uint256"}],"name":"_setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"_setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"_setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapAndLiquifyEnabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

69152d02c7e14af6800000600b5569085afffa6ff50bffffff19600c55610100604052600a60c08190526943687562627920496e7560b01b60e09081526200004b91600e9190620007da565b50604080518082019091526005808252644348494e5560d81b60209092019182526200007a91600f91620007da565b506010805460ff191660091790556004601181905560036012819055601381905560149190915560158190556016556017805461ffff60a01b196001600160a01b0319909116737067f9128c02428dfe4b0164990f670798aa9be71716600160a81b179055600b54601855670de0b6b3a7640000601955348015620000fe57600080fd5b5060006200010b620007c7565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c546003600062000166620007c7565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001dd57600080fd5b505afa158015620001f2573d6000803e3d6000fd5b505050506040513d60208110156200020957600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200025a57600080fd5b505afa1580156200026f573d6000803e3d6000fd5b505050506040513d60208110156200028657600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002d957600080fd5b505af1158015620002ee573d6000803e3d6000fd5b505050506040513d60208110156200030557600080fd5b50516001600160601b0319606091821b811660a0529082901b1660805260016006600062000332620007cb565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600684528281208054861660019081179091556017549092168152918220805485168217905560099092527f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e2128054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673a1cec245c456dd1bd9f2815a6955fef44eb4191b179091557fd06f72f8dd06466bcc52a7fc6bddce65222c1efb674ce288f26d72607f32c02680548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fb180cbdf50fc8306102fae658ae8eddf6673addd522d5a575c2b6924f832977480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557f3ee2bfab112ce489483443731da982ac406a17d09137224e74d494a6037142ad805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fb7baecc9aa863a1182bccd59d3b8aaee484658aee9400a94283dad2dbafd9d1d80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557fab5495752a9187414227aebaa8b39a4bffdb32802987cba6aff3f20498292a7180548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f63fa2d6ca420f9a726a126cd4ecb6c1cc9a862c11b8b23634e14766ea0a5830c80548716861790558254808601845582018054821673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f942ebcb2565846ab429e313119fc37882c100e43cc02a57b5525c115ad4f72998054871686179055825480860184558201805482167359341bc6b4f3ace878574b05914f43309dd678c71790557f5af94c70cd57260eec3231b2f06ace7b65cdeb3d90a0722d811f34a9c53f613480548716861790558254808601845582018054821673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557f2418a7599ba98f17273e05153250af4e64021166f87000ebb8faf0b96cdbcc54805487168617905582548086018455820180548216734aeb32e16dcac00b092596adc6cd4955efdee2901790557f11c8caefcbc9afecd5b2153811f415fe306a1f3884466a0ddf30ba3939464b1e8054909616851790955581549384018255915201805490911673136f4b5b6a306091b280e3f251fa0e21b1280cd517905562000773620007c7565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000876565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200081d57805160ff19168380011785556200084d565b828001600101855582156200084d579182015b828111156200084d57825182559160200191906001019062000830565b506200085b9291506200085f565b5090565b5b808211156200085b576000815560010162000860565b60805160601c60a05160601c6132f4620008be6000398061115352806121215250806109f4528061242752806124df52806125065280612b5c5280612b8352506132f46000f3fe60806040526004361061023f5760003560e01c80635880b8731161012e578063a9059cbb116100ab578063dd4670641161006f578063dd46706414610876578063dd62ed3e146108a0578063f2fde38b146108db578063f42938901461090e578063f815a8421461092357610246565b8063a9059cbb14610797578063af9549e0146107d0578063b6c523241461080b578063bcd6d44614610820578063c49b9a801461084a57610246565b80638da5cb5b116100f25780638da5cb5b146106f557806395d89b411461070a578063a24a8d0f1461071f578063a457c2d714610749578063a69df4b51461078257610246565b80635880b8731461061d57806370a0823114610647578063715018a61461067a5780637ded4d6a1461068f57806388f82020146106c257610246565b80633685d419116101bc57806349bd5a5e1161018057806349bd5a5e146105785780634a74bb021461058d57806351bc3c85146105a257806352390c02146105b75780635342acb4146105ea57610246565b80633685d4191461047d57806339509351146104b05780633bd5d173146104e95780634303443d146105135780634549b0391461054657610246565b80631bbae6e0116102035780631bbae6e01461038f5780631decaadc146103bb57806323b872dd146103e55780632d83811914610428578063313ce5671461045257610246565b806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225780631694505e1461034957806318160ddd1461037a57610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610938565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b0381351690602001356109ce565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506103376109ec565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e6109f2565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b50610337610a16565b34801561039b57600080fd5b506103b9600480360360208110156103b257600080fd5b5035610a1c565b005b3480156103c757600080fd5b506103b9600480360360208110156103de57600080fd5b5035610abc565b3480156103f157600080fd5b5061030e6004803603606081101561040857600080fd5b506001600160a01b03813581169160208101359091169060400135610b5c565b34801561043457600080fd5b506103376004803603602081101561044b57600080fd5b5035610be3565b34801561045e57600080fd5b50610467610c45565b6040805160ff9092168252519081900360200190f35b34801561048957600080fd5b506103b9600480360360208110156104a057600080fd5b50356001600160a01b0316610c4e565b3480156104bc57600080fd5b5061030e600480360360408110156104d357600080fd5b506001600160a01b038135169060200135610e0f565b3480156104f557600080fd5b506103b96004803603602081101561050c57600080fd5b5035610e5d565b34801561051f57600080fd5b506103b96004803603602081101561053657600080fd5b50356001600160a01b0316610f37565b34801561055257600080fd5b506103376004803603604081101561056957600080fd5b508035906020013515156110bf565b34801561058457600080fd5b5061035e611151565b34801561059957600080fd5b5061030e611175565b3480156105ae57600080fd5b506103b9611185565b3480156105c357600080fd5b506103b9600480360360208110156105da57600080fd5b50356001600160a01b03166111f6565b3480156105f657600080fd5b5061030e6004803603602081101561060d57600080fd5b50356001600160a01b03166113d8565b34801561062957600080fd5b506103b96004803603602081101561064057600080fd5b50356113f6565b34801561065357600080fd5b506103376004803603602081101561066a57600080fd5b50356001600160a01b03166114b6565b34801561068657600080fd5b506103b9611518565b34801561069b57600080fd5b506103b9600480360360208110156106b257600080fd5b50356001600160a01b03166115a8565b3480156106ce57600080fd5b5061030e600480360360208110156106e557600080fd5b50356001600160a01b0316611735565b34801561070157600080fd5b5061035e611753565b34801561071657600080fd5b50610260611762565b34801561072b57600080fd5b506103b96004803603602081101561074257600080fd5b50356117c3565b34801561075557600080fd5b5061030e6004803603604081101561076c57600080fd5b506001600160a01b038135169060200135611883565b34801561078e57600080fd5b506103b96118eb565b3480156107a357600080fd5b5061030e600480360360408110156107ba57600080fd5b506001600160a01b0381351690602001356119d9565b3480156107dc57600080fd5b506103b9600480360360408110156107f357600080fd5b506001600160a01b03813516906020013515156119ed565b34801561081757600080fd5b50610337611a70565b34801561082c57600080fd5b506103b96004803603602081101561084357600080fd5b5035611a76565b34801561085657600080fd5b506103b96004803603602081101561086d57600080fd5b50351515611b36565b34801561088257600080fd5b506103b96004803603602081101561089957600080fd5b5035611bac565b3480156108ac57600080fd5b50610337600480360360408110156108c357600080fd5b506001600160a01b0381358116916020013516611c4a565b3480156108e757600080fd5b506103b9600480360360208110156108fe57600080fd5b50356001600160a01b0316611c75565b34801561091a57600080fd5b506103b9611d5b565b34801561092f57600080fd5b50610337611dbd565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b5050505050905090565b60006109e26109db611dc1565b8484611dc5565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610a24611dc1565b6000546001600160a01b03908116911614610a74576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b633b9aca00811015610ab75760405162461bcd60e51b815260040180806020018281038252602c8152602001806130a0602c913960400191505060405180910390fd5b601855565b610ac4611dc1565b6000546001600160a01b03908116911614610b14576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b633b9aca00811015610b575760405162461bcd60e51b815260040180806020018281038252603e8152602001806131eb603e913960400191505060405180910390fd5b601955565b6000610b69848484611eb1565b610bd984610b75611dc1565b610bd4856040518060600160405280602881526020016130ed602891396001600160a01b038a16600090815260056020526040812090610bb3611dc1565b6001600160a01b0316815260208101919091526040016000205491906121c8565b611dc5565b5060019392505050565b6000600c54821115610c265760405162461bcd60e51b815260040180806020018281038252602a815260200180613006602a913960400191505060405180910390fd5b6000610c3061225f565b9050610c3c8382612282565b9150505b919050565b60105460ff1690565b610c56611dc1565b6000546001600160a01b03908116911614610ca6576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d13576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e0b57816001600160a01b031660088281548110610d3757fe5b6000918252602090912001546001600160a01b03161415610e0357600880546000198101908110610d6457fe5b600091825260209091200154600880546001600160a01b039092169183908110610d8a57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ddc57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0b565b600101610d16565b5050565b60006109e2610e1c611dc1565b84610bd48560056000610e2d611dc1565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122cb565b6000610e67611dc1565b6001600160a01b03811660009081526007602052604090205490915060ff1615610ec25760405162461bcd60e51b815260040180806020018281038252602c81526020018061324b602c913960400191505060405180910390fd5b6000610ecd83612325565b505050506001600160a01b038416600090815260036020526040902054919250610ef991905082612395565b6001600160a01b038316600090815260036020526040902055600c54610f1f9082612395565b600c55600d54610f2f90846122cb565b600d55505050565b610f3f611dc1565b6000546001600160a01b03908116911614610f8f576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610feb5760405162461bcd60e51b815260040180806020018281038252602481526020018061317e6024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615611059576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115611118576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161113757600061112884612325565b509395506109e6945050505050565b600061114284612325565b509295506109e6945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601754600160a81b900460ff1681565b61118d611dc1565b6000546001600160a01b039081169116146111dd576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60006111e8306114b6565b90506111f3816123d7565b50565b6111fe611dc1565b6000546001600160a01b0390811691161461124e576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112aa5760405162461bcd60e51b81526004018080602001828103825260228152602001806132296022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611318576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611372576001600160a01b03811660009081526003602052604090205461135890610be3565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113fe611dc1565b6000546001600160a01b0390811691161461144e576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60018110158015611460575060318111155b6114b1576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203439000000000000604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff16156114f657506001600160a01b038116600090815260046020526040902054610c40565b6001600160a01b0382166000908152600360205260409020546109e690610be3565b611520611dc1565b6000546001600160a01b03908116911614611570576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613135833981519152908390a3600080546001600160a01b0319169055565b6115b0611dc1565b6000546001600160a01b03908116911614611600576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1661166d576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610e0b57816001600160a01b0316600a828154811061169157fe5b6000918252602090912001546001600160a01b0316141561172d57600a805460001981019081106116be57fe5b600091825260209091200154600a80546001600160a01b0390921691839081106116e457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610ddc57fe5b600101611670565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b6117cb611dc1565b6000546001600160a01b0390811691161461181b576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001811015801561182d575060318111155b61187e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b60006109e2611890611dc1565b84610bd48560405180606001604052806025815260200161329a60259139600560006118ba611dc1565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121c8565b6001546001600160a01b031633146119345760405162461bcd60e51b81526004018080602001828103825260238152602001806132776023913960400191505060405180910390fd5b600254421161198a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061313583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109e26119e6611dc1565b8484611eb1565b6119f5611dc1565b6000546001600160a01b03908116911614611a45576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b611a7e611dc1565b6000546001600160a01b03908116911614611ace576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60018110158015611ae0575060318111155b611b31576040805162461bcd60e51b815260206004820181905260248201527f6c69717569646974794665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601355565b611b3e611dc1565b6000546001600160a01b03908116911614611b8e576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60178054911515600160a81b0260ff60a81b19909216919091179055565b611bb4611dc1565b6000546001600160a01b03908116911614611c04576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613135833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c7d611dc1565b6000546001600160a01b03908116911614611ccd576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b038116611d125760405162461bcd60e51b81526004018080602001828103825260268152602001806130306026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061313583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d63611dc1565b6000546001600160a01b03908116911614611db3576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b476111f3816125e6565b4790565b3390565b6001600160a01b038316611e0a5760405162461bcd60e51b81526004018080602001828103825260248152602001806131c76024913960400191505060405180910390fd5b6001600160a01b038216611e4f5760405162461bcd60e51b81526004018080602001828103825260228152602001806130566022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ef65760405162461bcd60e51b81526004018080602001828103825260258152602001806131a26025913960400191505060405180910390fd5b6001600160a01b038216611f3b5760405162461bcd60e51b8152600401808060200182810382526023815260200180612fe36023913960400191505060405180910390fd5b60008111611f7a5760405162461bcd60e51b81526004018080602001828103825260298152602001806131556029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611fe2576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615612041576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612049611753565b6001600160a01b0316836001600160a01b031614158015612083575061206d611753565b6001600160a01b0316826001600160a01b031614155b156120c9576018548111156120c95760405162461bcd60e51b81526004018080602001828103825260288152602001806130786028913960400191505060405180910390fd5b60006120d4306114b6565b905060185481106120e457506018545b6019546017549082101590600160a01b900460ff1615801561210f5750601754600160a81b900460ff165b80156121185750805b801561215657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b1561216957601954915061216982612620565b6001600160a01b03851660009081526006602052604090205460019060ff16806121ab57506001600160a01b03851660009081526006602052604090205460ff165b156121b4575060005b6121c086868684612736565b505050505050565b600081848411156122575760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561221c578181015183820152602001612204565b50505050905090810190601f1680156122495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061226c6128aa565b909250905061227b8282612282565b9250505090565b60006122c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a0d565b9392505050565b6000828201838110156122c4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123568a6011546123516013546012546122cb90919063ffffffff16565b612a72565b925092509250600061236661225f565b905060008060006123788e8786612ac1565b919e509c509a509598509396509194505050505091939550919395565b60006122c483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c8565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061240557fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561247e57600080fd5b505afa158015612492573d6000803e3d6000fd5b505050506040513d60208110156124a857600080fd5b50518151829060019081106124b957fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612504307f000000000000000000000000000000000000000000000000000000000000000084611dc5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156125a9578181015183820152602001612591565b505050509050019650505050505050600060405180830381600087803b1580156125d257600080fd5b505af11580156121c0573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e0b573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b17905560135460125460009161265d91612649916122cb565b601254612657908590612afd565b90612282565b9050600061266b8383612395565b9050600061267a826002612282565b905060006126888383612395565b905047600061269784876122cb565b90506126a2816123d7565b60006126ae4784612395565b905060006126c0836126578489612afd565b90506126cc8582612b56565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a161271e6127198383612395565b6125e6565b50506017805460ff60a01b1916905550505050505050565b8061274357612743612c54565b6001600160a01b03841660009081526007602052604090205460ff16801561278457506001600160a01b03831660009081526007602052604090205460ff16155b1561279957612794848484612c9d565b612897565b6001600160a01b03841660009081526007602052604090205460ff161580156127da57506001600160a01b03831660009081526007602052604090205460ff165b156127ea57612794848484612dc1565b6001600160a01b03841660009081526007602052604090205460ff1615801561282c57506001600160a01b03831660009081526007602052604090205460ff16155b1561283c57612794848484612e6a565b6001600160a01b03841660009081526007602052604090205460ff16801561287c57506001600160a01b03831660009081526007602052604090205460ff165b1561288c57612794848484612eae565b612897848484612e6a565b806128a4576128a4612f21565b50505050565b600c54600b546000918291825b6008548110156129db578260036000600884815481106128d357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612938575081600460006008848154811061291157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561294f57600c54600b5494509450505050612a09565b61298f600360006008848154811061296357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612395565b92506129d160046000600884815481106129a557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612395565b91506001016128b7565b50600b54600c546129eb91612282565b821015612a0357600c54600b54935093505050612a09565b90925090505b9091565b60008183612a5c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561221c578181015183820152602001612204565b506000838581612a6857fe5b0495945050505050565b6000808080612a8660646126578989612afd565b90506000612a9960646126578a89612afd565b90506000612ab187612aab8b86612395565b90612395565b9992985090965090945050505050565b6000808080612ad08786612afd565b90506000612ade8787612afd565b90506000612aec8383612395565b929992985090965090945050505050565b600082612b0c575060006109e6565b82820282848281612b1957fe5b04146122c45760405162461bcd60e51b81526004018080602001828103825260218152602001806130cc6021913960400191505060405180910390fd5b612b81307f000000000000000000000000000000000000000000000000000000000000000084611dc5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612bbe611753565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612c2957600080fd5b505af1158015612c3d573d6000803e3d6000fd5b50505050506040513d60608110156128a457600080fd5b601154158015612c645750601254155b8015612c705750601354155b15612c7a57612c9b565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612caf87612325565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ce19088612395565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d109087612395565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612d3f90866122cb565b6001600160a01b038916600090815260036020526040902055612d6181612f35565b612d6b8483612fbe565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612dd387612325565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e059087612395565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612e3b90846122cb565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612d3f90866122cb565b600080600080600080612e7c87612325565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612d109087612395565b600080600080600080612ec087612325565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ef29088612395565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e059087612395565b601454601155601554601255601654601355565b6000612f3f61225f565b90506000612f4d8383612afd565b30600090815260036020526040902054909150612f6a90826122cb565b3060009081526003602090815260408083209390935560079052205460ff1615612fb95730600090815260046020526040902054612fa890846122cb565b306000908152600460205260409020555b505050565b600c54612fcb9083612395565b600c55600d54612fdb90826122cb565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206f9aebca7cc9addc9fa5069709196f4fc0ac5600bd8f24a8c5fae85172716bbf64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80635880b8731161012e578063a9059cbb116100ab578063dd4670641161006f578063dd46706414610876578063dd62ed3e146108a0578063f2fde38b146108db578063f42938901461090e578063f815a8421461092357610246565b8063a9059cbb14610797578063af9549e0146107d0578063b6c523241461080b578063bcd6d44614610820578063c49b9a801461084a57610246565b80638da5cb5b116100f25780638da5cb5b146106f557806395d89b411461070a578063a24a8d0f1461071f578063a457c2d714610749578063a69df4b51461078257610246565b80635880b8731461061d57806370a0823114610647578063715018a61461067a5780637ded4d6a1461068f57806388f82020146106c257610246565b80633685d419116101bc57806349bd5a5e1161018057806349bd5a5e146105785780634a74bb021461058d57806351bc3c85146105a257806352390c02146105b75780635342acb4146105ea57610246565b80633685d4191461047d57806339509351146104b05780633bd5d173146104e95780634303443d146105135780634549b0391461054657610246565b80631bbae6e0116102035780631bbae6e01461038f5780631decaadc146103bb57806323b872dd146103e55780632d83811914610428578063313ce5671461045257610246565b806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225780631694505e1461034957806318160ddd1461037a57610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610938565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b0381351690602001356109ce565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506103376109ec565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e6109f2565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b50610337610a16565b34801561039b57600080fd5b506103b9600480360360208110156103b257600080fd5b5035610a1c565b005b3480156103c757600080fd5b506103b9600480360360208110156103de57600080fd5b5035610abc565b3480156103f157600080fd5b5061030e6004803603606081101561040857600080fd5b506001600160a01b03813581169160208101359091169060400135610b5c565b34801561043457600080fd5b506103376004803603602081101561044b57600080fd5b5035610be3565b34801561045e57600080fd5b50610467610c45565b6040805160ff9092168252519081900360200190f35b34801561048957600080fd5b506103b9600480360360208110156104a057600080fd5b50356001600160a01b0316610c4e565b3480156104bc57600080fd5b5061030e600480360360408110156104d357600080fd5b506001600160a01b038135169060200135610e0f565b3480156104f557600080fd5b506103b96004803603602081101561050c57600080fd5b5035610e5d565b34801561051f57600080fd5b506103b96004803603602081101561053657600080fd5b50356001600160a01b0316610f37565b34801561055257600080fd5b506103376004803603604081101561056957600080fd5b508035906020013515156110bf565b34801561058457600080fd5b5061035e611151565b34801561059957600080fd5b5061030e611175565b3480156105ae57600080fd5b506103b9611185565b3480156105c357600080fd5b506103b9600480360360208110156105da57600080fd5b50356001600160a01b03166111f6565b3480156105f657600080fd5b5061030e6004803603602081101561060d57600080fd5b50356001600160a01b03166113d8565b34801561062957600080fd5b506103b96004803603602081101561064057600080fd5b50356113f6565b34801561065357600080fd5b506103376004803603602081101561066a57600080fd5b50356001600160a01b03166114b6565b34801561068657600080fd5b506103b9611518565b34801561069b57600080fd5b506103b9600480360360208110156106b257600080fd5b50356001600160a01b03166115a8565b3480156106ce57600080fd5b5061030e600480360360208110156106e557600080fd5b50356001600160a01b0316611735565b34801561070157600080fd5b5061035e611753565b34801561071657600080fd5b50610260611762565b34801561072b57600080fd5b506103b96004803603602081101561074257600080fd5b50356117c3565b34801561075557600080fd5b5061030e6004803603604081101561076c57600080fd5b506001600160a01b038135169060200135611883565b34801561078e57600080fd5b506103b96118eb565b3480156107a357600080fd5b5061030e600480360360408110156107ba57600080fd5b506001600160a01b0381351690602001356119d9565b3480156107dc57600080fd5b506103b9600480360360408110156107f357600080fd5b506001600160a01b03813516906020013515156119ed565b34801561081757600080fd5b50610337611a70565b34801561082c57600080fd5b506103b96004803603602081101561084357600080fd5b5035611a76565b34801561085657600080fd5b506103b96004803603602081101561086d57600080fd5b50351515611b36565b34801561088257600080fd5b506103b96004803603602081101561089957600080fd5b5035611bac565b3480156108ac57600080fd5b50610337600480360360408110156108c357600080fd5b506001600160a01b0381358116916020013516611c4a565b3480156108e757600080fd5b506103b9600480360360208110156108fe57600080fd5b50356001600160a01b0316611c75565b34801561091a57600080fd5b506103b9611d5b565b34801561092f57600080fd5b50610337611dbd565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b5050505050905090565b60006109e26109db611dc1565b8484611dc5565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610a24611dc1565b6000546001600160a01b03908116911614610a74576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b633b9aca00811015610ab75760405162461bcd60e51b815260040180806020018281038252602c8152602001806130a0602c913960400191505060405180910390fd5b601855565b610ac4611dc1565b6000546001600160a01b03908116911614610b14576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b633b9aca00811015610b575760405162461bcd60e51b815260040180806020018281038252603e8152602001806131eb603e913960400191505060405180910390fd5b601955565b6000610b69848484611eb1565b610bd984610b75611dc1565b610bd4856040518060600160405280602881526020016130ed602891396001600160a01b038a16600090815260056020526040812090610bb3611dc1565b6001600160a01b0316815260208101919091526040016000205491906121c8565b611dc5565b5060019392505050565b6000600c54821115610c265760405162461bcd60e51b815260040180806020018281038252602a815260200180613006602a913960400191505060405180910390fd5b6000610c3061225f565b9050610c3c8382612282565b9150505b919050565b60105460ff1690565b610c56611dc1565b6000546001600160a01b03908116911614610ca6576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d13576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e0b57816001600160a01b031660088281548110610d3757fe5b6000918252602090912001546001600160a01b03161415610e0357600880546000198101908110610d6457fe5b600091825260209091200154600880546001600160a01b039092169183908110610d8a57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ddc57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e0b565b600101610d16565b5050565b60006109e2610e1c611dc1565b84610bd48560056000610e2d611dc1565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122cb565b6000610e67611dc1565b6001600160a01b03811660009081526007602052604090205490915060ff1615610ec25760405162461bcd60e51b815260040180806020018281038252602c81526020018061324b602c913960400191505060405180910390fd5b6000610ecd83612325565b505050506001600160a01b038416600090815260036020526040902054919250610ef991905082612395565b6001600160a01b038316600090815260036020526040902055600c54610f1f9082612395565b600c55600d54610f2f90846122cb565b600d55505050565b610f3f611dc1565b6000546001600160a01b03908116911614610f8f576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610feb5760405162461bcd60e51b815260040180806020018281038252602481526020018061317e6024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615611059576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b54831115611118576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161113757600061112884612325565b509395506109e6945050505050565b600061114284612325565b509295506109e6945050505050565b7f000000000000000000000000e3c7ed83438482c7b2c2df48842a5e34d710bfb181565b601754600160a81b900460ff1681565b61118d611dc1565b6000546001600160a01b039081169116146111dd576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60006111e8306114b6565b90506111f3816123d7565b50565b6111fe611dc1565b6000546001600160a01b0390811691161461124e576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156112aa5760405162461bcd60e51b81526004018080602001828103825260228152602001806132296022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611318576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611372576001600160a01b03811660009081526003602052604090205461135890610be3565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6113fe611dc1565b6000546001600160a01b0390811691161461144e576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60018110158015611460575060318111155b6114b1576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203439000000000000604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff16156114f657506001600160a01b038116600090815260046020526040902054610c40565b6001600160a01b0382166000908152600360205260409020546109e690610be3565b611520611dc1565b6000546001600160a01b03908116911614611570576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613135833981519152908390a3600080546001600160a01b0319169055565b6115b0611dc1565b6000546001600160a01b03908116911614611600576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1661166d576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610e0b57816001600160a01b0316600a828154811061169157fe5b6000918252602090912001546001600160a01b0316141561172d57600a805460001981019081106116be57fe5b600091825260209091200154600a80546001600160a01b0390921691839081106116e457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610ddc57fe5b600101611670565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c45780601f10610999576101008083540402835291602001916109c4565b6117cb611dc1565b6000546001600160a01b0390811691161461181b576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001811015801561182d575060318111155b61187e576040805162461bcd60e51b815260206004820152601e60248201527f636861726974794665652073686f756c6420626520696e2031202d2031310000604482015290519081900360640190fd5b601255565b60006109e2611890611dc1565b84610bd48560405180606001604052806025815260200161329a60259139600560006118ba611dc1565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906121c8565b6001546001600160a01b031633146119345760405162461bcd60e51b81526004018080602001828103825260238152602001806132776023913960400191505060405180910390fd5b600254421161198a576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061313583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109e26119e6611dc1565b8484611eb1565b6119f5611dc1565b6000546001600160a01b03908116911614611a45576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b611a7e611dc1565b6000546001600160a01b03908116911614611ace576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60018110158015611ae0575060318111155b611b31576040805162461bcd60e51b815260206004820181905260248201527f6c69717569646974794665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601355565b611b3e611dc1565b6000546001600160a01b03908116911614611b8e576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60178054911515600160a81b0260ff60a81b19909216919091179055565b611bb4611dc1565b6000546001600160a01b03908116911614611c04576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613135833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c7d611dc1565b6000546001600160a01b03908116911614611ccd576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b6001600160a01b038116611d125760405162461bcd60e51b81526004018080602001828103825260268152602001806130306026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061313583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d63611dc1565b6000546001600160a01b03908116911614611db3576040805162461bcd60e51b81526020600482018190526024820152600080516020613115833981519152604482015290519081900360640190fd5b476111f3816125e6565b4790565b3390565b6001600160a01b038316611e0a5760405162461bcd60e51b81526004018080602001828103825260248152602001806131c76024913960400191505060405180910390fd5b6001600160a01b038216611e4f5760405162461bcd60e51b81526004018080602001828103825260228152602001806130566022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ef65760405162461bcd60e51b81526004018080602001828103825260258152602001806131a26025913960400191505060405180910390fd5b6001600160a01b038216611f3b5760405162461bcd60e51b8152600401808060200182810382526023815260200180612fe36023913960400191505060405180910390fd5b60008111611f7a5760405162461bcd60e51b81526004018080602001828103825260298152602001806131556029913960400191505060405180910390fd5b6001600160a01b03821660009081526009602052604090205460ff1615611fe2576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615612041576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612049611753565b6001600160a01b0316836001600160a01b031614158015612083575061206d611753565b6001600160a01b0316826001600160a01b031614155b156120c9576018548111156120c95760405162461bcd60e51b81526004018080602001828103825260288152602001806130786028913960400191505060405180910390fd5b60006120d4306114b6565b905060185481106120e457506018545b6019546017549082101590600160a01b900460ff1615801561210f5750601754600160a81b900460ff165b80156121185750805b801561215657507f000000000000000000000000e3c7ed83438482c7b2c2df48842a5e34d710bfb16001600160a01b0316856001600160a01b031614155b1561216957601954915061216982612620565b6001600160a01b03851660009081526006602052604090205460019060ff16806121ab57506001600160a01b03851660009081526006602052604090205460ff165b156121b4575060005b6121c086868684612736565b505050505050565b600081848411156122575760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561221c578181015183820152602001612204565b50505050905090810190601f1680156122495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061226c6128aa565b909250905061227b8282612282565b9250505090565b60006122c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a0d565b9392505050565b6000828201838110156122c4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123568a6011546123516013546012546122cb90919063ffffffff16565b612a72565b925092509250600061236661225f565b905060008060006123788e8786612ac1565b919e509c509a509598509396509194505050505091939550919395565b60006122c483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121c8565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061240557fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561247e57600080fd5b505afa158015612492573d6000803e3d6000fd5b505050506040513d60208110156124a857600080fd5b50518151829060019081106124b957fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612504307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611dc5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156125a9578181015183820152602001612591565b505050509050019650505050505050600060405180830381600087803b1580156125d257600080fd5b505af11580156121c0573d6000803e3d6000fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610e0b573d6000803e3d6000fd5b6017805460ff60a01b1916600160a01b17905560135460125460009161265d91612649916122cb565b601254612657908590612afd565b90612282565b9050600061266b8383612395565b9050600061267a826002612282565b905060006126888383612395565b905047600061269784876122cb565b90506126a2816123d7565b60006126ae4784612395565b905060006126c0836126578489612afd565b90506126cc8582612b56565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a161271e6127198383612395565b6125e6565b50506017805460ff60a01b1916905550505050505050565b8061274357612743612c54565b6001600160a01b03841660009081526007602052604090205460ff16801561278457506001600160a01b03831660009081526007602052604090205460ff16155b1561279957612794848484612c9d565b612897565b6001600160a01b03841660009081526007602052604090205460ff161580156127da57506001600160a01b03831660009081526007602052604090205460ff165b156127ea57612794848484612dc1565b6001600160a01b03841660009081526007602052604090205460ff1615801561282c57506001600160a01b03831660009081526007602052604090205460ff16155b1561283c57612794848484612e6a565b6001600160a01b03841660009081526007602052604090205460ff16801561287c57506001600160a01b03831660009081526007602052604090205460ff165b1561288c57612794848484612eae565b612897848484612e6a565b806128a4576128a4612f21565b50505050565b600c54600b546000918291825b6008548110156129db578260036000600884815481106128d357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612938575081600460006008848154811061291157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561294f57600c54600b5494509450505050612a09565b61298f600360006008848154811061296357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612395565b92506129d160046000600884815481106129a557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612395565b91506001016128b7565b50600b54600c546129eb91612282565b821015612a0357600c54600b54935093505050612a09565b90925090505b9091565b60008183612a5c5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561221c578181015183820152602001612204565b506000838581612a6857fe5b0495945050505050565b6000808080612a8660646126578989612afd565b90506000612a9960646126578a89612afd565b90506000612ab187612aab8b86612395565b90612395565b9992985090965090945050505050565b6000808080612ad08786612afd565b90506000612ade8787612afd565b90506000612aec8383612395565b929992985090965090945050505050565b600082612b0c575060006109e6565b82820282848281612b1957fe5b04146122c45760405162461bcd60e51b81526004018080602001828103825260218152602001806130cc6021913960400191505060405180910390fd5b612b81307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611dc5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612bbe611753565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612c2957600080fd5b505af1158015612c3d573d6000803e3d6000fd5b50505050506040513d60608110156128a457600080fd5b601154158015612c645750601254155b8015612c705750601354155b15612c7a57612c9b565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612caf87612325565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ce19088612395565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612d109087612395565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612d3f90866122cb565b6001600160a01b038916600090815260036020526040902055612d6181612f35565b612d6b8483612fbe565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612dd387612325565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e059087612395565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612e3b90846122cb565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612d3f90866122cb565b600080600080600080612e7c87612325565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612d109087612395565b600080600080600080612ec087612325565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612ef29088612395565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e059087612395565b601454601155601554601255601654601355565b6000612f3f61225f565b90506000612f4d8383612afd565b30600090815260036020526040902054909150612f6a90826122cb565b3060009081526003602090815260408083209390935560079052205460ff1615612fb95730600090815260046020526040902054612fa890846122cb565b306000908152600460205260409020555b505050565b600c54612fcb9083612395565b600c55600d54612fdb90826122cb565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206f9aebca7cc9addc9fa5069709196f4fc0ac5600bd8f24a8c5fae85172716bbf64736f6c634300060c0033

Deployed Bytecode Sourcemap

24389:23574:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29412:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30324:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30324:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31590:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25673:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25673:51:0;;;;;;;;;;;;;;29689:95;;;;;;;;;;;;;:::i;47759:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47759:201:0;;:::i;:::-;;47442:309;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47442:309:0;;:::i;30493:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30493:313:0;;;;;;;;;;;;;;;;;:::i;32514:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32514:253:0;;:::i;29598:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33229:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33229:479:0;-1:-1:-1;;;;;33229:479:0;;:::i;30814:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30814:218:0;;;;;;;;:::i;31685:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31685:377:0;;:::i;33716:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33716:352:0;-1:-1:-1;;;;;33716:352:0;;:::i;32070:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32070:436:0;;;;;;;;;:::i;25731:38::-;;;;;;;;;;;;;:::i;25814:40::-;;;;;;;;;;;;;:::i;40147:156::-;;;;;;;;;;;;;:::i;32775:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32775:446:0;-1:-1:-1;;;;;32775:446:0;;:::i;35093:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35093:123:0;-1:-1:-1;;;;;35093:123:0;;:::i;46839:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46839:169:0;;:::i;29792:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29792:198:0;-1:-1:-1;;;;;29792:198:0;;:::i;15135:148::-;;;;;;;;;;;;;:::i;34076:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34076:500:0;-1:-1:-1;;;;;34076:500:0;;:::i;31317:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31317:120:0;-1:-1:-1;;;;;31317:120:0;;:::i;14501:79::-;;;;;;;;;;;;;:::i;29503:87::-;;;;;;;;;;;;;:::i;47016:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47016:197:0;;:::i;31040:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31040:269:0;;;;;;;;:::i;16138:293::-;;;;;;;;;;;;;:::i;29998:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29998:167:0;;;;;;;;:::i;31445:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31445:137:0;;;;;;;;;;:::i;15687:89::-;;;;;;;;;;;;;:::i;47221:211::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47221:211:0;;:::i;40476:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40476:148:0;;;;:::i;15852:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15852:214:0;;:::i;30173:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30173:143:0;;;;;;;;;;:::i;15435:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15435:244:0;-1:-1:-1;;;;;15435:244:0;;:::i;40311:157::-;;;;;;;;;;;;;:::i;46721:110::-;;;;;;;;;;;;;:::i;29412:83::-;29482:5;29475:12;;;;;;;;-1:-1:-1;;29475:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29449:13;;29475:12;;29482:5;;29475:12;;29482:5;29475:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29412:83;:::o;30324:161::-;30399:4;30416:39;30425:12;:10;:12::i;:::-;30439:7;30448:6;30416:8;:39::i;:::-;-1:-1:-1;30473:4:0;30324:161;;;;;:::o;31590:87::-;31659:10;;31590:87;:::o;25673:51::-;;;:::o;29689:95::-;29769:7;;29689:95;:::o;47759:201::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;47860:5:::1;47845:11;:20;;47837:78;;;;-1:-1:-1::0;;;47837:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47926:12;:26:::0;47759:201::o;47442:309::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;47597:5:::1;47564:29;:38;;47556:114;;;;-1:-1:-1::0;;;47556:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47681:30;:62:::0;47442:309::o;30493:313::-;30591:4;30608:36;30618:6;30626:9;30637:6;30608:9;:36::i;:::-;30655:121;30664:6;30672:12;:10;:12::i;:::-;30686:89;30724:6;30686:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30686:19:0;;;;;;:11;:19;;;;;;30706:12;:10;:12::i;:::-;-1:-1:-1;;;;;30686:33:0;;;;;;;;;;;;-1:-1:-1;30686:33:0;;;:89;:37;:89::i;:::-;30655:8;:121::i;:::-;-1:-1:-1;30794:4:0;30493:313;;;;;:::o;32514:253::-;32580:7;32619;;32608;:18;;32600:73;;;;-1:-1:-1;;;32600:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32684:19;32707:10;:8;:10::i;:::-;32684:33;-1:-1:-1;32735:24:0;:7;32684:33;32735:11;:24::i;:::-;32728:31;;;32514:253;;;;:::o;29598:83::-;29664:9;;;;29598:83;:::o;33229:479::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33311:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33303:60;;;::::0;;-1:-1:-1;;;33303:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33379:9;33374:327;33398:9;:16:::0;33394:20;::::1;33374:327;;;33456:7;-1:-1:-1::0;;;;;33440:23:0::1;:9;33450:1;33440:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33440:12:0::1;:23;33436:254;;;33499:9;33509:16:::0;;-1:-1:-1;;33509:20:0;;;33499:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33484:9:::1;:12:::0;;-1:-1:-1;;;;;33499:31:0;;::::1;::::0;33494:1;;33484:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33484:46:0::1;-1:-1:-1::0;;;;;33484:46:0;;::::1;;::::0;;33549:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33588:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33588:28:0::1;::::0;;33635:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33635:15:0;;;;;-1:-1:-1;;;;;;33635:15:0::1;::::0;;;;;33669:5:::1;;33436:254;33416:3;;33374:327;;;;33229:479:::0;:::o;30814:218::-;30902:4;30919:83;30928:12;:10;:12::i;:::-;30942:7;30951:50;30990:10;30951:11;:25;30963:12;:10;:12::i;:::-;-1:-1:-1;;;;;30951:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30951:25:0;;;:34;;;;;;;;;;;:38;:50::i;31685:377::-;31737:14;31754:12;:10;:12::i;:::-;-1:-1:-1;;;;;31786:19:0;;;;;;:11;:19;;;;;;31737:29;;-1:-1:-1;31786:19:0;;31785:20;31777:77;;;;-1:-1:-1;;;31777:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31866:15;31890:19;31901:7;31890:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31938:15:0;;;;;;:7;:15;;;;;;31865:44;;-1:-1:-1;31938:28:0;;:15;-1:-1:-1;31865:44:0;31938:19;:28::i;:::-;-1:-1:-1;;;;;31920:15:0;;;;;;:7;:15;;;;;:46;31987:7;;:20;;31999:7;31987:11;:20::i;:::-;31977:7;:30;32031:10;;:23;;32046:7;32031:14;:23::i;:::-;32018:10;:36;-1:-1:-1;;;31685:377:0:o;33716:352::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;33811:42:::1;-1:-1:-1::0;;;;;33800:53:0;::::1;;;33792:102;;;;-1:-1:-1::0;;;33792:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33914:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;33913:27;33905:70;;;::::0;;-1:-1:-1;;;33905:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33986:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;33986:33:0::1;34015:4;33986:33:::0;;::::1;::::0;;;34030:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34030:30:0::1;::::0;;::::1;::::0;;33716:352::o;32070:436::-;32160:7;32199;;32188;:18;;32180:62;;;;;-1:-1:-1;;;32180:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32258:17;32253:246;;32293:15;32317:19;32328:7;32317:10;:19::i;:::-;-1:-1:-1;32292:44:0;;-1:-1:-1;32351:14:0;;-1:-1:-1;;;;;32351:14:0;32253:246;32400:23;32431:19;32442:7;32431:10;:19::i;:::-;-1:-1:-1;32398:52:0;;-1:-1:-1;32465:22:0;;-1:-1:-1;;;;;32465:22:0;25731:38;;;:::o;25814:40::-;;;-1:-1:-1;;;25814:40:0;;;;;:::o;40147:156::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;40201:23:::1;40227:24;40245:4;40227:9;:24::i;:::-;40201:50;;40262:33;40279:15;40262:16;:33::i;:::-;14781:1;40147:156::o:0;32775:446::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;32870:42:::1;-1:-1:-1::0;;;;;32859:53:0;::::1;;;32851:100;;;;-1:-1:-1::0;;;32851:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32971:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32970:21;32962:61;;;::::0;;-1:-1:-1;;;32962:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33037:16:0;::::1;33056:1;33037:16:::0;;;:7:::1;:16;::::0;;;;;:20;33034:108:::1;;-1:-1:-1::0;;;;;33113:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33093:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33074:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33034:108:::1;-1:-1:-1::0;;;;;33152:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33152:27:0::1;33175:4;33152:27:::0;;::::1;::::0;;;33190:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33190:23:0::1;::::0;;::::1;::::0;;32775:446::o;35093:123::-;-1:-1:-1;;;;;35181:27:0;35157:4;35181:27;;;:18;:27;;;;;;;;;35093:123::o;46839:169::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;46925:1:::1;46915:6;:11;;:27;;;;;46940:2;46930:6;:12;;46915:27;46907:66;;;::::0;;-1:-1:-1;;;46907:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;46984:7;:16:::0;46839:169::o;29792:198::-;-1:-1:-1;;;;;29882:20:0;;29858:7;29882:20;;;:11;:20;;;;;;;;29878:49;;;-1:-1:-1;;;;;;29911:16:0;;;;;;:7;:16;;;;;;29904:23;;29878:49;-1:-1:-1;;;;;29965:16:0;;;;;;:7;:16;;;;;;29945:37;;:19;:37::i;15135:148::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;15242:1:::1;15226:6:::0;;15205:40:::1;::::0;-1:-1:-1;;;;;15226:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;15205:40:0;15242:1;;15205:40:::1;15273:1;15256:19:::0;;-1:-1:-1;;;;;;15256:19:0::1;::::0;;15135:148::o;34076:500::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34165:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;34157:65;;;::::0;;-1:-1:-1;;;34157:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;34238:9;34233:336;34257:16;:23:::0;34253:27;::::1;34233:336;;;34329:7;-1:-1:-1::0;;;;;34306:30:0::1;:16;34323:1;34306:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34306:19:0::1;:30;34302:256;;;34379:16;34396:23:::0;;-1:-1:-1;;34396:27:0;;;34379:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34357:16:::1;:19:::0;;-1:-1:-1;;;;;34379:45:0;;::::1;::::0;34374:1;;34357:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;34357:67:0::1;-1:-1:-1::0;;;;;34357:67:0;;::::1;;::::0;;34443:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;34443:34:0::1;::::0;;34496:16:::1;:22:::0;;;::::1;;;34302:256;34282:3;;34233:336;;31317:120:::0;-1:-1:-1;;;;;31409:20:0;31385:4;31409:20;;;:11;:20;;;;;;;;;31317:120::o;14501:79::-;14539:7;14566:6;-1:-1:-1;;;;;14566:6:0;14501:79;:::o;29503:87::-;29575:7;29568:14;;;;;;;;-1:-1:-1;;29568:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29542:13;;29568:14;;29575:7;;29568:14;;29575:7;29568:14;;;;;;;;;;;;;;;;;;;;;;;;47016:197;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;47114:1:::1;47100:10;:15;;:35;;;;;47133:2;47119:10;:16;;47100:35;47092:78;;;::::0;;-1:-1:-1;;;47092:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47181:11;:24:::0;47016:197::o;31040:269::-;31133:4;31150:129;31159:12;:10;:12::i;:::-;31173:7;31182:96;31221:15;31182:96;;;;;;;;;;;;;;;;;:11;:25;31194:12;:10;:12::i;:::-;-1:-1:-1;;;;;31182:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31182:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16138:293::-;16190:14;;-1:-1:-1;;;;;16190:14:0;16208:10;16190:28;16182:76;;;;-1:-1:-1;;;16182:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16283:9;;16277:3;:15;16269:60;;;;;-1:-1:-1;;;16269:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16374:14;;;16366:6;;16345:44;;-1:-1:-1;;;;;16374:14:0;;;;16366:6;;;;-1:-1:-1;;;;;;;;;;;16345:44:0;;16409:14;;;16400:23;;-1:-1:-1;;;;;;16400:23:0;-1:-1:-1;;;;;16409:14:0;;;16400:23;;;;;;16138:293::o;29998:167::-;30076:4;30093:42;30103:12;:10;:12::i;:::-;30117:9;30128:6;30093:9;:42::i;31445:137::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31536:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;31536:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31445:137::o;15687:89::-;15759:9;;15687:89;:::o;47221:211::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;47325:1:::1;47309:12;:17;;:39;;;;;47346:2;47330:12;:18;;47309:39;47301:84;;;::::0;;-1:-1:-1;;;47301:84:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47396:13;:28:::0;47221:211::o;40476:148::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;40570:21:::1;:46:::0;;;::::1;;-1:-1:-1::0;;;40570:46:0::1;-1:-1:-1::0;;;;40570:46:0;;::::1;::::0;;;::::1;::::0;;40476:148::o;15852:214::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;15933:6:::1;::::0;;;15916:23;;-1:-1:-1;;;;;;15916:23:0;;::::1;-1:-1:-1::0;;;;;15933:6:0;::::1;15916:23;::::0;;;15950:19:::1;::::0;;15992:3:::1;:10:::0;::::1;15980:9;:22:::0;16018:40:::1;::::0;15933:6;;-1:-1:-1;;;;;;;;;;;16018:40:0;15933:6;;16018:40:::1;15852:214:::0;:::o;30173:143::-;-1:-1:-1;;;;;30281:18:0;;;30254:7;30281:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30173:143::o;15435:244::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15524:22:0;::::1;15516:73;;;;-1:-1:-1::0;;;15516:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15626:6;::::0;;15605:38:::1;::::0;-1:-1:-1;;;;;15605:38:0;;::::1;::::0;15626:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;15605:38:0;::::1;15654:6;:17:::0;;-1:-1:-1;;;;;;15654:17:0::1;-1:-1:-1::0;;;;;15654:17:0;;;::::1;::::0;;;::::1;::::0;;15435:244::o;40311:157::-;14721:12;:10;:12::i;:::-;14711:6;;-1:-1:-1;;;;;14711:6:0;;;:22;;;14703:67;;;;;-1:-1:-1;;;14703:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14703:67:0;;;;;;;;;;;;;;;40392:21:::1;40424:36;40392:21:::0;40424:16:::1;:36::i;46721:110::-:0;46802:21;46721:110;:::o;322:106::-;410:10;322:106;:::o;35224:337::-;-1:-1:-1;;;;;35317:19:0;;35309:68;;;;-1:-1:-1;;;35309:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35396:21:0;;35388:68;;;;-1:-1:-1;;;35388:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35469:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35521:32;;;;;;;;;;;;;;;;;35224:337;;;:::o;35569:1878::-;-1:-1:-1;;;;;35666:20:0;;35658:70;;;;-1:-1:-1;;;35658:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35747:23:0;;35739:71;;;;-1:-1:-1;;;35739:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35838:1;35829:6;:10;35821:64;;;;-1:-1:-1;;;35821:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35905:28:0;;;;;;:17;:28;;;;;;;;35904:29;35896:65;;;;;-1:-1:-1;;;35896:65:0;;;;;;;;;;;;-1:-1:-1;;;35896:65:0;;;;;;;;;;;;;;;35999:10;35981:29;;;;:17;:29;;;;;;;;35980:30;35972:66;;;;;-1:-1:-1;;;35972:66:0;;;;;;;;;;;;-1:-1:-1;;;35972:66:0;;;;;;;;;;;;;;;36064:7;:5;:7::i;:::-;-1:-1:-1;;;;;36054:17:0;:6;-1:-1:-1;;;;;36054:17:0;;;:41;;;;;36088:7;:5;:7::i;:::-;-1:-1:-1;;;;;36075:20:0;:9;-1:-1:-1;;;;;36075:20:0;;;36054:41;36051:134;;;36128:12;;36118:6;:22;;36110:75;;;;-1:-1:-1;;;36110:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36480:28;36511:24;36529:4;36511:9;:24::i;:::-;36480:55;;36575:12;;36551:20;:36;36548:112;;-1:-1:-1;36636:12:0;;36548:112;36723:30;;36769:16;;36699:54;;;;;-1:-1:-1;;;36769:16:0;;;;36768:17;:42;;;;-1:-1:-1;36789:21:0;;-1:-1:-1;;;36789:21:0;;;;36768:42;:65;;;;;36814:19;36768:65;:92;;;;;36847:13;-1:-1:-1;;;;;36837:23:0;:6;-1:-1:-1;;;;;36837:23:0;;;36768:92;36764:258;;;36900:30;;36877:53;;36974:36;36989:20;36974:14;:36::i;:::-;-1:-1:-1;;;;;37214:26:0;;37095:12;37214:26;;;:18;:26;;;;;;37110:4;;37214:26;;;:59;;-1:-1:-1;;;;;;37244:29:0;;;;;;:18;:29;;;;;;;;37214:59;37211:105;;;-1:-1:-1;37299:5:0;37211:105;37389:50;37404:6;37412:9;37423:6;37431:7;37389:14;:50::i;:::-;35569:1878;;;;;;:::o;4409:192::-;4495:7;4531:12;4523:6;;;;4515:29;;;;-1:-1:-1;;;4515:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4567:5:0;;;4409:192::o;45791:163::-;45832:7;45853:15;45870;45889:19;:17;:19::i;:::-;45852:56;;-1:-1:-1;45852:56:0;-1:-1:-1;45926:20:0;45852:56;;45926:11;:20::i;:::-;45919:27;;;;45791:163;:::o;5787:132::-;5845:7;5872:39;5876:1;5879;5872:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5865:46;5787:132;-1:-1:-1;;;5787:132:0:o;3524:181::-;3582:7;3614:5;;;3638:6;;;;3630:46;;;;;-1:-1:-1;;;3630:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;44502:512;44561:7;44570;44579;44588;44597;44606;44627:23;44652:12;44666:28;44698:61;44710:7;44719;;44728:30;44744:13;;44728:11;;:15;;:30;;;;:::i;:::-;44698:11;:61::i;:::-;44626:133;;;;;;44770:19;44792:10;:8;:10::i;:::-;44770:32;;44814:15;44831:23;44856:12;44872:39;44884:7;44893:4;44899:11;44872;:39::i;:::-;44813:98;;-1:-1:-1;44813:98:0;-1:-1:-1;44813:98:0;-1:-1:-1;44962:15:0;;-1:-1:-1;44979:4:0;;-1:-1:-1;44985:20:0;;-1:-1:-1;;;;;44502:512:0;;;;;;;:::o;3979:136::-;4037:7;4064:43;4068:1;4071;4064:43;;;;;;;;;;;;;;;;;:3;:43::i;38772:589::-;38922:16;;;38936:1;38922:16;;;38898:21;38922:16;;;;;38898:21;38922:16;;;;;;;;;;-1:-1:-1;38922:16:0;38898:40;;38967:4;38949;38954:1;38949:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;38949:23:0;;;-1:-1:-1;;;;;38949:23:0;;;;;38993:15;-1:-1:-1;;;;;38993:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38993:22:0;38983:7;;:4;;38988:1;;38983:7;;;;;;;;;;;:32;-1:-1:-1;;;;;38983:32:0;;;-1:-1:-1;;;;;38983:32:0;;;;;39028:62;39045:4;39060:15;39078:11;39028:8;:62::i;:::-;39129:15;-1:-1:-1;;;;;39129:66:0;;39210:11;39236:1;39280:4;39307;39327:15;39129:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39129:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39890:107;39951:21;;:38;;-1:-1:-1;;;;;39951:21:0;;;;:38;;;;;39982:6;;39951:21;:38;:21;:38;39982:6;39951:21;:38;;;;;;;;;;;;;;;;;;;37455:1309;26274:16;:23;;-1:-1:-1;;;;26274:23:0;-1:-1:-1;;;26274:23:0;;;37618:13:::1;::::0;37602:11:::1;::::0;26274:23;;37560:73:::1;::::0;37602:30:::1;::::0;:15:::1;:30::i;:::-;37585:11;::::0;37560:37:::1;::::0;:20;;:24:::1;:37::i;:::-;:41:::0;::::1;:73::i;:::-;37540:93:::0;-1:-1:-1;37644:17:0::1;37664:35;:20:::0;37540:93;37664:24:::1;:35::i;:::-;37644:55:::0;-1:-1:-1;37763:12:0::1;37778:16;37644:55:::0;37792:1:::1;37778:13;:16::i;:::-;37763:31:::0;-1:-1:-1;37805:17:0::1;37825:19;:9:::0;37763:31;37825:13:::1;:19::i;:::-;37805:39:::0;-1:-1:-1;38147:21:0::1;38122:22;38236:19;:4:::0;38245:9;38236:8:::1;:19::i;:::-;38213:42;;38266:30;38283:12;38266:16;:30::i;:::-;38427:16;38446:41;:21;38472:14:::0;38446:25:::1;:41::i;:::-;38427:60:::0;-1:-1:-1;38498:18:0::1;38519:36;38542:12:::0;38519:18:::1;38427:60:::0;38532:4;38519:12:::1;:18::i;:36::-;38498:57;;38605:35;38618:9;38629:10;38605:12;:35::i;:::-;38658:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;38714:42;38731:24;:8:::0;38744:10;38731:12:::1;:24::i;:::-;38714:16;:42::i;:::-;-1:-1:-1::0;;26320:16:0;:24;;-1:-1:-1;;;;26320:24:0;;;-1:-1:-1;;;;;;;37455:1309:0:o;40632:819::-;40744:7;40740:40;;40766:14;:12;:14::i;:::-;-1:-1:-1;;;;;40797:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;40821:22:0;;;;;;:11;:22;;;;;;;;40820:23;40797:46;40793:597;;;40860:48;40882:6;40890:9;40901:6;40860:21;:48::i;:::-;40793:597;;;-1:-1:-1;;;;;40931:19:0;;;;;;:11;:19;;;;;;;;40930:20;:46;;;;-1:-1:-1;;;;;;40954:22:0;;;;;;:11;:22;;;;;;;;40930:46;40926:464;;;40993:46;41013:6;41021:9;41032:6;40993:19;:46::i;40926:464::-;-1:-1:-1;;;;;41062:19:0;;;;;;:11;:19;;;;;;;;41061:20;:47;;;;-1:-1:-1;;;;;;41086:22:0;;;;;;:11;:22;;;;;;;;41085:23;41061:47;41057:333;;;41125:44;41143:6;41151:9;41162:6;41125:17;:44::i;41057:333::-;-1:-1:-1;;;;;41191:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41214:22:0;;;;;;:11;:22;;;;;;;;41191:45;41187:203;;;41253:48;41275:6;41283:9;41294:6;41253:21;:48::i;41187:203::-;41334:44;41352:6;41360:9;41371:6;41334:17;:44::i;:::-;41406:7;41402:41;;41428:15;:13;:15::i;:::-;40632:819;;;;:::o;45962:555::-;46059:7;;46095;;46012;;;;;46113:289;46137:9;:16;46133:20;;46113:289;;;46203:7;46179;:21;46187:9;46197:1;46187:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46187:12:0;46179:21;;;;;;;;;;;;;:31;;:66;;;46238:7;46214;:21;46222:9;46232:1;46222:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46222:12:0;46214:21;;;;;;;;;;;;;:31;46179:66;46175:97;;;46255:7;;46264;;46247:25;;;;;;;;;46175:97;46297:34;46309:7;:21;46317:9;46327:1;46317:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46317:12:0;46309:21;;;;;;;;;;;;;46297:7;;:11;:34::i;:::-;46287:44;;46356:34;46368:7;:21;46376:9;46386:1;46376:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46376:12:0;46368:21;;;;;;;;;;;;;46356:7;;:11;:34::i;:::-;46346:44;-1:-1:-1;46155:3:0;;46113:289;;;-1:-1:-1;46438:7:0;;46426;;:20;;:11;:20::i;:::-;46416:7;:30;46412:61;;;46456:7;;46465;;46448:25;;;;;;;;46412:61;46492:7;;-1:-1:-1;46501:7:0;-1:-1:-1;45962:555:0;;;:::o;6404:278::-;6490:7;6525:12;6518:5;6510:28;;;;-1:-1:-1;;;6510:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6549:9;6565:1;6561;:5;;;;;;;6404:278;-1:-1:-1;;;;;6404:278:0:o;45022:419::-;45127:7;;;;45180:28;45204:3;45180:19;:7;45192:6;45180:11;:19::i;:28::-;45165:43;-1:-1:-1;45219:28:0;45250:41;45287:3;45250:32;:7;45262:19;45250:11;:32::i;:41::-;45219:72;-1:-1:-1;45302:23:0;45328:42;45350:19;45328:17;:7;45340:4;45328:11;:17::i;:::-;:21;;:42::i;:::-;45302:68;45406:4;;-1:-1:-1;45412:20:0;;-1:-1:-1;45022:419:0;;-1:-1:-1;;;;;45022:419:0:o;45449:334::-;45544:7;;;;45600:24;:7;45612:11;45600;:24::i;:::-;45582:42;-1:-1:-1;45635:12:0;45650:21;:4;45659:11;45650:8;:21::i;:::-;45635:36;-1:-1:-1;45682:23:0;45708:17;:7;45635:36;45708:11;:17::i;:::-;45744:7;;;;-1:-1:-1;45770:4:0;;-1:-1:-1;45449:334:0;;-1:-1:-1;;;;;45449:334:0:o;4851:471::-;4909:7;5154:6;5150:47;;-1:-1:-1;5184:1:0;5177:8;;5150:47;5221:5;;;5225:1;5221;:5;:1;5245:5;;;;;:10;5237:56;;;;-1:-1:-1;;;5237:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39369:513;39517:62;39534:4;39549:15;39567:11;39517:8;:62::i;:::-;39622:15;-1:-1:-1;;;;;39622:31:0;;39661:9;39694:4;39714:11;39740:1;39783;39826:7;:5;:7::i;:::-;39848:15;39622:252;;;;;;;;;;;;;-1:-1:-1;;;;;39622:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39622:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34584:324;34630:7;;:12;:32;;;;-1:-1:-1;34646:11:0;;:16;34630:32;:54;;;;-1:-1:-1;34666:13:0;;:18;34630:54;34627:66;;;34686:7;;34627:66;34723:7;;;34705:15;:25;34763:11;;;34741:19;:33;34809:13;;;34785:21;:37;-1:-1:-1;34835:11:0;;;;34857:15;;;;34883:17;34584:324;:::o;42594:584::-;42697:15;42714:23;42739:12;42753:23;42778:12;42792:25;42821:19;42832:7;42821:10;:19::i;:::-;-1:-1:-1;;;;;42869:15:0;;;;;;:7;:15;;;;;;42696:144;;-1:-1:-1;42696:144:0;;-1:-1:-1;42696:144:0;;-1:-1:-1;42696:144:0;-1:-1:-1;42696:144:0;-1:-1:-1;42696:144:0;-1:-1:-1;42869:28:0;;42889:7;42869:19;:28::i;:::-;-1:-1:-1;;;;;42851:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42926:7;:15;;;;:28;;42946:7;42926:19;:28::i;:::-;-1:-1:-1;;;;;42908:15:0;;;;;;;:7;:15;;;;;;:46;;;;42986:18;;;;;;;:39;;43009:15;42986:22;:39::i;:::-;-1:-1:-1;;;;;42965:18:0;;;;;;:7;:18;;;;;:60;43036:40;43058:17;43036:21;:40::i;:::-;43087:23;43099:4;43105;43087:11;:23::i;:::-;43143:9;-1:-1:-1;;;;;43126:44:0;43135:6;-1:-1:-1;;;;;43126:44:0;;43154:15;43126:44;;;;;;;;;;;;;;;;;;42594:584;;;;;;;;;:::o;41990:596::-;42091:15;42108:23;42133:12;42147:23;42172:12;42186:25;42215:19;42226:7;42215:10;:19::i;:::-;-1:-1:-1;;;;;42263:15:0;;;;;;:7;:15;;;;;;42090:144;;-1:-1:-1;42090:144:0;;-1:-1:-1;42090:144:0;;-1:-1:-1;42090:144:0;-1:-1:-1;42090:144:0;-1:-1:-1;42090:144:0;-1:-1:-1;42263:28:0;;42090:144;42263:19;:28::i;:::-;-1:-1:-1;;;;;42245:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;42323:18;;;;;:7;:18;;;;;:39;;42346:15;42323:22;:39::i;:::-;-1:-1:-1;;;;;42302:18:0;;;;;;:7;:18;;;;;;;;:60;;;;42394:7;:18;;;;:39;;42417:15;42394:22;:39::i;41459:523::-;41558:15;41575:23;41600:12;41614:23;41639:12;41653:25;41682:19;41693:7;41682:10;:19::i;:::-;-1:-1:-1;;;;;41730:15:0;;;;;;:7;:15;;;;;;41557:144;;-1:-1:-1;41557:144:0;;-1:-1:-1;41557:144:0;;-1:-1:-1;41557:144:0;-1:-1:-1;41557:144:0;-1:-1:-1;41557:144:0;-1:-1:-1;41730:28:0;;41557:144;41730:19;:28::i;43186:655::-;43289:15;43306:23;43331:12;43345:23;43370:12;43384:25;43413:19;43424:7;43413:10;:19::i;:::-;-1:-1:-1;;;;;43461:15:0;;;;;;:7;:15;;;;;;43288:144;;-1:-1:-1;43288:144:0;;-1:-1:-1;43288:144:0;;-1:-1:-1;43288:144:0;-1:-1:-1;43288:144:0;-1:-1:-1;43288:144:0;-1:-1:-1;43461:28:0;;43481:7;43461:19;:28::i;:::-;-1:-1:-1;;;;;43443:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43518:7;:15;;;;:28;;43538:7;43518:19;:28::i;34916:169::-;34970:15;;34960:7;:25;35010:19;;34996:11;:33;35056:21;;35040:13;:37;34916:169::o;43849:396::-;43926:19;43948:10;:8;:10::i;:::-;43926:32;-1:-1:-1;43969:25:0;43997:34;:17;43926:32;43997:21;:34::i;:::-;44083:4;44067:22;;;;:7;:22;;;;;;43969:62;;-1:-1:-1;44067:45:0;;43969:62;44067:26;:45::i;:::-;44058:4;44042:22;;;;:7;:22;;;;;;;;:70;;;;44126:11;:26;;;;;;44123:114;;;44208:4;44192:22;;;;:7;:22;;;;;;:45;;44219:17;44192:26;:45::i;:::-;44183:4;44167:22;;;;:7;:22;;;;;:70;44123:114;43849:396;;;:::o;44253:147::-;44331:7;;:17;;44343:4;44331:11;:17::i;:::-;44321:7;:27;44372:10;;:20;;44387:4;44372:14;:20::i;:::-;44359:10;:33;-1:-1:-1;;44253:147:0:o

Swarm Source

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