ETH Price: $3,388.24 (-1.55%)
Gas: 2 Gwei

Token

KIZO ($KIZO)
 

Overview

Max Total Supply

1,000,000 $KIZO

Holders

681

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
65 $KIZO

Value
$0.00
0x05d7e7b644948deff6b4a26bc7c997c6f739a94a
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:
KIZO

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

//SPDX-License-Identifier: MIT
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;
    }
}


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

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router {
    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 KIZO is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    // maps and constants
    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 _isExcludedFromMaxTx;
    mapping (address => uint256) private _sellPenaltyDeadline;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    // token variables
    string private _name = "KIZO";
    string private _symbol = "$KIZO";
    uint8 private _decimals = 9;

    // buy fees    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _devFee = 0;
    uint256 private _devTax = 0;
    uint256 private _marketingTax = 0;
    uint256 private _platformTax = 0;
    uint256 private _previousDevFee = _devFee;
    
    uint256 public _liquidityFee = 0;
    uint256 private _previousLiquidityFee = _liquidityFee;

    // sell fees
    uint256 public _sellTaxFee = 0;
    uint256 private _previousSellTaxFee = _sellTaxFee;

    uint256 public _sellDevFee = 800;
    uint256 private _sellDevTax = 500;
    uint256 private _sellMarketingTax = 150;
    uint256 private _sellPlatformTax = 150;
    uint256 private _previousSellDevFee = _sellDevFee;
    
    uint256 public _sellLiquidityFee = 200;
    uint256 private _previousSellLiquidityFee = _sellLiquidityFee;

    uint256 public launchSellFee = 0;
    uint256 private _previousLaunchSellFee = launchSellFee;

    uint256 public firstSellPenaltyFee = 2000;
    uint256 private _firstSellLiquidityTax = 1500;
    uint256 private _firstSellDevTax = 500;
    uint256 private _previousFirstSellPenaltyFee = firstSellPenaltyFee;


    // limits and wallets
    uint256 public maxTxAmount = _tTotal.mul(50).div(1000); // 5%
    address payable private _devWallet = payable(0x3a3cb7def0Fb88625Ed60f505974b1a84d95bab9);
    address payable private _marketingWallet = payable(0x1163153132B9a6E211A5FDd3ceb19bb4dA1C3A1d);
    address payable private _platformWallet = payable(0xA61e691Ef6d4014e8397e7b35128e24065750d48);

    uint256 public launchSellFeeDeadline = 0;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    // auto liquify
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 private minTokensBeforeSwap = 1000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 liquidityEthBalance,
        uint256 devEthBalance
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
         _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // 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;

        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;

        // launch sell fee
        launchSellFeeDeadline = now + 1 days;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function setRouterAddress(address newRouter) public onlyOwner() {
        IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()).createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
    }

    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 getSellPenaltyDeadlineForWallet(address wallet) public view returns (uint256) {
        return _sellPenaltyDeadline[wallet];
    }

    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) public onlyOwner() {
        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 _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0));
        require(spender != address(0));

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    function expectedRewards(address _sender) external view returns(uint256){
        uint256 _balance = address(this).balance;
        address sender = _sender;
        uint256 holdersBal = balanceOf(sender);
        uint totalExcludedBal;
        for (uint256 i = 0; i < _excluded.length; i++){
            totalExcludedBal = balanceOf(_excluded[i]).add(totalExcludedBal);   
        }
        uint256 rewards = holdersBal.mul(_balance).div(_tTotal.sub(balanceOf(uniswapV2Pair)).sub(totalExcludedBal));
        return rewards;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );
        }

        // update fees for buy/sell
        uint256 regularDevFee = _devFee;
        uint256 regularDevTax = _devTax;
        uint256 regularMarketingTax = _marketingTax;
        uint256 regularPlatformTax = _platformTax;
        uint256 regularLiquidityFee = _liquidityFee;
        uint256 regularTaxFee = _taxFee;
        bool isSell = to == uniswapV2Pair;
        if (isSell) {
            _devFee = _sellDevFee;
            _devTax = _sellDevTax;
            _marketingTax = _sellMarketingTax;
            _platformTax = _sellPlatformTax;

            _liquidityFee = _sellLiquidityFee;
            _taxFee = _sellTaxFee;

            if (launchSellFeeDeadline >= now) {
                _devFee = _devFee.add(launchSellFee);
                _devTax = _devTax.add(launchSellFee);
            }

            if (_sellPenaltyDeadline[from] >= now && _sellPenaltyDeadline[from] != 1) {
                _liquidityFee = _liquidityFee.add(_firstSellLiquidityTax);
                _devFee = _devFee.add(_firstSellDevTax);
                _devTax = _devTax.add(_firstSellDevTax);

                _sellPenaltyDeadline[from] = 1; // disable
            }
        } else if (_sellPenaltyDeadline[to] == 0) {
            _sellPenaltyDeadline[to] = now + 24 hours;
        }

        // 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));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            // add liquidity
            uint256 tokensToSell = maxTxAmount > contractTokenBalance ? contractTokenBalance : maxTxAmount;
            swapAndLiquify(tokensToSell);
        }
        
        // indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        // transfer amount, it will take tax, dev fee, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);

        // restore fees
        _devFee = regularDevFee;
        _devTax = regularDevTax;
        _marketingTax = regularMarketingTax;
        _platformTax = regularPlatformTax;
        _liquidityFee = regularLiquidityFee;
        _taxFee = regularTaxFee;
    }
    
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // balance token fees based on variable percents
        uint256 totalRedirectTokenFee = _devFee.add(_liquidityFee);

        if (totalRedirectTokenFee == 0) return;
        uint256 liquidityTokenBalance = contractTokenBalance.mul(_liquidityFee).div(totalRedirectTokenFee);
        uint256 devTokenBalance = contractTokenBalance.mul(_devFee).div(totalRedirectTokenFee);
        
        // split the liquidity balance into halves
        uint256 halfLiquidity = liquidityTokenBalance.div(2);
        
        // 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 fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        
        if (liquidityTokenBalance == 0 && devTokenBalance == 0) return;
        
        // swap tokens for ETH
        swapTokensForEth(devTokenBalance.add(halfLiquidity));
        
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        if(newBalance > 0) {
            // rebalance ETH fees proportionally to half the liquidity
            uint256 totalRedirectEthFee = _devFee.add(_liquidityFee.div(2));
            uint256 liquidityEthBalance = newBalance.mul(_liquidityFee.div(2)).div(totalRedirectEthFee);
            uint256 devEthBalance = newBalance.mul(_devFee).div(totalRedirectEthFee);

            //
            // for liquidity
            // add to uniswap
            //
    
            addLiquidity(halfLiquidity, liquidityEthBalance);
            
            //
            // for dev fee
            // send to the dev address
            //
            
            sendEthToDevAddress(devEthBalance);
            
            emit SwapAndLiquify(contractTokenBalance, liquidityEthBalance, devEthBalance);
        }
    } 
    
    function sendEthToDevAddress(uint256 amount) private {
        if (amount > 0 && _devFee > 0) {
            uint256 ethToDev = amount.mul(_devTax).div(_devFee);
            uint256 ethToMarketing = amount.mul(_marketingTax).div(_devFee);
            uint256 ethToPlatform = amount.mul(_platformTax).div(_devFee);
            if (ethToDev > 0) _devWallet.transfer(ethToDev);
            if (ethToMarketing > 0) _marketingWallet.transfer(ethToMarketing);
            if (ethToPlatform > 0) _platformWallet.transfer(ethToPlatform);
        }
    }

    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 {
        if (tokenAmount > 0 && ethAmount > 0) {
            // 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
            );
        }
    }

    //this method is responsible for taking all fee, if takeFee is true
    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 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _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 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _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 tDev, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _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 tDev, uint256 tLiquidity) = _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);        
        _takeLiquidity(tLiquidity);
        _takeDev(tDev);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tDev, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tDev = calculateDevFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tDev).sub(tLiquidity);
        return (tTransferAmount, tFee, tDev, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tDev, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rDev = tDev.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rDev).sub(rLiquidity);
        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 _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)]) {
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
        }
    }
    
    function _takeDev(uint256 tDev) private {
        uint256 currentRate =  _getRate();
        uint256 rDev = tDev.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rDev);
        if(_isExcluded[address(this)]) {
            _tOwned[address(this)] = _tOwned[address(this)].add(tDev);
        }
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(10000);
    }

    function calculateDevFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_devFee).div(10000);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(10000);
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _devFee == 0 && _liquidityFee == 0 && launchSellFee == 0 && firstSellPenaltyFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousDevFee = _devFee;
        _previousLiquidityFee = _liquidityFee;
        _previousLaunchSellFee = launchSellFee;
        _previousFirstSellPenaltyFee = firstSellPenaltyFee;
        
        _taxFee = 0;
        _devFee = 0;
        _liquidityFee = 0;
        launchSellFee = 0;
        firstSellPenaltyFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _devFee = _previousDevFee;
        _liquidityFee = _previousLiquidityFee;
        launchSellFee = _previousLaunchSellFee;
        firstSellPenaltyFee = _previousFirstSellPenaltyFee;
    }
    
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner() {
        uint256 contractEthBalance = address(this).balance;
        sendEthToDevAddress(contractEthBalance);
    }
    
    function isExcludedFromFee(address account) external view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = _tTotal.mul(newMaxTx).div(1000);
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        require(taxFee <= 800, "Maximum fee limit is 8");
        _taxFee = taxFee;
    }
    
    function setSellTaxFeePercent(uint256 taxFee) external onlyOwner() {
        require(taxFee <= 800, "Maximum fee limit is 8%");
        _sellTaxFee = taxFee;
    }
    
    function setDevFeePercent(uint256 devFee, uint256 devTax, uint256 marketingTax) external onlyOwner() {
         require(devFee <= 1500, "Maximum fee limit is 15%");
         require(devTax + marketingTax == devFee, "Dev + marketing must equal total fee");
        _devFee = devFee + _platformTax;
        _devTax = devTax;
        _marketingTax = marketingTax;
    }

    function setSellDevFeePercent(uint256 devFee, uint256 devTax, uint256 marketingTax) external onlyOwner() {
        require(devFee <= 1500, "Maximum fee limit is 15%");
        require(devTax + marketingTax == devFee, "Dev + marketing must equal total fee");
        _sellDevFee = devFee + _sellPlatformTax;
        _sellDevTax = devTax;
        _sellMarketingTax = marketingTax;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee <= 800, "Maximum fee limit is 8%");
        _liquidityFee = liquidityFee;
    }

    function setSellLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee <= 800, "Maximum fee limit is 8%");
        _sellLiquidityFee = liquidityFee;
    }

    function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner {
        require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%");
        launchSellFee = newLaunchSellFee;
    }

    function setSellPenaltyFeePercent(uint256 sellPenalty, uint256 liquidityTax, uint256 devTax) external onlyOwner() {
        require(sellPenalty <= 2500, "Maximum sell penalty is 25%");
        require(liquidityTax + devTax == sellPenalty, "Liquidity + marketing must equal sell penalty");
        firstSellPenaltyFee = liquidityTax + devTax;
        _firstSellLiquidityTax = liquidityTax;
        _firstSellDevTax = devTax;
    }

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

    function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner {
        minTokensBeforeSwap = minTokens * 10**9;
        emit MinTokensBeforeSwapUpdated(minTokens);
    }
    
    // to receive ETH from uniswapV2Router when swaping
    receive() external payable {}
}

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":"liquidityEthBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devEthBalance","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":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"expectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstSellPenaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getSellPenaltyDeadlineForWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"devTax","type":"uint256"},{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"name":"setDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"devTax","type":"uint256"},{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"name":"setSellDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setSellLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellPenalty","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"devTax","type":"uint256"}],"name":"setSellPenaltyFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setSellTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

66038d7ea4c680006009556507326b47ffff19600a5560c060405260046080819052634b495a4f60e01b60a09081526200003d91600c919062000692565b5060408051808201909152600580825264244b495a4f60d81b60209092019182526200006c91600d9162000692565b506009600e60006101000a81548160ff021916908360ff1602179055506000600f55600f54601055600060115560006012556000601355600060145560115460155560006016556016546017556000601855601854601955610320601a556101f4601b556096601c556096601d55601a54601e5560c8601f55601f5460205560006021556021546022556107d06023556105dc6024556101f4602555602354602655620001466103e86200013260326009546200052760201b620023341790919060201c565b6200058e60201b620023941790919060201c565b602755602880546001600160a01b0319908116733a3cb7def0fb88625ed60f505974b1a84d95bab917909155602980548216731163153132b9a6e211a5fdd3ceb19bb4da1c3a1d179055602a805490911673a61e691ef6d4014e8397e7b35128e24065750d481790556000602b55602d805460ff60a81b1916600160a81b17905564e8d4a51000602e55348015620001dd57600080fd5b506000620001ea620005d8565b9050620001f6620005d8565b600080546001600160a01b0319166001600160a01b03928316178155604051918316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a546001600062000250620005d8565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c757600080fd5b505afa158015620002dc573d6000803e3d6000fd5b505050506040513d6020811015620002f357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200034457600080fd5b505afa15801562000359573d6000803e3d6000fd5b505050506040513d60208110156200037057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003c357600080fd5b505af1158015620003d8573d6000803e3d6000fd5b505050506040513d6020811015620003ef57600080fd5b5051602d80546001600160a01b03199081166001600160a01b0393841617909155602c805490911691831691909117905560016004600062000430620005dc565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600490925281208054909216600190811790925560059062000480620005dc565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620151804201602b55620004d3620005d8565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3506200072e565b600082620005385750600062000588565b828202828482816200054657fe5b0414620005855760405162461bcd60e51b8152600401808060200182810382526021815260200180620040ee6021913960400191505060405180910390fd5b90505b92915050565b60006200058583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005eb60201b60201c565b3390565b6000546001600160a01b031690565b600081836200067b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200063f57818101518382015260200162000625565b50505050905090810190601f1680156200066d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200068857fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006d557805160ff191683800117855562000705565b8280016001018555821562000705579182015b8281111562000705578251825591602001919060010190620006e8565b506200071392915062000717565b5090565b5b8082111562000713576000815560010162000718565b6139b0806200073e6000396000f3fe60806040526004361061031e5760003560e01c80635876ccc5116101ab57806395d89b41116100f7578063d0e0352311610095578063dd62ed3e1161006f578063dd62ed3e14610b1e578063ea2f0b3714610b59578063f2fde38b14610b8c578063f429389014610bbf57610325565b8063d0e0352314610a97578063d543dbeb14610ac1578063d5a268e814610aeb57610325565b8063aa45026b116100d1578063aa45026b14610a2c578063af01f2b214610a41578063c49b9a8014610a56578063c9cf778914610a8257610325565b806395d89b41146109a5578063a457c2d7146109ba578063a9059cbb146109f357610325565b806377e5006f1161016457806388f820201161013e57806388f820201461091e5780638c0b5e22146109515780638da5cb5b146109665780638ee88c531461097b57610325565b806377e5006f146108ac5780638421b507146108df57806388790a681461090957610325565b80635876ccc5146107da5780635e672047146108045780636055dcb0146108195780636bc87c3a1461084f57806370a0823114610864578063715018a61461089757610325565b80633b124fe71161026a57806349bd5a5e1161022357806351bc3c85116101fd57806351bc3c851461074a57806352390c021461075f5780635342acb41461079257806354959363146107c557610325565b806349bd5a5e146106ea5780634a74bb02146106ff5780634d33cc651461071457610325565b80633b124fe7146105e95780633bd5d173146105fe57806341cb87fc14610628578063437823ec1461065b5780634549b0391461068e57806348a46473146106c057610325565b806318160ddd116102d75780632d838119116102b15780632d83811914610528578063313ce567146105525780633685d4191461057d57806339509351146105b057610325565b806318160ddd146104bb578063200a692d146104d057806323b872dd146104e557610325565b8063061c82d01461032a57806306fdde0314610356578063095ea7b3146103e057806313114a9d1461042d57806314d914f9146104545780631694505e1461048a57610325565b3661032557005b600080fd5b34801561033657600080fd5b506103546004803603602081101561034d57600080fd5b5035610bd4565b005b34801561036257600080fd5b5061036b610c81565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103a557818101518382015260200161038d565b50505050905090810190601f1680156103d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103ec57600080fd5b506104196004803603604081101561040357600080fd5b506001600160a01b038135169060200135610d17565b604080519115158252519081900360200190f35b34801561043957600080fd5b50610442610d35565b60408051918252519081900360200190f35b34801561046057600080fd5b506103546004803603606081101561047757600080fd5b5080359060208101359060400135610d3b565b34801561049657600080fd5b5061049f610e37565b604080516001600160a01b039092168252519081900360200190f35b3480156104c757600080fd5b50610442610e46565b3480156104dc57600080fd5b50610442610e4c565b3480156104f157600080fd5b506104196004803603606081101561050857600080fd5b506001600160a01b03813581169160208101359091169060400135610e52565b34801561053457600080fd5b506104426004803603602081101561054b57600080fd5b5035610ed9565b34801561055e57600080fd5b50610567610f3b565b6040805160ff9092168252519081900360200190f35b34801561058957600080fd5b50610354600480360360208110156105a057600080fd5b50356001600160a01b0316610f44565b3480156105bc57600080fd5b50610419600480360360408110156105d357600080fd5b506001600160a01b038135169060200135611105565b3480156105f557600080fd5b50610442611153565b34801561060a57600080fd5b506103546004803603602081101561062157600080fd5b5035611159565b34801561063457600080fd5b506103546004803603602081101561064b57600080fd5b50356001600160a01b0316611235565b34801561066757600080fd5b506103546004803603602081101561067e57600080fd5b50356001600160a01b031661141f565b34801561069a57600080fd5b50610442600480360360408110156106b157600080fd5b5080359060200135151561149b565b3480156106cc57600080fd5b50610354600480360360208110156106e357600080fd5b503561152f565b3480156106f657600080fd5b5061049f6115c7565b34801561070b57600080fd5b506104196115d6565b34801561072057600080fd5b506103546004803603606081101561073757600080fd5b50803590602081013590604001356115e6565b34801561075657600080fd5b506103546116e2565b34801561076b57600080fd5b506103546004803603602081101561078257600080fd5b50356001600160a01b0316611753565b34801561079e57600080fd5b50610419600480360360208110156107b557600080fd5b50356001600160a01b03166118d9565b3480156107d157600080fd5b506104426118f7565b3480156107e657600080fd5b50610354600480360360208110156107fd57600080fd5b50356118fd565b34801561081057600080fd5b506104426119ab565b34801561082557600080fd5b506103546004803603606081101561083c57600080fd5b50803590602081013590604001356119b1565b34801561085b57600080fd5b50610442611ab2565b34801561087057600080fd5b506104426004803603602081101561088757600080fd5b50356001600160a01b0316611ab8565b3480156108a357600080fd5b50610354611b1a565b3480156108b857600080fd5b50610442600480360360208110156108cf57600080fd5b50356001600160a01b0316611bbc565b3480156108eb57600080fd5b506103546004803603602081101561090257600080fd5b5035611c69565b34801561091557600080fd5b50610442611d1d565b34801561092a57600080fd5b506104196004803603602081101561094157600080fd5b50356001600160a01b0316611d23565b34801561095d57600080fd5b50610442611d41565b34801561097257600080fd5b5061049f611d47565b34801561098757600080fd5b506103546004803603602081101561099e57600080fd5b5035611d56565b3480156109b157600080fd5b5061036b611e04565b3480156109c657600080fd5b50610419600480360360408110156109dd57600080fd5b506001600160a01b038135169060200135611e65565b3480156109ff57600080fd5b5061041960048036036040811015610a1657600080fd5b506001600160a01b038135169060200135611ecd565b348015610a3857600080fd5b50610442611ee1565b348015610a4d57600080fd5b50610442611ee7565b348015610a6257600080fd5b5061035460048036036020811015610a7957600080fd5b50351515611eed565b348015610a8e57600080fd5b50610442611f98565b348015610aa357600080fd5b5061035460048036036020811015610aba57600080fd5b5035611f9e565b348015610acd57600080fd5b5061035460048036036020811015610ae457600080fd5b503561204c565b348015610af757600080fd5b5061044260048036036020811015610b0e57600080fd5b50356001600160a01b031661211b565b348015610b2a57600080fd5b5061044260048036036040811015610b4157600080fd5b506001600160a01b0381358116916020013516612136565b348015610b6557600080fd5b5061035460048036036020811015610b7c57600080fd5b50356001600160a01b0316612161565b348015610b9857600080fd5b5061035460048036036020811015610baf57600080fd5b50356001600160a01b03166121da565b348015610bcb57600080fd5b506103546122d2565b610bdc6123d6565b6000546001600160a01b03908116911614610c2c576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b610320811115610c7c576040805162461bcd60e51b815260206004820152601660248201527509ac2f0d2daeada40cccaca40d8d2dad2e840d2e640760531b604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b5050505050905090565b6000610d2b610d246123d6565b84846123da565b5060015b92915050565b600b5490565b610d436123d6565b6000546001600160a01b03908116911614610d93576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6105dc831115610de5576040805162461bcd60e51b81526020600482015260186024820152774d6178696d756d20666565206c696d69742069732031352560401b604482015290519081900360640190fd5b8281830114610e255760405162461bcd60e51b815260040180806020018281038252602481526020018061384f6024913960400191505060405180910390fd5b601d5492909201601a55601b55601c55565b602c546001600160a01b031681565b60095490565b60185481565b6000610e5f848484612462565b610ecf84610e6b6123d6565b610eca85604051806060016040528060288152602001613894602891396001600160a01b038a16600090815260036020526040812090610ea96123d6565b6001600160a01b031681526020810191909152604001600020549190612807565b6123da565b5060019392505050565b6000600a54821115610f1c5760405162461bcd60e51b815260040180806020018281038252602a8152602001806137d7602a913960400191505060405180910390fd5b6000610f2661289e565b9050610f328382612394565b9150505b919050565b600e5460ff1690565b610f4c6123d6565b6000546001600160a01b03908116911614610f9c576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611009576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561110157816001600160a01b03166008828154811061102d57fe5b6000918252602090912001546001600160a01b031614156110f95760088054600019810190811061105a57fe5b600091825260209091200154600880546001600160a01b03909216918390811061108057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600790925220805460ff1916905560088054806110d257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611101565b60010161100c565b5050565b6000610d2b6111126123d6565b84610eca85600360006111236123d6565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128c1565b600f5481565b60006111636123d6565b6001600160a01b03811660009081526007602052604090205490915060ff16156111be5760405162461bcd60e51b815260040180806020018281038252602c81526020018061392a602c913960400191505060405180910390fd5b60006111c98361291b565b5050506001600160a01b0386166000908152600160205260409020549394506111f793925084915050612976565b6001600160a01b038316600090815260016020526040902055600a5461121d9082612976565b600a55600b5461122d90846128c1565b600b55505050565b61123d6123d6565b6000546001600160a01b0390811691161461128d576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112cb57600080fd5b505afa1580156112df573d6000803e3d6000fd5b505050506040513d60208110156112f557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561134557600080fd5b505afa158015611359573d6000803e3d6000fd5b505050506040513d602081101561136f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156113c157600080fd5b505af11580156113d5573d6000803e3d6000fd5b505050506040513d60208110156113eb57600080fd5b5051602d80546001600160a01b039283166001600160a01b031991821617909155602c805493909216921691909117905550565b6114276123d6565b6000546001600160a01b03908116911614611477576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006009548311156114f4576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816115145760006115048461291b565b50949650610d2f95505050505050565b600061151f8461291b565b50939650610d2f95505050505050565b6115376123d6565b6000546001600160a01b03908116911614611587576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b633b9aca008102602e556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b602d546001600160a01b031681565b602d54600160a81b900460ff1681565b6115ee6123d6565b6000546001600160a01b0390811691161461163e576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6105dc831115611690576040805162461bcd60e51b81526020600482015260186024820152774d6178696d756d20666565206c696d69742069732031352560401b604482015290519081900360640190fd5b82818301146116d05760405162461bcd60e51b815260040180806020018281038252602481526020018061384f6024913960400191505060405180910390fd5b60145492909201601155601255601355565b6116ea6123d6565b6000546001600160a01b0390811691161461173a576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b600061174530611ab8565b9050611750816129b8565b50565b61175b6123d6565b6000546001600160a01b039081169116146117ab576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611819576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415611873576001600160a01b03811660009081526001602052604090205461185990610ed9565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b60215481565b6119056123d6565b6000546001600160a01b03908116911614611955576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6103208111156119a6576040805162461bcd60e51b81526020600482015260176024820152764d6178696d756d20666565206c696d697420697320382560481b604482015290519081900360640190fd5b601f55565b60235481565b6119b96123d6565b6000546001600160a01b03908116911614611a09576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6109c4831115611a60576040805162461bcd60e51b815260206004820152601b60248201527f4d6178696d756d2073656c6c2070656e616c7479206973203235250000000000604482015290519081900360640190fd5b8281830114611aa05760405162461bcd60e51b815260040180806020018281038252602d8152602001806137aa602d913960400191505060405180910390fd5b81810160235560249190915560255550565b60165481565b6001600160a01b03811660009081526007602052604081205460ff1615611af857506001600160a01b038116600090815260026020526040902054610f36565b6001600160a01b038216600090815260016020526040902054610d2f90610ed9565b611b226123d6565b6000546001600160a01b03908116911614611b72576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000478282611bca82611ab8565b90506000805b600854811015611c1857611c0e82611c0860088481548110611bee57fe5b6000918252602090912001546001600160a01b0316611ab8565b906128c1565b9150600101611bd0565b50602d54600090611c5e90611c4e908490611c4890611c3f906001600160a01b0316611ab8565b60095490612976565b90612976565b611c588588612334565b90612394565b979650505050505050565b611c716123d6565b6000546001600160a01b03908116911614611cc1576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6109c4811115611d18576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000604482015290519081900360640190fd5b602155565b601f5481565b6001600160a01b031660009081526007602052604090205460ff1690565b60275481565b6000546001600160a01b031690565b611d5e6123d6565b6000546001600160a01b03908116911614611dae576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b610320811115611dff576040805162461bcd60e51b81526020600482015260176024820152764d6178696d756d20666565206c696d697420697320382560481b604482015290519081900360640190fd5b601655565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b6000610d2b611e726123d6565b84610eca856040518060600160405280602581526020016139566025913960036000611e9c6123d6565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612807565b6000610d2b611eda6123d6565b8484612462565b60115481565b602b5481565b611ef56123d6565b6000546001600160a01b03908116911614611f45576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b602d8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b601a5481565b611fa66123d6565b6000546001600160a01b03908116911614611ff6576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b610320811115612047576040805162461bcd60e51b81526020600482015260176024820152764d6178696d756d20666565206c696d697420697320382560481b604482015290519081900360640190fd5b601855565b6120546123d6565b6000546001600160a01b039081169116146120a4576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b60058110156120fa576040805162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e35250000000000604482015290519081900360640190fd5b6121156103e8611c588360095461233490919063ffffffff16565b60275550565b6001600160a01b031660009081526006602052604090205490565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6121696123d6565b6000546001600160a01b039081169116146121b9576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b6121e26123d6565b6000546001600160a01b03908116911614612232576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b0381166122775760405162461bcd60e51b81526004018080602001828103825260268152602001806138016026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6122da6123d6565b6000546001600160a01b0390811691161461232a576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b4761175081612b66565b60008261234357506000610d2f565b8282028284828161235057fe5b041461238d5760405162461bcd60e51b81526004018080602001828103825260218152602001806138736021913960400191505060405180910390fd5b9392505050565b600061238d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ca6565b3390565b6001600160a01b0383166123ed57600080fd5b6001600160a01b03821661240057600080fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166124a75760405162461bcd60e51b81526004018080602001828103825260258152602001806139056025913960400191505060405180910390fd5b6001600160a01b0382166124ec5760405162461bcd60e51b81526004018080602001828103825260238152602001806137876023913960400191505060405180910390fd5b6000811161252b5760405162461bcd60e51b81526004018080602001828103825260298152602001806138dc6029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460ff1615801561256d57506001600160a01b03821660009081526005602052604090205460ff16155b156125b3576027548111156125b35760405162461bcd60e51b81526004018080602001828103825260288152602001806138276028913960400191505060405180910390fd5b601154601254601354601454601654600f54602d546001600160a01b0389811691161480156126cc57601a54601155601b54601255601c54601355601d54601455601f54601655601854600f55602b54421161262e57602154601154612618916128c1565b60115560215460125461262a916128c1565b6012555b6001600160a01b038a16600090815260066020526040902054421180159061266f57506001600160a01b038a16600090815260066020526040902054600114155b156126c757602454601654612683916128c1565b601655602554601154612695916128c1565b6011556025546012546126a7916128c1565b6012556001600160a01b038a166000908152600660205260409020600190555b61270a565b6001600160a01b03891660009081526006602052604090205461270a576001600160a01b038916600090815260066020526040902062015180420190555b600061271530611ab8565b602e54909150811080159081906127365750602d54600160a01b900460ff16155b80156127505750602d546001600160a01b038d8116911614155b80156127655750602d54600160a81b900460ff165b1561278c576000826027541161277d5760275461277f565b825b905061278a81612d0b565b505b6001600160a01b038c1660009081526004602052604090205460019060ff16806127ce57506001600160a01b038c1660009081526004602052604090205460ff165b156127d7575060005b6127e38d8d8d84612ea2565b505050601196909655601294909455601392909255601455601655600f5550505050565b600081848411156128965760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561285b578181015183820152602001612843565b50505050905090810190601f1680156128885780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006128ab613010565b90925090506128ba8282612394565b9250505090565b60008282018381101561238d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060008060006129358c613173565b935093509350935060008060006129568f87878761295161289e565b6131c2565b919f509d509b509599509397509195509350505050919395979092949650565b600061238d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612807565b604080516002808252606080830184529260208301908036833701905050905030816000815181106129e657fe5b6001600160a01b03928316602091820292909201810191909152602c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a3a57600080fd5b505afa158015612a4e573d6000803e3d6000fd5b505050506040513d6020811015612a6457600080fd5b5051815182906001908110612a7557fe5b6001600160a01b039283166020918202929092010152602c54612a9b91309116846123da565b602c5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612b21578181015183820152602001612b09565b505050509050019650505050505050600060405180830381600087803b158015612b4a57600080fd5b505af1158015612b5e573d6000803e3d6000fd5b505050505050565b600081118015612b7857506000601154115b15611750576000612b9a601154611c586012548561233490919063ffffffff16565b90506000612bb9601154611c586013548661233490919063ffffffff16565b90506000612bd8601154611c586014548761233490919063ffffffff16565b90508215612c1c576028546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612c1a573d6000803e3d6000fd5b505b8115612c5e576029546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612c5c573d6000803e3d6000fd5b505b8015612ca057602a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612c9e573d6000803e3d6000fd5b505b50505050565b60008183612cf55760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561285b578181015183820152602001612843565b506000838581612d0157fe5b0495945050505050565b602d805460ff60a01b1916600160a01b179055601654601154600091612d3191906128c1565b905080612d3e5750612e92565b6000612d5982611c586016548661233490919063ffffffff16565b90506000612d7683611c586011548761233490919063ffffffff16565b90506000612d85836002612394565b90504783158015612d94575082155b15612da3575050505050612e92565b612db5612db084846128c1565b6129b8565b6000612dc14783612976565b90508015612e8b576000612ded612de4600260165461239490919063ffffffff16565b601154906128c1565b90506000612e1582611c58612e0e600260165461239490919063ffffffff16565b8690612334565b90506000612e3283611c586011548761233490919063ffffffff16565b9050612e3e8683613224565b612e4781612b66565b604080518b81526020810184905280820183905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505b5050505050505b50602d805460ff60a01b19169055565b80612eaf57612eaf613306565b6001600160a01b03841660009081526007602052604090205460ff168015612ef057506001600160a01b03831660009081526007602052604090205460ff16155b15612f0557612f0084848461337c565b613003565b6001600160a01b03841660009081526007602052604090205460ff16158015612f4657506001600160a01b03831660009081526007602052604090205460ff165b15612f5657612f008484846134c0565b6001600160a01b03841660009081526007602052604090205460ff16158015612f9857506001600160a01b03831660009081526007602052604090205460ff16155b15612fa857612f0084848461357f565b6001600160a01b03841660009081526007602052604090205460ff168015612fe857506001600160a01b03831660009081526007602052604090205460ff165b15612ff857612f008484846135d9565b61300384848461357f565b80612ca057612ca0613662565b600a546009546000918291825b6008548110156131415782600160006008848154811061303957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061309e575081600260006008848154811061307757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156130b557600a546009549450945050505061316f565b6130f560016000600884815481106130c957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612976565b9250613137600260006008848154811061310b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612976565b915060010161301d565b50600954600a5461315191612394565b82101561316957600a5460095493509350505061316f565b90925090505b9091565b600080600080600061318486613682565b905060006131918761369f565b9050600061319e886136bc565b905060006131b282611c4885818d89612976565b9993985091965094509092505050565b60008080806131d18986612334565b905060006131df8987612334565b905060006131ed8988612334565b905060006131fb8989612334565b9050600061320f82611c4885818989612976565b949d949c50929a509298505050505050505050565b6000821180156132345750600081115b1561110157602c546132519030906001600160a01b0316846123da565b602c546001600160a01b031663f305d719823085600080613270611d47565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156132db57600080fd5b505af11580156132ef573d6000803e3d6000fd5b50505050506040513d6060811015612ca057600080fd5b600f541580156133165750601154155b80156133225750601654155b801561332e5750602154155b801561333a5750602354155b156133445761337a565b600f8054601055601180546015556016805460175560218054602255602380546026556000948590559284905590839055829055555b565b60008060008060008060006133908861291b565b96509650965096509650965096506133d688600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546134059088612976565b6001600160a01b03808c1660009081526001602052604080822093909355908b168152205461343490876128c1565b6001600160a01b038a16600090815260016020526040902055613456816136d9565b61345f826136d9565b6134698584613762565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b60008060008060008060006134d48861291b565b965096509650965096509650965061351a87600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c1681526002909152205461355090856128c1565b6001600160a01b038a1660009081526002602090815260408083209390935560019052205461343490876128c1565b60008060008060008060006135938861291b565b965096509650965096509650965061340587600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b60008060008060008060006135ed8861291b565b965096509650965096509650965061363388600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461351a9088612976565b601054600f55601554601155601754601655602254602155602654602355565b6000610d2f612710611c58600f548561233490919063ffffffff16565b6000610d2f612710611c586011548561233490919063ffffffff16565b6000610d2f612710611c586016548561233490919063ffffffff16565b60006136e361289e565b905060006136f18383612334565b3060009081526001602052604090205490915061370e90826128c1565b3060009081526001602090815260408083209390935560079052205460ff161561375d573060009081526002602052604090205461374c90846128c1565b306000908152600260205260409020555b505050565b600a5461376f9083612976565b600a55600b5461377f90826128c1565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734c6971756964697479202b206d61726b6574696e67206d75737420657175616c2073656c6c2070656e616c7479416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e446576202b206d61726b6574696e67206d75737420657175616c20746f74616c20666565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203b14ed37417fe2adb2a985603189bf3c8243015fc6bcefa3b97f7312780280bb64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80635876ccc5116101ab57806395d89b41116100f7578063d0e0352311610095578063dd62ed3e1161006f578063dd62ed3e14610b1e578063ea2f0b3714610b59578063f2fde38b14610b8c578063f429389014610bbf57610325565b8063d0e0352314610a97578063d543dbeb14610ac1578063d5a268e814610aeb57610325565b8063aa45026b116100d1578063aa45026b14610a2c578063af01f2b214610a41578063c49b9a8014610a56578063c9cf778914610a8257610325565b806395d89b41146109a5578063a457c2d7146109ba578063a9059cbb146109f357610325565b806377e5006f1161016457806388f820201161013e57806388f820201461091e5780638c0b5e22146109515780638da5cb5b146109665780638ee88c531461097b57610325565b806377e5006f146108ac5780638421b507146108df57806388790a681461090957610325565b80635876ccc5146107da5780635e672047146108045780636055dcb0146108195780636bc87c3a1461084f57806370a0823114610864578063715018a61461089757610325565b80633b124fe71161026a57806349bd5a5e1161022357806351bc3c85116101fd57806351bc3c851461074a57806352390c021461075f5780635342acb41461079257806354959363146107c557610325565b806349bd5a5e146106ea5780634a74bb02146106ff5780634d33cc651461071457610325565b80633b124fe7146105e95780633bd5d173146105fe57806341cb87fc14610628578063437823ec1461065b5780634549b0391461068e57806348a46473146106c057610325565b806318160ddd116102d75780632d838119116102b15780632d83811914610528578063313ce567146105525780633685d4191461057d57806339509351146105b057610325565b806318160ddd146104bb578063200a692d146104d057806323b872dd146104e557610325565b8063061c82d01461032a57806306fdde0314610356578063095ea7b3146103e057806313114a9d1461042d57806314d914f9146104545780631694505e1461048a57610325565b3661032557005b600080fd5b34801561033657600080fd5b506103546004803603602081101561034d57600080fd5b5035610bd4565b005b34801561036257600080fd5b5061036b610c81565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103a557818101518382015260200161038d565b50505050905090810190601f1680156103d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103ec57600080fd5b506104196004803603604081101561040357600080fd5b506001600160a01b038135169060200135610d17565b604080519115158252519081900360200190f35b34801561043957600080fd5b50610442610d35565b60408051918252519081900360200190f35b34801561046057600080fd5b506103546004803603606081101561047757600080fd5b5080359060208101359060400135610d3b565b34801561049657600080fd5b5061049f610e37565b604080516001600160a01b039092168252519081900360200190f35b3480156104c757600080fd5b50610442610e46565b3480156104dc57600080fd5b50610442610e4c565b3480156104f157600080fd5b506104196004803603606081101561050857600080fd5b506001600160a01b03813581169160208101359091169060400135610e52565b34801561053457600080fd5b506104426004803603602081101561054b57600080fd5b5035610ed9565b34801561055e57600080fd5b50610567610f3b565b6040805160ff9092168252519081900360200190f35b34801561058957600080fd5b50610354600480360360208110156105a057600080fd5b50356001600160a01b0316610f44565b3480156105bc57600080fd5b50610419600480360360408110156105d357600080fd5b506001600160a01b038135169060200135611105565b3480156105f557600080fd5b50610442611153565b34801561060a57600080fd5b506103546004803603602081101561062157600080fd5b5035611159565b34801561063457600080fd5b506103546004803603602081101561064b57600080fd5b50356001600160a01b0316611235565b34801561066757600080fd5b506103546004803603602081101561067e57600080fd5b50356001600160a01b031661141f565b34801561069a57600080fd5b50610442600480360360408110156106b157600080fd5b5080359060200135151561149b565b3480156106cc57600080fd5b50610354600480360360208110156106e357600080fd5b503561152f565b3480156106f657600080fd5b5061049f6115c7565b34801561070b57600080fd5b506104196115d6565b34801561072057600080fd5b506103546004803603606081101561073757600080fd5b50803590602081013590604001356115e6565b34801561075657600080fd5b506103546116e2565b34801561076b57600080fd5b506103546004803603602081101561078257600080fd5b50356001600160a01b0316611753565b34801561079e57600080fd5b50610419600480360360208110156107b557600080fd5b50356001600160a01b03166118d9565b3480156107d157600080fd5b506104426118f7565b3480156107e657600080fd5b50610354600480360360208110156107fd57600080fd5b50356118fd565b34801561081057600080fd5b506104426119ab565b34801561082557600080fd5b506103546004803603606081101561083c57600080fd5b50803590602081013590604001356119b1565b34801561085b57600080fd5b50610442611ab2565b34801561087057600080fd5b506104426004803603602081101561088757600080fd5b50356001600160a01b0316611ab8565b3480156108a357600080fd5b50610354611b1a565b3480156108b857600080fd5b50610442600480360360208110156108cf57600080fd5b50356001600160a01b0316611bbc565b3480156108eb57600080fd5b506103546004803603602081101561090257600080fd5b5035611c69565b34801561091557600080fd5b50610442611d1d565b34801561092a57600080fd5b506104196004803603602081101561094157600080fd5b50356001600160a01b0316611d23565b34801561095d57600080fd5b50610442611d41565b34801561097257600080fd5b5061049f611d47565b34801561098757600080fd5b506103546004803603602081101561099e57600080fd5b5035611d56565b3480156109b157600080fd5b5061036b611e04565b3480156109c657600080fd5b50610419600480360360408110156109dd57600080fd5b506001600160a01b038135169060200135611e65565b3480156109ff57600080fd5b5061041960048036036040811015610a1657600080fd5b506001600160a01b038135169060200135611ecd565b348015610a3857600080fd5b50610442611ee1565b348015610a4d57600080fd5b50610442611ee7565b348015610a6257600080fd5b5061035460048036036020811015610a7957600080fd5b50351515611eed565b348015610a8e57600080fd5b50610442611f98565b348015610aa357600080fd5b5061035460048036036020811015610aba57600080fd5b5035611f9e565b348015610acd57600080fd5b5061035460048036036020811015610ae457600080fd5b503561204c565b348015610af757600080fd5b5061044260048036036020811015610b0e57600080fd5b50356001600160a01b031661211b565b348015610b2a57600080fd5b5061044260048036036040811015610b4157600080fd5b506001600160a01b0381358116916020013516612136565b348015610b6557600080fd5b5061035460048036036020811015610b7c57600080fd5b50356001600160a01b0316612161565b348015610b9857600080fd5b5061035460048036036020811015610baf57600080fd5b50356001600160a01b03166121da565b348015610bcb57600080fd5b506103546122d2565b610bdc6123d6565b6000546001600160a01b03908116911614610c2c576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b610320811115610c7c576040805162461bcd60e51b815260206004820152601660248201527509ac2f0d2daeada40cccaca40d8d2dad2e840d2e640760531b604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b820191906000526020600020905b815481529060010190602001808311610cf057829003601f168201915b5050505050905090565b6000610d2b610d246123d6565b84846123da565b5060015b92915050565b600b5490565b610d436123d6565b6000546001600160a01b03908116911614610d93576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6105dc831115610de5576040805162461bcd60e51b81526020600482015260186024820152774d6178696d756d20666565206c696d69742069732031352560401b604482015290519081900360640190fd5b8281830114610e255760405162461bcd60e51b815260040180806020018281038252602481526020018061384f6024913960400191505060405180910390fd5b601d5492909201601a55601b55601c55565b602c546001600160a01b031681565b60095490565b60185481565b6000610e5f848484612462565b610ecf84610e6b6123d6565b610eca85604051806060016040528060288152602001613894602891396001600160a01b038a16600090815260036020526040812090610ea96123d6565b6001600160a01b031681526020810191909152604001600020549190612807565b6123da565b5060019392505050565b6000600a54821115610f1c5760405162461bcd60e51b815260040180806020018281038252602a8152602001806137d7602a913960400191505060405180910390fd5b6000610f2661289e565b9050610f328382612394565b9150505b919050565b600e5460ff1690565b610f4c6123d6565b6000546001600160a01b03908116911614610f9c576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611009576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561110157816001600160a01b03166008828154811061102d57fe5b6000918252602090912001546001600160a01b031614156110f95760088054600019810190811061105a57fe5b600091825260209091200154600880546001600160a01b03909216918390811061108057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600790925220805460ff1916905560088054806110d257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611101565b60010161100c565b5050565b6000610d2b6111126123d6565b84610eca85600360006111236123d6565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128c1565b600f5481565b60006111636123d6565b6001600160a01b03811660009081526007602052604090205490915060ff16156111be5760405162461bcd60e51b815260040180806020018281038252602c81526020018061392a602c913960400191505060405180910390fd5b60006111c98361291b565b5050506001600160a01b0386166000908152600160205260409020549394506111f793925084915050612976565b6001600160a01b038316600090815260016020526040902055600a5461121d9082612976565b600a55600b5461122d90846128c1565b600b55505050565b61123d6123d6565b6000546001600160a01b0390811691161461128d576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112cb57600080fd5b505afa1580156112df573d6000803e3d6000fd5b505050506040513d60208110156112f557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561134557600080fd5b505afa158015611359573d6000803e3d6000fd5b505050506040513d602081101561136f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156113c157600080fd5b505af11580156113d5573d6000803e3d6000fd5b505050506040513d60208110156113eb57600080fd5b5051602d80546001600160a01b039283166001600160a01b031991821617909155602c805493909216921691909117905550565b6114276123d6565b6000546001600160a01b03908116911614611477576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006009548311156114f4576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816115145760006115048461291b565b50949650610d2f95505050505050565b600061151f8461291b565b50939650610d2f95505050505050565b6115376123d6565b6000546001600160a01b03908116911614611587576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b633b9aca008102602e556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b602d546001600160a01b031681565b602d54600160a81b900460ff1681565b6115ee6123d6565b6000546001600160a01b0390811691161461163e576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6105dc831115611690576040805162461bcd60e51b81526020600482015260186024820152774d6178696d756d20666565206c696d69742069732031352560401b604482015290519081900360640190fd5b82818301146116d05760405162461bcd60e51b815260040180806020018281038252602481526020018061384f6024913960400191505060405180910390fd5b60145492909201601155601255601355565b6116ea6123d6565b6000546001600160a01b0390811691161461173a576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b600061174530611ab8565b9050611750816129b8565b50565b61175b6123d6565b6000546001600160a01b039081169116146117ab576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611819576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415611873576001600160a01b03811660009081526001602052604090205461185990610ed9565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b60215481565b6119056123d6565b6000546001600160a01b03908116911614611955576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6103208111156119a6576040805162461bcd60e51b81526020600482015260176024820152764d6178696d756d20666565206c696d697420697320382560481b604482015290519081900360640190fd5b601f55565b60235481565b6119b96123d6565b6000546001600160a01b03908116911614611a09576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6109c4831115611a60576040805162461bcd60e51b815260206004820152601b60248201527f4d6178696d756d2073656c6c2070656e616c7479206973203235250000000000604482015290519081900360640190fd5b8281830114611aa05760405162461bcd60e51b815260040180806020018281038252602d8152602001806137aa602d913960400191505060405180910390fd5b81810160235560249190915560255550565b60165481565b6001600160a01b03811660009081526007602052604081205460ff1615611af857506001600160a01b038116600090815260026020526040902054610f36565b6001600160a01b038216600090815260016020526040902054610d2f90610ed9565b611b226123d6565b6000546001600160a01b03908116911614611b72576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000478282611bca82611ab8565b90506000805b600854811015611c1857611c0e82611c0860088481548110611bee57fe5b6000918252602090912001546001600160a01b0316611ab8565b906128c1565b9150600101611bd0565b50602d54600090611c5e90611c4e908490611c4890611c3f906001600160a01b0316611ab8565b60095490612976565b90612976565b611c588588612334565b90612394565b979650505050505050565b611c716123d6565b6000546001600160a01b03908116911614611cc1576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6109c4811115611d18576040805162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c20666565206973203235250000604482015290519081900360640190fd5b602155565b601f5481565b6001600160a01b031660009081526007602052604090205460ff1690565b60275481565b6000546001600160a01b031690565b611d5e6123d6565b6000546001600160a01b03908116911614611dae576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b610320811115611dff576040805162461bcd60e51b81526020600482015260176024820152764d6178696d756d20666565206c696d697420697320382560481b604482015290519081900360640190fd5b601655565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d0d5780601f10610ce257610100808354040283529160200191610d0d565b6000610d2b611e726123d6565b84610eca856040518060600160405280602581526020016139566025913960036000611e9c6123d6565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612807565b6000610d2b611eda6123d6565b8484612462565b60115481565b602b5481565b611ef56123d6565b6000546001600160a01b03908116911614611f45576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b602d8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b601a5481565b611fa66123d6565b6000546001600160a01b03908116911614611ff6576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b610320811115612047576040805162461bcd60e51b81526020600482015260176024820152764d6178696d756d20666565206c696d697420697320382560481b604482015290519081900360640190fd5b601855565b6120546123d6565b6000546001600160a01b039081169116146120a4576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b60058110156120fa576040805162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e35250000000000604482015290519081900360640190fd5b6121156103e8611c588360095461233490919063ffffffff16565b60275550565b6001600160a01b031660009081526006602052604090205490565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6121696123d6565b6000546001600160a01b039081169116146121b9576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b6121e26123d6565b6000546001600160a01b03908116911614612232576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b6001600160a01b0381166122775760405162461bcd60e51b81526004018080602001828103825260268152602001806138016026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6122da6123d6565b6000546001600160a01b0390811691161461232a576040805162461bcd60e51b815260206004820181905260248201526000805160206138bc833981519152604482015290519081900360640190fd5b4761175081612b66565b60008261234357506000610d2f565b8282028284828161235057fe5b041461238d5760405162461bcd60e51b81526004018080602001828103825260218152602001806138736021913960400191505060405180910390fd5b9392505050565b600061238d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ca6565b3390565b6001600160a01b0383166123ed57600080fd5b6001600160a01b03821661240057600080fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166124a75760405162461bcd60e51b81526004018080602001828103825260258152602001806139056025913960400191505060405180910390fd5b6001600160a01b0382166124ec5760405162461bcd60e51b81526004018080602001828103825260238152602001806137876023913960400191505060405180910390fd5b6000811161252b5760405162461bcd60e51b81526004018080602001828103825260298152602001806138dc6029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460ff1615801561256d57506001600160a01b03821660009081526005602052604090205460ff16155b156125b3576027548111156125b35760405162461bcd60e51b81526004018080602001828103825260288152602001806138276028913960400191505060405180910390fd5b601154601254601354601454601654600f54602d546001600160a01b0389811691161480156126cc57601a54601155601b54601255601c54601355601d54601455601f54601655601854600f55602b54421161262e57602154601154612618916128c1565b60115560215460125461262a916128c1565b6012555b6001600160a01b038a16600090815260066020526040902054421180159061266f57506001600160a01b038a16600090815260066020526040902054600114155b156126c757602454601654612683916128c1565b601655602554601154612695916128c1565b6011556025546012546126a7916128c1565b6012556001600160a01b038a166000908152600660205260409020600190555b61270a565b6001600160a01b03891660009081526006602052604090205461270a576001600160a01b038916600090815260066020526040902062015180420190555b600061271530611ab8565b602e54909150811080159081906127365750602d54600160a01b900460ff16155b80156127505750602d546001600160a01b038d8116911614155b80156127655750602d54600160a81b900460ff165b1561278c576000826027541161277d5760275461277f565b825b905061278a81612d0b565b505b6001600160a01b038c1660009081526004602052604090205460019060ff16806127ce57506001600160a01b038c1660009081526004602052604090205460ff165b156127d7575060005b6127e38d8d8d84612ea2565b505050601196909655601294909455601392909255601455601655600f5550505050565b600081848411156128965760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561285b578181015183820152602001612843565b50505050905090810190601f1680156128885780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006128ab613010565b90925090506128ba8282612394565b9250505090565b60008282018381101561238d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060008060006129358c613173565b935093509350935060008060006129568f87878761295161289e565b6131c2565b919f509d509b509599509397509195509350505050919395979092949650565b600061238d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612807565b604080516002808252606080830184529260208301908036833701905050905030816000815181106129e657fe5b6001600160a01b03928316602091820292909201810191909152602c54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a3a57600080fd5b505afa158015612a4e573d6000803e3d6000fd5b505050506040513d6020811015612a6457600080fd5b5051815182906001908110612a7557fe5b6001600160a01b039283166020918202929092010152602c54612a9b91309116846123da565b602c5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612b21578181015183820152602001612b09565b505050509050019650505050505050600060405180830381600087803b158015612b4a57600080fd5b505af1158015612b5e573d6000803e3d6000fd5b505050505050565b600081118015612b7857506000601154115b15611750576000612b9a601154611c586012548561233490919063ffffffff16565b90506000612bb9601154611c586013548661233490919063ffffffff16565b90506000612bd8601154611c586014548761233490919063ffffffff16565b90508215612c1c576028546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612c1a573d6000803e3d6000fd5b505b8115612c5e576029546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015612c5c573d6000803e3d6000fd5b505b8015612ca057602a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612c9e573d6000803e3d6000fd5b505b50505050565b60008183612cf55760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561285b578181015183820152602001612843565b506000838581612d0157fe5b0495945050505050565b602d805460ff60a01b1916600160a01b179055601654601154600091612d3191906128c1565b905080612d3e5750612e92565b6000612d5982611c586016548661233490919063ffffffff16565b90506000612d7683611c586011548761233490919063ffffffff16565b90506000612d85836002612394565b90504783158015612d94575082155b15612da3575050505050612e92565b612db5612db084846128c1565b6129b8565b6000612dc14783612976565b90508015612e8b576000612ded612de4600260165461239490919063ffffffff16565b601154906128c1565b90506000612e1582611c58612e0e600260165461239490919063ffffffff16565b8690612334565b90506000612e3283611c586011548761233490919063ffffffff16565b9050612e3e8683613224565b612e4781612b66565b604080518b81526020810184905280820183905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505b5050505050505b50602d805460ff60a01b19169055565b80612eaf57612eaf613306565b6001600160a01b03841660009081526007602052604090205460ff168015612ef057506001600160a01b03831660009081526007602052604090205460ff16155b15612f0557612f0084848461337c565b613003565b6001600160a01b03841660009081526007602052604090205460ff16158015612f4657506001600160a01b03831660009081526007602052604090205460ff165b15612f5657612f008484846134c0565b6001600160a01b03841660009081526007602052604090205460ff16158015612f9857506001600160a01b03831660009081526007602052604090205460ff16155b15612fa857612f0084848461357f565b6001600160a01b03841660009081526007602052604090205460ff168015612fe857506001600160a01b03831660009081526007602052604090205460ff165b15612ff857612f008484846135d9565b61300384848461357f565b80612ca057612ca0613662565b600a546009546000918291825b6008548110156131415782600160006008848154811061303957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061309e575081600260006008848154811061307757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156130b557600a546009549450945050505061316f565b6130f560016000600884815481106130c957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612976565b9250613137600260006008848154811061310b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612976565b915060010161301d565b50600954600a5461315191612394565b82101561316957600a5460095493509350505061316f565b90925090505b9091565b600080600080600061318486613682565b905060006131918761369f565b9050600061319e886136bc565b905060006131b282611c4885818d89612976565b9993985091965094509092505050565b60008080806131d18986612334565b905060006131df8987612334565b905060006131ed8988612334565b905060006131fb8989612334565b9050600061320f82611c4885818989612976565b949d949c50929a509298505050505050505050565b6000821180156132345750600081115b1561110157602c546132519030906001600160a01b0316846123da565b602c546001600160a01b031663f305d719823085600080613270611d47565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156132db57600080fd5b505af11580156132ef573d6000803e3d6000fd5b50505050506040513d6060811015612ca057600080fd5b600f541580156133165750601154155b80156133225750601654155b801561332e5750602154155b801561333a5750602354155b156133445761337a565b600f8054601055601180546015556016805460175560218054602255602380546026556000948590559284905590839055829055555b565b60008060008060008060006133908861291b565b96509650965096509650965096506133d688600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546134059088612976565b6001600160a01b03808c1660009081526001602052604080822093909355908b168152205461343490876128c1565b6001600160a01b038a16600090815260016020526040902055613456816136d9565b61345f826136d9565b6134698584613762565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b60008060008060008060006134d48861291b565b965096509650965096509650965061351a87600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c1681526002909152205461355090856128c1565b6001600160a01b038a1660009081526002602090815260408083209390935560019052205461343490876128c1565b60008060008060008060006135938861291b565b965096509650965096509650965061340587600160008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b60008060008060008060006135ed8861291b565b965096509650965096509650965061363388600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461297690919063ffffffff16565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461351a9088612976565b601054600f55601554601155601754601655602254602155602654602355565b6000610d2f612710611c58600f548561233490919063ffffffff16565b6000610d2f612710611c586011548561233490919063ffffffff16565b6000610d2f612710611c586016548561233490919063ffffffff16565b60006136e361289e565b905060006136f18383612334565b3060009081526001602052604090205490915061370e90826128c1565b3060009081526001602090815260408083209390935560079052205460ff161561375d573060009081526002602052604090205461374c90846128c1565b306000908152600260205260409020555b505050565b600a5461376f9083612976565b600a55600b5461377f90826128c1565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734c6971756964697479202b206d61726b6574696e67206d75737420657175616c2073656c6c2070656e616c7479416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e446576202b206d61726b6574696e67206d75737420657175616c20746f74616c20666565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203b14ed37417fe2adb2a985603189bf3c8243015fc6bcefa3b97f7312780280bb64736f6c634300060c0033

Deployed Bytecode Sourcemap

24919:28049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50325:157;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50325:157:0;;:::i;:::-;;29372:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30284:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30284:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31554:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;51052:390;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51052:390:0;;;;;;;;;;;;:::i;27469:41::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27469:41:0;;;;;;;;;;;;;;29649:95;;;;;;;;;;;;;:::i;26262:30::-;;;;;;;;;;;;;:::i;30453:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30453:313:0;;;;;;;;;;;;;;;;;:::i;32481:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32481:253:0;;:::i;29558:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33083:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33083:479:0;-1:-1:-1;;;;;33083:479:0;;:::i;30774:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30774:218:0;;;;;;;;:::i;25860:26::-;;;;;;;;;;;;;:::i;31649:378::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31649:378:0;;:::i;29042:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29042:322:0;-1:-1:-1;;;;;29042:322:0;;:::i;49836:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49836:113:0;-1:-1:-1;;;;;49836:113:0;;:::i;32035:438::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32035:438:0;;;;;;;;;:::i;52686:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52686:181:0;;:::i;27517:28::-;;;;;;;;;;;;;:::i;27607:40::-;;;;;;;;;;;;;:::i;50672:372::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50672:372:0;;;;;;;;;;;;:::i;49361:156::-;;;;;;;;;;;;;:::i;32742:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32742:333:0;-1:-1:-1;;;;;32742:333:0;;:::i;49699:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49699:125:0;-1:-1:-1;;;;;49699:125:0;;:::i;26704:32::-;;;;;;;;;;;;;:::i;51650:196::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51650:196:0;;:::i;26806:41::-;;;;;;;;;;;;;:::i;52062:435::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52062:435:0;;;;;;;;;;;;:::i;26143:32::-;;;;;;;;;;;;;:::i;29752:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29752:198:0;-1:-1:-1;;;;;29752:198:0;;:::i;16282:148::-;;;;;;;;;;;;;:::i;33845:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33845:540:0;-1:-1:-1;;;;;33845:540:0;;:::i;51854:200::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51854:200:0;;:::i;26589:38::-;;;;;;;;;;;;;:::i;31277:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31277:120:0;-1:-1:-1;;;;;31277:120:0;;:::i;27055:54::-;;;;;;;;;;;;;:::i;15639:79::-;;;;;;;;;;;;;:::i;51454:188::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51454:188:0;;:::i;29463:87::-;;;;;;;;;;;;;:::i;31000:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31000:269:0;;;;;;;;:::i;29958:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29958:167:0;;;;;;;;:::i;25943:26::-;;;;;;;;;;;;;:::i;27420:40::-;;;;;;;;;;;;;:::i;52505:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52505:173:0;;;;:::i;26357:32::-;;;;;;;;;;;;;:::i;50494:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50494:166:0;;:::i;50123:190::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50123:190:0;;:::i;31405:141::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31405:141:0;-1:-1:-1;;;;;31405:141:0;;:::i;30133:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30133:143:0;;;;;;;;;;:::i;49961:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49961:112:0;-1:-1:-1;;;;;49961:112:0;;:::i;16585:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16585:244:0;-1:-1:-1;;;;;16585:244:0;;:::i;49525:162::-;;;;;;;;;;;;;:::i;50325:157::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;50417:3:::1;50407:6;:13;;50399:48;;;::::0;;-1:-1:-1;;;50399:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;50399:48:0;;;;;;;;;;;;;::::1;;50458:7;:16:::0;50325:157::o;29372:83::-;29442:5;29435:12;;;;;;;;-1:-1:-1;;29435:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29409:13;;29435:12;;29442:5;;29435:12;;29442:5;29435:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29372:83;:::o;30284:161::-;30359:4;30376:39;30385:12;:10;:12::i;:::-;30399:7;30408:6;30376:8;:39::i;:::-;-1:-1:-1;30433:4:0;30284:161;;;;;:::o;31554:87::-;31623:10;;31554:87;:::o;51052:390::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;51186:4:::1;51176:6;:14;;51168:51;;;::::0;;-1:-1:-1;;;51168:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51168:51:0;;;;;;;;;;;;;::::1;;51263:6;51247:12;51238:6;:21;:31;51230:80;;;;-1:-1:-1::0;;;51230:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51344:16;::::0;51335:25;;;::::1;51321:11;:39:::0;51371:11:::1;:20:::0;51402:17:::1;:32:::0;51052:390::o;27469:41::-;;;-1:-1:-1;;;;;27469:41:0;;:::o;29649:95::-;29729:7;;29649:95;:::o;26262:30::-;;;;:::o;30453:313::-;30551:4;30568:36;30578:6;30586:9;30597:6;30568:9;:36::i;:::-;30615:121;30624:6;30632:12;:10;:12::i;:::-;30646:89;30684:6;30646:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30646:19:0;;;;;;:11;:19;;;;;;30666:12;:10;:12::i;:::-;-1:-1:-1;;;;;30646:33:0;;;;;;;;;;;;-1:-1:-1;30646:33:0;;;:89;:37;:89::i;:::-;30615:8;:121::i;:::-;-1:-1:-1;30754:4:0;30453:313;;;;;:::o;32481:253::-;32547:7;32586;;32575;:18;;32567:73;;;;-1:-1:-1;;;32567:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32651:19;32674:10;:8;:10::i;:::-;32651:33;-1:-1:-1;32702:24:0;:7;32651:33;32702:11;:24::i;:::-;32695:31;;;32481:253;;;;:::o;29558:83::-;29624:9;;;;29558:83;:::o;33083:479::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33165:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33157:60;;;::::0;;-1:-1:-1;;;33157:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33233:9;33228:327;33252:9;:16:::0;33248:20;::::1;33228:327;;;33310:7;-1:-1:-1::0;;;;;33294:23:0::1;:9;33304:1;33294:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33294:12:0::1;:23;33290:254;;;33353:9;33363:16:::0;;-1:-1:-1;;33363:20:0;;;33353:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33338:9:::1;:12:::0;;-1:-1:-1;;;;;33353:31:0;;::::1;::::0;33348:1;;33338:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33338:46:0::1;-1:-1:-1::0;;;;;33338:46:0;;::::1;;::::0;;33403:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33442:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33442:28:0::1;::::0;;33489:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33489:15:0;;;;;-1:-1:-1;;;;;;33489:15:0::1;::::0;;;;;33523:5:::1;;33290:254;33270:3;;33228:327;;;;33083:479:::0;:::o;30774:218::-;30862:4;30879:83;30888:12;:10;:12::i;:::-;30902:7;30911:50;30950:10;30911:11;:25;30923:12;:10;:12::i;:::-;-1:-1:-1;;;;;30911:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30911:25:0;;;:34;;;;;;;;;;;:38;:50::i;25860:26::-;;;;:::o;31649:378::-;31701:14;31718:12;:10;:12::i;:::-;-1:-1:-1;;;;;31750:19:0;;;;;;:11;:19;;;;;;31701:29;;-1:-1:-1;31750:19:0;;31749:20;31741:77;;;;-1:-1:-1;;;31741:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31830:15;31855:19;31866:7;31855:10;:19::i;:::-;-1:-1:-1;;;;;;;;31903:15:0;;;;;;:7;:15;;;;;;31829:45;;-1:-1:-1;31903:28:0;;:15;-1:-1:-1;31829:45:0;;-1:-1:-1;;31903:19:0;:28::i;:::-;-1:-1:-1;;;;;31885:15:0;;;;;;:7;:15;;;;;:46;31952:7;;:20;;31964:7;31952:11;:20::i;:::-;31942:7;:30;31996:10;;:23;;32011:7;31996:14;:23::i;:::-;31983:10;:36;-1:-1:-1;;;31649:378:0:o;29042:322::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;29117:36:::1;29175:9;29117:68;;29230:17;-1:-1:-1::0;;;;;29230:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;29230:27:0;29285:24:::1;::::0;;-1:-1:-1;;;29285:24:0;;;;-1:-1:-1;;;;;29212:57:0;;::::1;::::0;::::1;::::0;29278:4:::1;::::0;29285:22;;::::1;::::0;::::1;::::0;:24:::1;::::0;;::::1;::::0;29230:27:::1;::::0;29285:24;;;;;;;;:22;:24;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;29285:24:0;29212:98:::1;::::0;;-1:-1:-1;;;;;;29212:98:0::1;::::0;;;;;;-1:-1:-1;;;;;29212:98:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;29285:24:::1;::::0;29212:98;;;;;;;-1:-1:-1;29212:98:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;29212:98:0;29196:13:::1;:114:::0;;-1:-1:-1;;;;;29196:114:0;;::::1;-1:-1:-1::0;;;;;;29196:114:0;;::::1;;::::0;;;29321:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;29042:322:0:o;49836:113::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49907:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;49907:34:0::1;49937:4;49907:34;::::0;;49836:113::o;32035:438::-;32125:7;32164;;32153;:18;;32145:62;;;;;-1:-1:-1;;;32145:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32223:17;32218:248;;32258:15;32283:19;32294:7;32283:10;:19::i;:::-;-1:-1:-1;32257:45:0;;-1:-1:-1;32317:14:0;;-1:-1:-1;;;;;;32317:14:0;32218:248;32366:23;32398:19;32409:7;32398:10;:19::i;:::-;-1:-1:-1;32364:53:0;;-1:-1:-1;32432:22:0;;-1:-1:-1;;;;;;32432:22:0;52686:181;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;52801:5:::1;52789:17:::0;::::1;52767:19;:39:::0;52822:37:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;52686:181:::0;:::o;27517:28::-;;;-1:-1:-1;;;;;27517:28:0;;:::o;27607:40::-;;;-1:-1:-1;;;27607:40:0;;;;;:::o;50672:372::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;50803:4:::1;50793:6;:14;;50785:51;;;::::0;;-1:-1:-1;;;50785:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;50785:51:0;;;;;;;;;;;;;::::1;;50881:6;50865:12;50856:6;:21;:31;50848:80;;;;-1:-1:-1::0;;;50848:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50958:12;::::0;50949:21;;;::::1;50939:7;:31:::0;50981:7:::1;:16:::0;51008:13:::1;:28:::0;50672:372::o;49361:156::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;49415:23:::1;49441:24;49459:4;49441:9;:24::i;:::-;49415:50;;49476:33;49493:15;49476:16;:33::i;:::-;15921:1;49361:156::o:0;32742:333::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32825:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32824:21;32816:61;;;::::0;;-1:-1:-1;;;32816:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32891:16:0;::::1;32910:1;32891:16:::0;;;:7:::1;:16;::::0;;;;;:20;32888:108:::1;;-1:-1:-1::0;;;;;32967:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32947:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32928:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32888:108:::1;-1:-1:-1::0;;;;;33006:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33006:27:0::1;33029:4;33006:27:::0;;::::1;::::0;;;33044:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33044:23:0::1;::::0;;::::1;::::0;;32742:333::o;49699:125::-;-1:-1:-1;;;;;49789:27:0;49765:4;49789:27;;;:18;:27;;;;;;;;;49699:125::o;26704:32::-;;;;:::o;51650:196::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;51764:3:::1;51748:12;:19;;51740:55;;;::::0;;-1:-1:-1;;;51740:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51740:55:0;;;;;;;;;;;;;::::1;;51806:17;:32:::0;51650:196::o;26806:41::-;;;;:::o;52062:435::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;52210:4:::1;52195:11;:19;;52187:59;;;::::0;;-1:-1:-1;;;52187:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;52290:11;52280:6;52265:12;:21;:36;52257:94;;;;-1:-1:-1::0;;;52257:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52384:21:::0;;::::1;52362:19;:43:::0;52416:22:::1;:37:::0;;;;52464:16:::1;:25:::0;-1:-1:-1;52062:435:0:o;26143:32::-;;;;:::o;29752:198::-;-1:-1:-1;;;;;29842:20:0;;29818:7;29842:20;;;:11;:20;;;;;;;;29838:49;;;-1:-1:-1;;;;;;29871:16:0;;;;;;:7;:16;;;;;;29864:23;;29838:49;-1:-1:-1;;;;;29925:16:0;;;;;;:7;:16;;;;;;29905:37;;:19;:37::i;16282:148::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;16389:1:::1;16373:6:::0;;16352:40:::1;::::0;-1:-1:-1;;;;;16373:6:0;;::::1;::::0;16352:40:::1;::::0;16389:1;;16352:40:::1;16420:1;16403:19:::0;;-1:-1:-1;;;;;;16403:19:0::1;::::0;;16282:148::o;33845:540::-;33909:7;33947:21;33996:7;33909;34035:17;33996:7;34035:9;:17::i;:::-;34014:38;-1:-1:-1;34063:21:0;;34095:140;34119:9;:16;34115:20;;34095:140;;;34175:45;34203:16;34175:23;34185:9;34195:1;34185:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34185:12:0;34175:9;:23::i;:::-;:27;;:45::i;:::-;34156:64;-1:-1:-1;34137:3:0;;34095:140;;;-1:-1:-1;34314:13:0;;34245:15;;34263:89;;34292:59;;34334:16;;34292:37;;34304:24;;-1:-1:-1;;;;;34314:13:0;34304:9;:24::i;:::-;34292:7;;;:11;:37::i;:::-;:41;;:59::i;:::-;34263:24;:10;34278:8;34263:14;:24::i;:::-;:28;;:89::i;:::-;34245:107;33845:540;-1:-1:-1;;;;;;;33845:540:0:o;51854:200::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;51964:4:::1;51944:16;:24;;51936:67;;;::::0;;-1:-1:-1;;;51936:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;52014:13;:32:::0;51854:200::o;26589:38::-;;;;:::o;31277:120::-;-1:-1:-1;;;;;31369:20:0;31345:4;31369:20;;;:11;:20;;;;;;;;;31277:120::o;27055:54::-;;;;:::o;15639:79::-;15677:7;15704:6;-1:-1:-1;;;;;15704:6:0;15639:79;:::o;51454:188::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;51564:3:::1;51548:12;:19;;51540:55;;;::::0;;-1:-1:-1;;;51540:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51540:55:0;;;;;;;;;;;;;::::1;;51606:13;:28:::0;51454:188::o;29463:87::-;29535:7;29528:14;;;;;;;;-1:-1:-1;;29528:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29502:13;;29528:14;;29535:7;;29528:14;;29535:7;29528:14;;;;;;;;;;;;;;;;;;;;;;;;31000:269;31093:4;31110:129;31119:12;:10;:12::i;:::-;31133:7;31142:96;31181:15;31142:96;;;;;;;;;;;;;;;;;:11;:25;31154:12;:10;:12::i;:::-;-1:-1:-1;;;;;31142:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31142:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;29958:167::-;30036:4;30053:42;30063:12;:10;:12::i;:::-;30077:9;30088:6;30053:9;:42::i;25943:26::-;;;;:::o;27420:40::-;;;;:::o;52505:173::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;52584:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;52584:32:0;::::1;-1:-1:-1::0;;;;52584:32:0;;::::1;::::0;;;::::1;::::0;;;52632:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;52505:173:::0;:::o;26357:32::-;;;;:::o;50494:166::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;50590:3:::1;50580:6;:13;;50572:49;;;::::0;;-1:-1:-1;;;50572:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;50572:49:0;;;;;;;;;;;;;::::1;;50632:11;:20:::0;50494:166::o;50123:190::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;50216:1:::1;50204:8;:13;;50196:53;;;::::0;;-1:-1:-1;;;50196:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;50274:31;50300:4;50274:21;50286:8;50274:7;;:11;;:21;;;;:::i;:31::-;50260:11;:45:::0;-1:-1:-1;50123:190:0:o;31405:141::-;-1:-1:-1;;;;;31510:28:0;31483:7;31510:28;;;:20;:28;;;;;;;31405:141::o;30133:143::-;-1:-1:-1;;;;;30241:18:0;;;30214:7;30241:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30133:143::o;49961:112::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50030:27:0::1;50060:5;50030:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;50030:35:0::1;::::0;;49961:112::o;16585:244::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16674:22:0;::::1;16666:73;;;;-1:-1:-1::0;;;16666:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16776:6;::::0;;16755:38:::1;::::0;-1:-1:-1;;;;;16755:38:0;;::::1;::::0;16776:6;::::1;::::0;16755:38:::1;::::0;::::1;16804:6;:17:::0;;-1:-1:-1;;;;;;16804:17:0::1;-1:-1:-1::0;;;;;16804:17:0;;;::::1;::::0;;;::::1;::::0;;16585:244::o;49525:162::-;15861:12;:10;:12::i;:::-;15851:6;;-1:-1:-1;;;;;15851:6:0;;;:22;;;15843:67;;;;;-1:-1:-1;;;15843:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15843:67:0;;;;;;;;;;;;;;;49608:21:::1;49640:39;49608:21:::0;49640:19:::1;:39::i;5363:471::-:0;5421:7;5666:6;5662:47;;-1:-1:-1;5696:1:0;5689:8;;5662:47;5733:5;;;5737:1;5733;:5;:1;5757:5;;;;;:10;5749:56;;;;-1:-1:-1;;;5749:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5825:1;5363:471;-1:-1:-1;;;5363:471:0:o;6310:132::-;6368:7;6395:39;6399:1;6402;6395:39;;;;;;;;;;;;;;;;;:3;:39::i;93:106::-;181:10;93:106;:::o;33574:259::-;-1:-1:-1;;;;;33667:19:0;;33659:28;;;;;;-1:-1:-1;;;;;33706:21:0;;33698:30;;;;;;-1:-1:-1;;;;;33741:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33793:32;;;;;;;;;;;;;;;;;33574:259;;;:::o;34397:3423::-;-1:-1:-1;;;;;34519:18:0;;34511:68;;;;-1:-1:-1;;;34511:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34598:16:0;;34590:64;;;;-1:-1:-1;;;34590:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34682:1;34673:6;:10;34665:64;;;;-1:-1:-1;;;34665:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34769:26:0;;;;;;:20;:26;;;;;;;;34768:27;:69;;;;-1:-1:-1;;;;;;34813:24:0;;;;;;:20;:24;;;;;;;;34812:25;34768:69;34750:269;;;34920:11;;34910:6;:21;;34884:123;;;;-1:-1:-1;;;34884:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35092:7;;35134;;35182:13;;35235:12;;35288:13;;35336:7;;35374:13;;-1:-1:-1;;;;;35368:19:0;;;35374:13;;35368:19;35398:921;;;;35435:11;;35425:7;:21;35471:11;;35461:7;:21;35513:17;;35497:13;:33;35560:16;;35545:12;:31;35609:17;;35593:13;:33;35651:11;;35641:7;:21;35683;;35708:3;-1:-1:-1;35679:160:0;;35754:13;;35742:7;;:26;;:11;:26::i;:::-;35732:7;:36;35809:13;;35797:7;;:26;;:11;:26::i;:::-;35787:7;:36;35679:160;-1:-1:-1;;;;;35859:26:0;;;;;;:20;:26;;;;;;35889:3;-1:-1:-1;35859:33:0;;;:68;;-1:-1:-1;;;;;;35896:26:0;;;;;;:20;:26;;;;;;35926:1;35896:31;;35859:68;35855:344;;;35982:22;;35964:13;;:41;;:17;:41::i;:::-;35948:13;:57;36046:16;;36034:7;;:29;;:11;:29::i;:::-;36024:7;:39;36104:16;;36092:7;;:29;;:11;:29::i;:::-;36082:7;:39;-1:-1:-1;;;;;36142:26:0;;;;;;:20;:26;;;;;36171:1;36142:30;;35855:344;35398:921;;;-1:-1:-1;;;;;36220:24:0;;;;;;:20;:24;;;;;;36216:103;;-1:-1:-1;;;;;36266:24:0;;;;;;:20;:24;;;;;36299:8;36293:3;:14;36266:41;;36216:103;36613:28;36644:24;36662:4;36644:9;:24::i;:::-;36730:19;;36613:55;;-1:-1:-1;36706:43:0;;;;;;;36778:53;;-1:-1:-1;36815:16:0;;-1:-1:-1;;;36815:16:0;;;;36814:17;36778:53;:91;;;;-1:-1:-1;36856:13:0;;-1:-1:-1;;;;;36848:21:0;;;36856:13;;36848:21;;36778:91;:129;;;;-1:-1:-1;36886:21:0;;-1:-1:-1;;;36886:21:0;;;;36778:129;36760:353;;;36964:20;37001;36987:11;;:34;:71;;37047:11;;36987:71;;;37024:20;36987:71;36964:94;;37073:28;37088:12;37073:14;:28::i;:::-;36760:353;;-1:-1:-1;;;;;37323:24:0;;37195:12;37323:24;;;:18;:24;;;;;;37210:4;;37323:24;;;:50;;-1:-1:-1;;;;;;37351:22:0;;;;;;:18;:22;;;;;;;;37323:50;37320:96;;;-1:-1:-1;37399:5:0;37320:96;37506:41;37521:4;37527:2;37531:6;37539:7;37506:14;:41::i;:::-;-1:-1:-1;;;37585:7:0;:23;;;;37619:7;:23;;;;37653:13;:35;;;;37699:12;:33;37743:13;:35;37789:7;:23;-1:-1:-1;;;;34397:3423:0:o;4912:192::-;4998:7;5034:12;5026:6;;;;5018:29;;;;-1:-1:-1;;;5018:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5070:5:0;;;4912:192::o;46622:163::-;46663:7;46684:15;46701;46720:19;:17;:19::i;:::-;46683:56;;-1:-1:-1;46683:56:0;-1:-1:-1;46757:20:0;46683:56;;46757:11;:20::i;:::-;46750:27;;;;46622:163;:::o;4009:181::-;4067:7;4099:5;;;4123:6;;;;4115:46;;;;;-1:-1:-1;;;4115:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;45239:454;45298:7;45307;45316;45325;45334;45343;45352;45373:23;45398:12;45412;45426:18;45448:20;45460:7;45448:11;:20::i;:::-;45372:96;;;;;;;;45480:15;45497:23;45522:12;45538:56;45550:7;45559:4;45565;45571:10;45583;:8;:10::i;:::-;45538:11;:56::i;:::-;45479:115;;-1:-1:-1;45479:115:0;-1:-1:-1;45479:115:0;-1:-1:-1;45645:15:0;;-1:-1:-1;45662:4:0;;-1:-1:-1;45668:4:0;;-1:-1:-1;45674:10:0;-1:-1:-1;;;;45239:454:0;;;;;;;;;:::o;4473:136::-;4531:7;4558:43;4562:1;4565;4558:43;;;;;;;;;;;;;;;;;:3;:43::i;40436:589::-;40586:16;;;40600:1;40586:16;;;40562:21;40586:16;;;;;40562:21;40586:16;;;;;;;;;;-1:-1:-1;40586:16:0;40562:40;;40631:4;40613;40618:1;40613:7;;;;;;;;-1:-1:-1;;;;;40613:23:0;;;:7;;;;;;;;;;:23;;;;40657:15;;:22;;;-1:-1:-1;;;40657:22:0;;;;:15;;;;;:20;;:22;;;;;40613:7;;40657:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40657:22:0;40647:7;;:4;;40652:1;;40647:7;;;;;;-1:-1:-1;;;;;40647:32:0;;;:7;;;;;;;;;:32;40724:15;;40692:62;;40709:4;;40724:15;40742:11;40692:8;:62::i;:::-;40793:15;;:224;;-1:-1:-1;;;40793:224:0;;;;;;;;:15;:224;;;;;;40971:4;40793:224;;;;;;40991:15;40793:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40793:15:0;;;;:66;;40874:11;;40944:4;;40971;40991:15;40793:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40436:589;;:::o;39875:553::-;39952:1;39943:6;:10;:25;;;;;39967:1;39957:7;;:11;39943:25;39939:482;;;39985:16;40004:32;40028:7;;40004:19;40015:7;;40004:6;:10;;:19;;;;:::i;:32::-;39985:51;;40051:22;40076:38;40106:7;;40076:25;40087:13;;40076:6;:10;;:25;;;;:::i;:38::-;40051:63;;40129:21;40153:37;40182:7;;40153:24;40164:12;;40153:6;:10;;:24;;;;:::i;:37::-;40129:61;-1:-1:-1;40209:12:0;;40205:47;;40223:10;;:29;;-1:-1:-1;;;;;40223:10:0;;;;:29;;;;;40243:8;;40223:10;:29;:10;:29;40243:8;40223:10;:29;;;;;;;;;;;;;;;;;;;;;40205:47;40271:18;;40267:65;;40291:16;;:41;;-1:-1:-1;;;;;40291:16:0;;;;:41;;;;;40317:14;;40291:16;:41;:16;:41;40317:14;40291:16;:41;;;;;;;;;;;;;;;;;;;;;40267:65;40351:17;;40347:62;;40370:15;;:39;;-1:-1:-1;;;;;40370:15:0;;;;:39;;;;;40395:13;;40370:15;:39;:15;:39;40395:13;40370:15;:39;;;;;;;;;;;;;;;;;;;;;40347:62;39939:482;;;39875:553;:::o;6938:278::-;7024:7;7059:12;7052:5;7044:28;;;;-1:-1:-1;;;7044:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7083:9;7099:1;7095;:5;;;;;;;6938:278;-1:-1:-1;;;;;6938:278:0:o;37832:2030::-;28014:16;:23;;-1:-1:-1;;;;28014:23:0;-1:-1:-1;;;28014:23:0;;;38019:13:::1;::::0;38007:7:::1;::::0;28014:23;;38007:26:::1;::::0;:7;:11:::1;:26::i;:::-;37975:58:::0;-1:-1:-1;38050:26:0;38046:39:::1;;38078:7;;;38046:39;38095:29;38127:66;38171:21;38127:39;38152:13;;38127:20;:24;;:39;;;;:::i;:66::-;38095:98;;38204:23;38230:60;38268:21;38230:33;38255:7;;38230:20;:24;;:33;;;;:::i;:60::-;38204:86:::0;-1:-1:-1;38363:21:0::1;38387:28;:21:::0;38413:1:::1;38387:25;:28::i;:::-;38363:52:::0;-1:-1:-1;38721:21:0::1;38767:26:::0;;:50;::::1;;;-1:-1:-1::0;38797:20:0;;38767:50:::1;38763:63;;;38819:7;;;;;;;38763:63;38878:52;38895:34;:15:::0;38915:13;38895:19:::1;:34::i;:::-;38878:16;:52::i;:::-;38951:18;38972:41;:21;38998:14:::0;38972:25:::1;:41::i;:::-;38951:62:::0;-1:-1:-1;39037:14:0;;39034:821:::1;;39140:27;39170:33;39182:20;39200:1;39182:13;;:17;;:20;;;;:::i;:::-;39170:7;::::0;;:11:::1;:33::i;:::-;39140:63;;39218:27;39248:61;39289:19;39248:36;39263:20;39281:1;39263:13;;:17;;:20;;;;:::i;:::-;39248:10:::0;;:14:::1;:36::i;:61::-;39218:91;;39324:21;39348:48;39376:19;39348:23;39363:7;;39348:10;:14;;:23;;;;:::i;:48::-;39324:72;;39512:48;39525:13;39540:19;39512:12;:48::i;:::-;39703:34;39723:13;39703:19;:34::i;:::-;39771:72;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;39034:821;;;;28049:1;;;;;;;-1:-1:-1::0;28061:16:0;:24;;-1:-1:-1;;;;28061:24:0;;;37832:2030::o;41732:860::-;41843:7;41839:54;;41867:14;:12;:14::i;:::-;-1:-1:-1;;;;;41917:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41941:22:0;;;;;;:11;:22;;;;;;;;41940:23;41917:46;41913:597;;;41980:48;42002:6;42010:9;42021:6;41980:21;:48::i;:::-;41913:597;;;-1:-1:-1;;;;;42051:19:0;;;;;;:11;:19;;;;;;;;42050:20;:46;;;;-1:-1:-1;;;;;;42074:22:0;;;;;;:11;:22;;;;;;;;42050:46;42046:464;;;42113:46;42133:6;42141:9;42152:6;42113:19;:46::i;42046:464::-;-1:-1:-1;;;;;42182:19:0;;;;;;:11;:19;;;;;;;;42181:20;:47;;;;-1:-1:-1;;;;;;42206:22:0;;;;;;:11;:22;;;;;;;;42205:23;42181:47;42177:333;;;42245:44;42263:6;42271:9;42282:6;42245:17;:44::i;42177:333::-;-1:-1:-1;;;;;42311:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42334:22:0;;;;;;:11;:22;;;;;;;;42311:45;42307:203;;;42373:48;42395:6;42403:9;42414:6;42373:21;:48::i;42307:203::-;42454:44;42472:6;42480:9;42491:6;42454:17;:44::i;:::-;42534:7;42530:55;;42558:15;:13;:15::i;46793:561::-;46890:7;;46926;;46843;;;;;46950:289;46974:9;:16;46970:20;;46950:289;;;47040:7;47016;:21;47024:9;47034:1;47024:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47024:12:0;47016:21;;;;;;;;;;;;;:31;;:66;;;47075:7;47051;:21;47059:9;47069:1;47059:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47059:12:0;47051:21;;;;;;;;;;;;;:31;47016:66;47012:97;;;47092:7;;47101;;47084:25;;;;;;;;;47012:97;47134:34;47146:7;:21;47154:9;47164:1;47154:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47154:12:0;47146:21;;;;;;;;;;;;;47134:7;;:11;:34::i;:::-;47124:44;;47193:34;47205:7;:21;47213:9;47223:1;47213:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47213:12:0;47205:21;;;;;;;;;;;;;47193:7;;:11;:34::i;:::-;47183:44;-1:-1:-1;46992:3:0;;46950:289;;;-1:-1:-1;47275:7:0;;47263;;:20;;:11;:20::i;:::-;47253:7;:30;47249:61;;;47293:7;;47302;;47285:25;;;;;;;;47249:61;47329:7;;-1:-1:-1;47338:7:0;-1:-1:-1;46793:561:0;;;:::o;45701:405::-;45761:7;45770;45779;45788;45808:12;45823:24;45839:7;45823:15;:24::i;:::-;45808:39;;45858:12;45873:24;45889:7;45873:15;:24::i;:::-;45858:39;;45908:18;45929:30;45951:7;45929:21;:30::i;:::-;45908:51;-1:-1:-1;45970:23:0;45996:43;45908:51;45996:27;46018:4;45996:27;:7;46008:4;45996:11;:17::i;:43::-;45970:69;46075:4;;-1:-1:-1;46081:4:0;;-1:-1:-1;46081:4:0;-1:-1:-1;45701:405:0;;-1:-1:-1;;;45701:405:0:o;46114:500::-;46243:7;;;;46299:24;:7;46311:11;46299;:24::i;:::-;46281:42;-1:-1:-1;46334:12:0;46349:21;:4;46358:11;46349:8;:21::i;:::-;46334:36;-1:-1:-1;46381:12:0;46396:21;:4;46405:11;46396:8;:21::i;:::-;46381:36;-1:-1:-1;46428:18:0;46449:27;:10;46464:11;46449:14;:27::i;:::-;46428:48;-1:-1:-1;46487:23:0;46513:43;46428:48;46513:27;46535:4;46513:27;:7;46525:4;46513:11;:17::i;:43::-;46575:7;;;;-1:-1:-1;46601:4:0;;-1:-1:-1;46114:500:0;;-1:-1:-1;;;;;;;;;46114:500:0:o;41033:618::-;41132:1;41118:11;:15;:32;;;;;41149:1;41137:9;:13;41118:32;41114:530;;;41270:15;;41238:62;;41255:4;;-1:-1:-1;;;;;41270:15:0;41288:11;41238:8;:62::i;:::-;41351:15;;-1:-1:-1;;;;;41351:15:0;:31;41390:9;41428:4;41452:11;41351:15;;41576:7;:5;:7::i;:::-;41602:15;41351:281;;;;;;;;;;;;;-1:-1:-1;;;;;41351:281:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41351:281:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48520:546;48566:7;;:12;:28;;;;-1:-1:-1;48582:7:0;;:12;48566:28;:50;;;;-1:-1:-1;48598:13:0;;:18;48566:50;:72;;;;-1:-1:-1;48620:13:0;;:18;48566:72;:100;;;;-1:-1:-1;48642:19:0;;:24;48566:100;48563:112;;;48668:7;;48563:112;48713:7;;;48695:15;:25;48749:7;;;48731:15;:25;48791:13;;;48767:21;:37;48840:13;;;48815:22;:38;48895:19;;;48864:28;:50;-1:-1:-1;48935:11:0;;;;48957;;;;48979:17;;;;49007;;;49035:23;48520:546;:::o;43782:605::-;43885:15;43902:23;43927:12;43941:23;43966:12;43980;43994:18;44016:19;44027:7;44016:10;:19::i;:::-;43884:151;;;;;;;;;;;;;;44064:28;44084:7;44064;:15;44072:6;-1:-1:-1;;;;;44064:15:0;-1:-1:-1;;;;;44064:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;44046:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44121:7;:15;;;;:28;;44141:7;44121:19;:28::i;:::-;-1:-1:-1;;;;;44103:15:0;;;;;;;:7;:15;;;;;;:46;;;;44181:18;;;;;;;:39;;44204:15;44181:22;:39::i;:::-;-1:-1:-1;;;;;44160:18:0;;;;;;:7;:18;;;;;:60;44234:26;44249:10;44234:14;:26::i;:::-;44271:14;44280:4;44271:8;:14::i;:::-;44296:23;44308:4;44314;44296:11;:23::i;:::-;44352:9;-1:-1:-1;;;;;44335:44:0;44344:6;-1:-1:-1;;;;;44335:44:0;;44363:15;44335:44;;;;;;;;;;;;;;;;;;43782:605;;;;;;;;;;:::o;43149:625::-;43250:15;43267:23;43292:12;43306:23;43331:12;43345;43359:18;43381:19;43392:7;43381:10;:19::i;:::-;43249:151;;;;;;;;;;;;;;43429:28;43449:7;43429;:15;43437:6;-1:-1:-1;;;;;43429:15:0;-1:-1:-1;;;;;43429:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;43411:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43489:18;;;;;:7;:18;;;;;:39;;43512:15;43489:22;:39::i;:::-;-1:-1:-1;;;;;43468:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43560:7;:18;;;;:39;;43583:15;43560:22;:39::i;42600:541::-;42699:15;42716:23;42741:12;42755:23;42780:12;42794;42808:18;42830:19;42841:7;42830:10;:19::i;:::-;42698:151;;;;;;;;;;;;;;42878:28;42898:7;42878;:15;42886:6;-1:-1:-1;;;;;42878:15:0;-1:-1:-1;;;;;42878:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;44395:681::-;44498:15;44515:23;44540:12;44554:23;44579:12;44593;44607:18;44629:19;44640:7;44629:10;:19::i;:::-;44497:151;;;;;;;;;;;;;;44677:28;44697:7;44677;:15;44685:6;-1:-1:-1;;;;;44677:15:0;-1:-1:-1;;;;;44677:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;44659:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44734:7;:15;;;;:28;;44754:7;44734:19;:28::i;49078:271::-;49132:15;;49122:7;:25;49168:15;;49158:7;:25;49210:21;;49194:13;:37;49258:22;;49242:13;:38;49313:28;;49291:19;:50;49078:271::o;48090:130::-;48154:7;48181:31;48206:5;48181:20;48193:7;;48181;:11;;:20;;;;:::i;48228:130::-;48292:7;48319:31;48344:5;48319:20;48331:7;;48319;:11;;:20;;;;:::i;48366:142::-;48436:7;48463:37;48494:5;48463:26;48475:13;;48463:7;:11;;:26;;;;:::i;47366:368::-;47429:19;47452:10;:8;:10::i;:::-;47429:33;-1:-1:-1;47473:18:0;47494:27;:10;47429:33;47494:14;:27::i;:::-;47573:4;47557:22;;;;:7;:22;;;;;;47473:48;;-1:-1:-1;47557:38:0;;47473:48;47557:26;:38::i;:::-;47548:4;47532:22;;;;:7;:22;;;;;;;;:63;;;;47609:11;:26;;;;;;47606:121;;;47693:4;47677:22;;;;:7;:22;;;;;;:38;;47704:10;47677:26;:38::i;:::-;47668:4;47652:22;;;;:7;:22;;;;;:63;47606:121;47366:368;;;:::o;45084:147::-;45162:7;;:17;;45174:4;45162:11;:17::i;:::-;45152:7;:27;45203:10;;:20;;45218:4;45203:14;:20::i;:::-;45190:10;:33;-1:-1:-1;;45084:147:0:o

Swarm Source

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