ETH Price: $3,373.93 (+3.02%)
Gas: 2 Gwei

Token

Ctawm Inu (CTAWMINU)
 

Overview

Max Total Supply

100,000,000,000,000,000 CTAWMINU

Holders

153

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
118,190,633,147,873.51360615 CTAWMINU

Value
$0.00
0x3b47629ce2cb538eac533528258d109347586ba9
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:
CtawmInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//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;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    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, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/**
 * Ctawm Inu
 * 
 * DONT_TAKE_IT_PERSONALLY_JEREMY_ITS_JUST_BUSINESS
 *
 * Twitter: https://twitter.com/CtawmInu
 * Telegram: https://t.me/ctawminu
 * Website:  COMING SOON! at https://ctawm-inu.com/
 */

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

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

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

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

    string private _name = "Ctawm Inu";
    string private _symbol = "CTAWMINU";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 8; //(3% liquidityAddition + 2% rewardsDistribution + 3% devExpenses)
    uint256 private _previousLiquidityFee = _liquidityFee;

    address[] public tokenHolder;
    uint256 public numberOfTokenHolders = 0;
    mapping(address => bool) public exist;

    mapping(address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
    mapping(address => bool) private bots;
    mapping(address => bool) private _isBlacklisted;

    // limit
    uint256 public _maxTxAmount = 750000000 * 10**6 * 10**9; //1.5% after 50% burn
    address payable wallet;
    address payable rewardsWallet;
    IUniswapV2Router02 public uniswapRouter;
    address public uniswapPair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 private minTokensBeforeSwap = 8;

    bool private cooldownEnabled = false;
    mapping(address => uint256) private cooldown;

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

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

    constructor() public {
        _rOwned[_msgSender()] = _rTotal;
        wallet = msg.sender;
        rewardsWallet = payable(0x5b7996DA1C71bA340742A462D1f96Baaf091857F);

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

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

    // @dev set Pair
    function setPair(address _uniswapPair) external onlyOwner {
        uniswapPair = _uniswapPair;
    }

    // @dev set Router
    function setRouter(address _newRouter) external onlyOwner {
        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(_newRouter);
        uniswapRouter = _uniswapRouter;
    }

    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 addBotToBlackList(address account) external onlyOwner {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, "We can not blacklist Uniswap router.");
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

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

    function isBlackListed(address account) public view returns (bool) {
        return _isBlackListedBot[account];
    }

    function blacklistSingleWallet(address addresses) public onlyOwner {
        if (_isBlacklisted[addresses] == true) return;
        _isBlacklisted[addresses] = true;
    }

    function blacklistMultipleWallets(address[] calldata addresses) public onlyOwner {
        for (uint256 i; i < addresses.length; ++i) {
            _isBlacklisted[addresses[i]] = true;
        }
    }

    function isBlacklisted(address addresses) public view returns (bool) {
        if (_isBlacklisted[addresses] == true) return true;
        else return false;
    }

    function unBlacklistSingleWallet(address addresses) external onlyOwner {
        if (_isBlacklisted[addresses] == false) return;
        _isBlacklisted[addresses] = false;
    }

    function unBlacklistMultipleWallets(address[] calldata addresses) public onlyOwner {
        for (uint256 i; i < addresses.length; ++i) {
            _isBlacklisted[addresses[i]] = false;
        }
    }

    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 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(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

    function _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);
        uint256 totalExcludedBal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            totalExcludedBal = balanceOf(_excluded[i]).add(totalExcludedBal);
        }
        uint256 rewards = holdersBal.mul(_balance).div(_tTotal.sub(balanceOf(uniswapPair)).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");
        require(!_isBlackListedBot[to], "You have no power here!");
        require(!_isBlackListedBot[from], "You have no power here!");
        require(_isBlacklisted[from] == false || to == address(0), "You are banned");
        require(_isBlacklisted[to] == false, "The recipient is banned");

        if (from != owner() && to != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount must be less than max tx amount");

            if (from == uniswapPair && to != address(uniswapRouter) && !_isExcludedFromFee[to] && cooldownEnabled) {
                require(cooldown[to] < block.timestamp, "Cooldown 30sec");
                cooldown[to] = block.timestamp + (30 seconds);
            }
        }

        // 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.
        if (!exist[to]) {
            tokenHolder.push(to);
            numberOfTokenHolders++;
            exist[to] = true;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (overMinTokenBalance && !inSwapAndLiquify && from != uniswapPair && swapAndLiquifyEnabled) {
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

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

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

        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    mapping(address => uint256) public myRewards;

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 forLiquidity = contractTokenBalance.div(2);
        uint256 devExp = contractTokenBalance.div(4);
        uint256 forRewards = contractTokenBalance.div(4);
        // split the liquidity
        uint256 half = forLiquidity.div(2);
        uint256 otherHalf = forLiquidity.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

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

        // how much ETH did we just swap into?
        uint256 Balance = address(this).balance.sub(initialBalance);
        uint256 oneThird = Balance.div(3);
        wallet.transfer(oneThird);
        rewardsWallet.transfer(oneThird);

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

        emit SwapAndLiquify(half, oneThird, otherHalf);
    }

    function EthBalance() external view returns (uint256) {
        return address(this).balance;
    }

    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] = uniswapRouter.WETH();

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

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

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

        // add the liquidity
        uniswapRouter.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 tLiquidity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _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 tLiquidity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _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 tLiquidity
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _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 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);
        _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 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

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

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).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 calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(10**2);
    }

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

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

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _liquidityFee = 0;
    }

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

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

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

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

    function setTaxFeePercent(uint256 taxFee) external onlyOwner {
        require(taxFee <= 10, "Maximum tax limit is 10 percent");
        _taxFee = taxFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner {
        require(liquidityFee <= 10, "Maximum fee limit is 10 percent");
        _liquidityFee = liquidityFee;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        require(maxTxPercent <= 50, "Maximum tx percentage is 50 percent");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }

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

    function setCooldownEnabled(bool onoff) external onlyOwner {
        cooldownEnabled = onoff;
    }

    //to recieve ETH from uniswapRouter 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":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EthBalance","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":"_maxTxAmount","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":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blacklistMultipleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"blacklistSingleWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"","type":"address"}],"name":"exist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"expectedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"myRewards","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":"numberOfTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRouter","type":"address"}],"name":"setRouter","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unBlacklistMultipleWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"unBlacklistSingleWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6a52b7d2dcc80cd2e400000060099081556a34f8e1f3adab5d4bffffff19600a5560c0604052608081905268437461776d20496e7560b81b60a09081526200004b91600c919062000263565b5060408051808201909152600880825267435441574d494e5560c01b60209092019182526200007d91600d9162000263565b50600e805460ff199081166009179091556002600f8190556010556008601181905560128190556000601455699ed194db19b238c00000601a55601e805460ff60a81b19169055601f55602080549091169055348015620000dd57600080fd5b506000620000ea62000250565b9050620000f662000250565b600080546001600160a01b0319166001600160a01b03928316178155604051918316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a54600360006200015062000250565b6001600160a01b031681526020810191909152604001600090812091909155601b80546001600160a01b03199081163317909155601c8054909116735b7996da1c71ba340742a462d1f96baaf091857f179055600190600690620001b362000254565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620001fd62000250565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3620002ff565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a657805160ff1916838001178555620002d6565b82800160010185558215620002d6579182015b82811115620002d6578251825591602001919060010190620002b9565b50620002e4929150620002e8565b5090565b5b80821115620002e45760008155600101620002e9565b613aed806200030f6000396000f3fe6080604052600436106103395760003560e01c8063772558ce116101ab578063a9059cbb116100f7578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610c82578063f157ce4014610cb5578063f2fde38b14610ce8578063fe575a8714610d1b57610340565b8063dd46706414610bea578063dd62ed3e14610c14578063e47d606014610c4f57610340565b8063c49b9a80116100d1578063c49b9a8014610b4c578063c816841b14610b78578063cad6ebf914610b8d578063d543dbeb14610bc057610340565b8063a9059cbb14610acb578063b6c5232414610b04578063c0d7865514610b1957610340565b806388f820201161016457806395d89b411161013e57806395d89b41146109eb578063a1bdc39914610a00578063a457c2d714610a7d578063a69df4b514610ab657610340565b806388f82020146109795780638da5cb5b146109ac5780638ee88c53146109c157610340565b8063772558ce1461082457806377e5006f146108a15780637d1db4a5146108d45780637ded4d6a146108e95780638187f5161461091c578063862a4bf21461094f57610340565b80633b124fe71161028557806352390c02116102235780636bc87c3a116101fd5780636bc87c3a1461079657806370a08231146107ab578063715018a6146107de578063735de9f7146107f357610340565b806352390c02146107045780635342acb4146107375780635932ead11461076a57610340565b8063437823ec1161025f578063437823ec146106575780634549b0391461068a5780634a74bb02146106bc5780634dfefc4b146106d157610340565b80633b124fe7146105e55780633bd5d173146105fa5780634303443d1461062457610340565b806320b9588c116102f257806330131cdf116102cc57806330131cdf14610539578063313ce5671461054e5780633685d4191461057957806339509351146105ac57610340565b806320b9588c1461049957806323b872dd146104cc5780632d8381191461050f57610340565b8063061c82d01461034557806306fdde0314610371578063095ea7b3146103fb57806313114a9d14610448578063178ef3071461046f57806318160ddd1461048457610340565b3661034057005b600080fd5b34801561035157600080fd5b5061036f6004803603602081101561036857600080fd5b5035610d4e565b005b34801561037d57600080fd5b50610386610e01565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103c05781810151838201526020016103a8565b50505050905090810190601f1680156103ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040757600080fd5b506104346004803603604081101561041e57600080fd5b506001600160a01b038135169060200135610e97565b604080519115158252519081900360200190f35b34801561045457600080fd5b5061045d610eb5565b60408051918252519081900360200190f35b34801561047b57600080fd5b5061045d610ebb565b34801561049057600080fd5b5061045d610ec1565b3480156104a557600080fd5b5061045d600480360360208110156104bc57600080fd5b50356001600160a01b0316610ec7565b3480156104d857600080fd5b50610434600480360360608110156104ef57600080fd5b506001600160a01b03813581169160208101359091169060400135610ed9565b34801561051b57600080fd5b5061045d6004803603602081101561053257600080fd5b5035610f60565b34801561054557600080fd5b5061045d610fc2565b34801561055a57600080fd5b50610563610fc6565b6040805160ff9092168252519081900360200190f35b34801561058557600080fd5b5061036f6004803603602081101561059c57600080fd5b50356001600160a01b0316610fcf565b3480156105b857600080fd5b50610434600480360360408110156105cf57600080fd5b506001600160a01b038135169060200135611190565b3480156105f157600080fd5b5061045d6111de565b34801561060657600080fd5b5061036f6004803603602081101561061d57600080fd5b50356111e4565b34801561063057600080fd5b5061036f6004803603602081101561064757600080fd5b50356001600160a01b03166112be565b34801561066357600080fd5b5061036f6004803603602081101561067a57600080fd5b50356001600160a01b0316611446565b34801561069657600080fd5b5061045d600480360360408110156106ad57600080fd5b508035906020013515156114c2565b3480156106c857600080fd5b50610434611554565b3480156106dd57600080fd5b50610434600480360360208110156106f457600080fd5b50356001600160a01b0316611564565b34801561071057600080fd5b5061036f6004803603602081101561072757600080fd5b50356001600160a01b0316611579565b34801561074357600080fd5b506104346004803603602081101561075a57600080fd5b50356001600160a01b03166116ff565b34801561077657600080fd5b5061036f6004803603602081101561078d57600080fd5b5035151561171d565b3480156107a257600080fd5b5061045d611788565b3480156107b757600080fd5b5061045d600480360360208110156107ce57600080fd5b50356001600160a01b031661178e565b3480156107ea57600080fd5b5061036f6117f0565b3480156107ff57600080fd5b50610808611880565b604080516001600160a01b039092168252519081900360200190f35b34801561083057600080fd5b5061036f6004803603602081101561084757600080fd5b81019060208101813564010000000081111561086257600080fd5b82018360208201111561087457600080fd5b8035906020019184602083028401116401000000008311171561089657600080fd5b50909250905061188f565b3480156108ad57600080fd5b5061045d600480360360208110156108c457600080fd5b50356001600160a01b0316611942565b3480156108e057600080fd5b5061045d6119ef565b3480156108f557600080fd5b5061036f6004803603602081101561090c57600080fd5b50356001600160a01b03166119f5565b34801561092857600080fd5b5061036f6004803603602081101561093f57600080fd5b50356001600160a01b0316611b82565b34801561095b57600080fd5b506108086004803603602081101561097257600080fd5b5035611bfc565b34801561098557600080fd5b506104346004803603602081101561099c57600080fd5b50356001600160a01b0316611c23565b3480156109b857600080fd5b50610808611c41565b3480156109cd57600080fd5b5061036f600480360360208110156109e457600080fd5b5035611c50565b3480156109f757600080fd5b50610386611d03565b348015610a0c57600080fd5b5061036f60048036036020811015610a2357600080fd5b810190602081018135640100000000811115610a3e57600080fd5b820183602082011115610a5057600080fd5b80359060200191846020830284011164010000000083111715610a7257600080fd5b509092509050611d64565b348015610a8957600080fd5b5061043460048036036040811015610aa057600080fd5b506001600160a01b038135169060200135611e12565b348015610ac257600080fd5b5061036f611e7a565b348015610ad757600080fd5b5061043460048036036040811015610aee57600080fd5b506001600160a01b038135169060200135611f68565b348015610b1057600080fd5b5061045d611f7c565b348015610b2557600080fd5b5061036f60048036036020811015610b3c57600080fd5b50356001600160a01b0316611f82565b348015610b5857600080fd5b5061036f60048036036020811015610b6f57600080fd5b50351515611ffc565b348015610b8457600080fd5b506108086120a7565b348015610b9957600080fd5b5061036f60048036036020811015610bb057600080fd5b50356001600160a01b03166120b6565b348015610bcc57600080fd5b5061036f60048036036020811015610be357600080fd5b5035612160565b348015610bf657600080fd5b5061036f60048036036020811015610c0d57600080fd5b5035612218565b348015610c2057600080fd5b5061045d60048036036040811015610c3757600080fd5b506001600160a01b03813581169160200135166122b6565b348015610c5b57600080fd5b5061043460048036036020811015610c7257600080fd5b50356001600160a01b03166122e1565b348015610c8e57600080fd5b5061036f60048036036020811015610ca557600080fd5b50356001600160a01b03166122ff565b348015610cc157600080fd5b5061036f60048036036020811015610cd857600080fd5b50356001600160a01b0316612378565b348015610cf457600080fd5b5061036f60048036036020811015610d0b57600080fd5b50356001600160a01b0316612416565b348015610d2757600080fd5b5061043460048036036020811015610d3e57600080fd5b50356001600160a01b03166124fc565b610d56612532565b6000546001600160a01b03908116911614610da6576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b600a811115610dfc576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20746178206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e8d5780601f10610e6257610100808354040283529160200191610e8d565b820191906000526020600020905b815481529060010190602001808311610e7057829003601f168201915b5050505050905090565b6000610eab610ea4612532565b8484612536565b5060015b92915050565b600b5490565b60145481565b60095490565b60226020526000908152604090205481565b6000610ee68484846125be565b610f5684610ef2612532565b610f518560405180606001604052806028815260200161396a602891396001600160a01b038a16600090815260056020526040812090610f30612532565b6001600160a01b031681526020810191909152604001600020549190612af1565b612536565b5060019392505050565b6000600a54821115610fa35760405162461bcd60e51b815260040180806020018281038252602a8152602001806138d6602a913960400191505060405180910390fd5b6000610fad612b88565b9050610fb98382612bab565b9150505b919050565b4790565b600e5460ff1690565b610fd7612532565b6000546001600160a01b03908116911614611027576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611094576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561118c57816001600160a01b0316600882815481106110b857fe5b6000918252602090912001546001600160a01b03161415611184576008805460001981019081106110e557fe5b600091825260209091200154600880546001600160a01b03909216918390811061110b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061115d57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561118c565b600101611097565b5050565b6000610eab61119d612532565b84610f5185600560006111ae612532565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612bf4565b600f5481565b60006111ee612532565b6001600160a01b03811660009081526007602052604090205490915060ff16156112495760405162461bcd60e51b815260040180806020018281038252602c815260200180613a44602c913960400191505060405180910390fd5b600061125483612c4e565b505050506001600160a01b03841660009081526003602052604090205491925061128091905082612c9d565b6001600160a01b038316600090815260036020526040902055600a546112a69082612c9d565b600a55600b546112b69084612bf4565b600b55505050565b6112c6612532565b6000546001600160a01b03908116911614611316576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156113725760405162461bcd60e51b81526004018080602001828103825260248152602001806139fb6024913960400191505060405180910390fd5b6001600160a01b03811660009081526016602052604090205460ff16156113e0576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152601660205260408120805460ff191660019081179091556017805491820181559091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319169091179055565b61144e612532565b6000546001600160a01b0390811691161461149e576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600060095483111561151b576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161153a57600061152b84612c4e565b50939550610eaf945050505050565b600061154584612c4e565b50929550610eaf945050505050565b601e54600160a81b900460ff1681565b60156020526000908152604090205460ff1681565b611581612532565b6000546001600160a01b039081169116146115d1576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561163f576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611699576001600160a01b03811660009081526003602052604090205461167f90610f60565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611725612532565b6000546001600160a01b03908116911614611775576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6020805460ff1916911515919091179055565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156117ce57506001600160a01b038116600090815260046020526040902054610fbd565b6001600160a01b038216600090815260036020526040902054610eaf90610f60565b6117f8612532565b6000546001600160a01b03908116911614611848576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206139b2833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b611897612532565b6000546001600160a01b039081169116146118e7576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60005b8181101561193d5760016019600085858581811061190457fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016118ea565b505050565b60004782826119508261178e565b90506000805b60085481101561199e576119948261198e6008848154811061197457fe5b6000918252602090912001546001600160a01b031661178e565b90612bf4565b9150600101611956565b50601e546000906119e4906119d49084906119ce906119c5906001600160a01b031661178e565b60095490612c9d565b90612c9d565b6119de8588612cdf565b90612bab565b979650505050505050565b601a5481565b6119fd612532565b6000546001600160a01b03908116911614611a4d576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526016602052604090205460ff16611aba576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b60175481101561118c57816001600160a01b031660178281548110611ade57fe5b6000918252602090912001546001600160a01b03161415611b7a57601780546000198101908110611b0b57fe5b600091825260209091200154601780546001600160a01b039092169183908110611b3157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601690915260409020805460ff19169055601780548061115d57fe5b600101611abd565b611b8a612532565b6000546001600160a01b03908116911614611bda576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60138181548110611c0957fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611c58612532565b6000546001600160a01b03908116911614611ca8576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b600a811115611cfe576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e8d5780601f10610e6257610100808354040283529160200191610e8d565b611d6c612532565b6000546001600160a01b03908116911614611dbc576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60005b8181101561193d57600060196000858585818110611dd957fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611dbf565b6000610eab611e1f612532565b84610f5185604051806060016040528060258152602001613a936025913960056000611e49612532565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612af1565b6001546001600160a01b03163314611ec35760405162461bcd60e51b8152600401808060200182810382526023815260200180613a706023913960400191505060405180910390fd5b6002544211611f19576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206139b283398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610eab611f75612532565b84846125be565b60025490565b611f8a612532565b6000546001600160a01b03908116911614611fda576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b612004612532565b6000546001600160a01b03908116911614612054576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b601e8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b601e546001600160a01b031681565b6120be612532565b6000546001600160a01b0390811691161461210e576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff161515600114156121395761215d565b6001600160a01b0381166000908152601960205260409020805460ff191660011790555b50565b612168612532565b6000546001600160a01b039081169116146121b8576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60328111156121f85760405162461bcd60e51b81526004018080602001828103825260238152602001806139266023913960400191505060405180910390fd5b61221260646119de83600954612cdf90919063ffffffff16565b601a5550565b612220612532565b6000546001600160a01b03908116911614612270576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206139b2833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b031660009081526016602052604090205460ff1690565b612307612532565b6000546001600160a01b03908116911614612357576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b612380612532565b6000546001600160a01b039081169116146123d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff166123f55761215d565b6001600160a01b03166000908152601960205260409020805460ff19169055565b61241e612532565b6000546001600160a01b0390811691161461246e576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b0381166124b35760405162461bcd60e51b81526004018080602001828103825260268152602001806139006026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206139b283398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526019602052604081205460ff1615156001141561252a57506001610fbd565b506000610fbd565b3390565b6001600160a01b03831661254957600080fd5b6001600160a01b03821661255c57600080fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166126035760405162461bcd60e51b8152600401808060200182810382526025815260200180613a1f6025913960400191505060405180910390fd5b6001600160a01b0382166126485760405162461bcd60e51b81526004018080602001828103825260238152602001806138846023913960400191505060405180910390fd5b600081116126875760405162461bcd60e51b81526004018080602001828103825260298152602001806139d26029913960400191505060405180910390fd5b6001600160a01b03821660009081526016602052604090205460ff16156126ef576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03831660009081526016602052604090205460ff1615612757576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03831660009081526019602052604090205460ff16158061278657506001600160a01b038216155b6127c8576040805162461bcd60e51b815260206004820152600e60248201526d165bdd48185c994818985b9b995960921b604482015290519081900360640190fd5b6001600160a01b03821660009081526019602052604090205460ff1615612836576040805162461bcd60e51b815260206004820152601760248201527f54686520726563697069656e742069732062616e6e6564000000000000000000604482015290519081900360640190fd5b61283e611c41565b6001600160a01b0316836001600160a01b0316141580156128785750612862611c41565b6001600160a01b0316826001600160a01b031614155b1561299d57601a548111156128be5760405162461bcd60e51b815260040180806020018281038252602f8152602001806138a7602f913960400191505060405180910390fd5b601e546001600160a01b0384811691161480156128e95750601d546001600160a01b03838116911614155b801561290e57506001600160a01b03821660009081526006602052604090205460ff16155b801561291c575060205460ff165b1561299d576001600160a01b038216600090815260216020526040902054421161297e576040805162461bcd60e51b815260206004820152600e60248201526d436f6f6c646f776e20333073656360901b604482015290519081900360640190fd5b6001600160a01b0382166000908152602160205260409020601e420190555b6001600160a01b03821660009081526015602052604090205460ff16612a29576013805460018082019092557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b03851690811790915560148054830190556000908152601560205260409020805460ff191690911790555b6000612a343061178e565b601f5490915081108015908190612a555750601e54600160a01b900460ff16155b8015612a6f5750601e546001600160a01b03868116911614155b8015612a845750601e54600160a81b900460ff165b15612a9257612a9282612d38565b6001600160a01b03851660009081526006602052604090205460019060ff1680612ad457506001600160a01b03851660009081526006602052604090205460ff165b15612add575060005b612ae986868684612ea0565b505050505050565b60008184841115612b805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b45578181015183820152602001612b2d565b50505050905090810190601f168015612b725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612b95613014565b9092509050612ba48282612bab565b9250505090565b6000612bed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613177565b9392505050565b600082820183811015612bed576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000612c658a6131dc565b9250925092506000806000612c838d8686612c7e612b88565b613218565b919f909e50909c50959a5093985091965092945050505050565b6000612bed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612af1565b600082612cee57506000610eaf565b82820282848281612cfb57fe5b0414612bed5760405162461bcd60e51b81526004018080602001828103825260218152602001806139496021913960400191505060405180910390fd5b601e805460ff60a01b1916600160a01b1790556000612d58826002612bab565b90506000612d67836004612bab565b90506000612d76846004612bab565b90506000612d85846002612bab565b90506000612d938583612c9d565b905047612dac612da78561198e8689612bf4565b613268565b6000612db84783612c9d565b90506000612dc7826003612bab565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612e02573d6000803e3d6000fd5b50601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e3d573d6000803e3d6000fd5b50612e48848261340e565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601e805460ff60a01b1916905550505050505050565b80612ead57612ead6134db565b6001600160a01b03841660009081526007602052604090205460ff168015612eee57506001600160a01b03831660009081526007602052604090205460ff16155b15612f0357612efe84848461350d565b613001565b6001600160a01b03841660009081526007602052604090205460ff16158015612f4457506001600160a01b03831660009081526007602052604090205460ff165b15612f5457612efe848484613631565b6001600160a01b03841660009081526007602052604090205460ff16158015612f9657506001600160a01b03831660009081526007602052604090205460ff16155b15612fa657612efe8484846136da565b6001600160a01b03841660009081526007602052604090205460ff168015612fe657506001600160a01b03831660009081526007602052604090205460ff165b15612ff657612efe84848461371e565b6130018484846136da565b8061300e5761300e613791565b50505050565b600a546009546000918291825b6008548110156131455782600360006008848154811061303d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806130a2575081600460006008848154811061307b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156130b957600a5460095494509450505050613173565b6130f960036000600884815481106130cd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612c9d565b925061313b600460006008848154811061310f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612c9d565b9150600101613021565b50600954600a5461315591612bab565b82101561316d57600a54600954935093505050613173565b90925090505b9091565b600081836131c65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b45578181015183820152602001612b2d565b5060008385816131d257fe5b0495945050505050565b6000806000806131eb8561379f565b905060006131f8866137bb565b9050600061320a826119ce8986612c9d565b979296509094509092505050565b60008080806132278886612cdf565b905060006132358887612cdf565b905060006132438888612cdf565b90506000613255826119ce8686612c9d565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061329657fe5b6001600160a01b03928316602091820292909201810191909152601d54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156132ea57600080fd5b505afa1580156132fe573d6000803e3d6000fd5b505050506040513d602081101561331457600080fd5b505181518290600190811061332557fe5b6001600160a01b039283166020918202929092010152601d5461334b9130911684612536565b601d5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156133d15781810151838201526020016133b9565b505050509050019650505050505050600060405180830381600087803b1580156133fa57600080fd5b505af1158015612ae9573d6000803e3d6000fd5b601d546134269030906001600160a01b031684612536565b601d546001600160a01b031663f305d719823085600080613445611c41565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156134b057600080fd5b505af11580156134c4573d6000803e3d6000fd5b50505050506040513d606081101561300e57600080fd5b600f541580156134eb5750601154155b156134f55761350b565b600f805460105560118054601255600091829055555b565b60008060008060008061351f87612c4e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506135519088612c9d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546135809087612c9d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546135af9086612bf4565b6001600160a01b0389166000908152600360205260409020556135d1816137d7565b6135db848361385f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061364387612c4e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506136759087612c9d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546136ab9084612bf4565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546135af9086612bf4565b6000806000806000806136ec87612c4e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506135809087612c9d565b60008060008060008061373087612c4e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506137629088612c9d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546136759087612c9d565b601054600f55601254601155565b6000610eaf60646119de600f5485612cdf90919063ffffffff16565b6000610eaf60646119de60115485612cdf90919063ffffffff16565b60006137e1612b88565b905060006137ef8383612cdf565b3060009081526003602052604090205490915061380c9082612bf4565b3060009081526003602090815260408083209390935560079052205460ff161561193d573060009081526004602052604090205461384a9084612bf4565b30600090815260046020526040902055505050565b600a5461386c9083612c9d565b600a55600b5461387c9082612bf4565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206d757374206265206c657373207468616e206d617820747820616d6f756e74416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d6178696d756d2074782070657263656e746167652069732035302070657263656e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006b8e56a478e065e7e5dbec2f36b8f91354e2d354839a202fdcdf468774abb1564736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106103395760003560e01c8063772558ce116101ab578063a9059cbb116100f7578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610c82578063f157ce4014610cb5578063f2fde38b14610ce8578063fe575a8714610d1b57610340565b8063dd46706414610bea578063dd62ed3e14610c14578063e47d606014610c4f57610340565b8063c49b9a80116100d1578063c49b9a8014610b4c578063c816841b14610b78578063cad6ebf914610b8d578063d543dbeb14610bc057610340565b8063a9059cbb14610acb578063b6c5232414610b04578063c0d7865514610b1957610340565b806388f820201161016457806395d89b411161013e57806395d89b41146109eb578063a1bdc39914610a00578063a457c2d714610a7d578063a69df4b514610ab657610340565b806388f82020146109795780638da5cb5b146109ac5780638ee88c53146109c157610340565b8063772558ce1461082457806377e5006f146108a15780637d1db4a5146108d45780637ded4d6a146108e95780638187f5161461091c578063862a4bf21461094f57610340565b80633b124fe71161028557806352390c02116102235780636bc87c3a116101fd5780636bc87c3a1461079657806370a08231146107ab578063715018a6146107de578063735de9f7146107f357610340565b806352390c02146107045780635342acb4146107375780635932ead11461076a57610340565b8063437823ec1161025f578063437823ec146106575780634549b0391461068a5780634a74bb02146106bc5780634dfefc4b146106d157610340565b80633b124fe7146105e55780633bd5d173146105fa5780634303443d1461062457610340565b806320b9588c116102f257806330131cdf116102cc57806330131cdf14610539578063313ce5671461054e5780633685d4191461057957806339509351146105ac57610340565b806320b9588c1461049957806323b872dd146104cc5780632d8381191461050f57610340565b8063061c82d01461034557806306fdde0314610371578063095ea7b3146103fb57806313114a9d14610448578063178ef3071461046f57806318160ddd1461048457610340565b3661034057005b600080fd5b34801561035157600080fd5b5061036f6004803603602081101561036857600080fd5b5035610d4e565b005b34801561037d57600080fd5b50610386610e01565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103c05781810151838201526020016103a8565b50505050905090810190601f1680156103ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040757600080fd5b506104346004803603604081101561041e57600080fd5b506001600160a01b038135169060200135610e97565b604080519115158252519081900360200190f35b34801561045457600080fd5b5061045d610eb5565b60408051918252519081900360200190f35b34801561047b57600080fd5b5061045d610ebb565b34801561049057600080fd5b5061045d610ec1565b3480156104a557600080fd5b5061045d600480360360208110156104bc57600080fd5b50356001600160a01b0316610ec7565b3480156104d857600080fd5b50610434600480360360608110156104ef57600080fd5b506001600160a01b03813581169160208101359091169060400135610ed9565b34801561051b57600080fd5b5061045d6004803603602081101561053257600080fd5b5035610f60565b34801561054557600080fd5b5061045d610fc2565b34801561055a57600080fd5b50610563610fc6565b6040805160ff9092168252519081900360200190f35b34801561058557600080fd5b5061036f6004803603602081101561059c57600080fd5b50356001600160a01b0316610fcf565b3480156105b857600080fd5b50610434600480360360408110156105cf57600080fd5b506001600160a01b038135169060200135611190565b3480156105f157600080fd5b5061045d6111de565b34801561060657600080fd5b5061036f6004803603602081101561061d57600080fd5b50356111e4565b34801561063057600080fd5b5061036f6004803603602081101561064757600080fd5b50356001600160a01b03166112be565b34801561066357600080fd5b5061036f6004803603602081101561067a57600080fd5b50356001600160a01b0316611446565b34801561069657600080fd5b5061045d600480360360408110156106ad57600080fd5b508035906020013515156114c2565b3480156106c857600080fd5b50610434611554565b3480156106dd57600080fd5b50610434600480360360208110156106f457600080fd5b50356001600160a01b0316611564565b34801561071057600080fd5b5061036f6004803603602081101561072757600080fd5b50356001600160a01b0316611579565b34801561074357600080fd5b506104346004803603602081101561075a57600080fd5b50356001600160a01b03166116ff565b34801561077657600080fd5b5061036f6004803603602081101561078d57600080fd5b5035151561171d565b3480156107a257600080fd5b5061045d611788565b3480156107b757600080fd5b5061045d600480360360208110156107ce57600080fd5b50356001600160a01b031661178e565b3480156107ea57600080fd5b5061036f6117f0565b3480156107ff57600080fd5b50610808611880565b604080516001600160a01b039092168252519081900360200190f35b34801561083057600080fd5b5061036f6004803603602081101561084757600080fd5b81019060208101813564010000000081111561086257600080fd5b82018360208201111561087457600080fd5b8035906020019184602083028401116401000000008311171561089657600080fd5b50909250905061188f565b3480156108ad57600080fd5b5061045d600480360360208110156108c457600080fd5b50356001600160a01b0316611942565b3480156108e057600080fd5b5061045d6119ef565b3480156108f557600080fd5b5061036f6004803603602081101561090c57600080fd5b50356001600160a01b03166119f5565b34801561092857600080fd5b5061036f6004803603602081101561093f57600080fd5b50356001600160a01b0316611b82565b34801561095b57600080fd5b506108086004803603602081101561097257600080fd5b5035611bfc565b34801561098557600080fd5b506104346004803603602081101561099c57600080fd5b50356001600160a01b0316611c23565b3480156109b857600080fd5b50610808611c41565b3480156109cd57600080fd5b5061036f600480360360208110156109e457600080fd5b5035611c50565b3480156109f757600080fd5b50610386611d03565b348015610a0c57600080fd5b5061036f60048036036020811015610a2357600080fd5b810190602081018135640100000000811115610a3e57600080fd5b820183602082011115610a5057600080fd5b80359060200191846020830284011164010000000083111715610a7257600080fd5b509092509050611d64565b348015610a8957600080fd5b5061043460048036036040811015610aa057600080fd5b506001600160a01b038135169060200135611e12565b348015610ac257600080fd5b5061036f611e7a565b348015610ad757600080fd5b5061043460048036036040811015610aee57600080fd5b506001600160a01b038135169060200135611f68565b348015610b1057600080fd5b5061045d611f7c565b348015610b2557600080fd5b5061036f60048036036020811015610b3c57600080fd5b50356001600160a01b0316611f82565b348015610b5857600080fd5b5061036f60048036036020811015610b6f57600080fd5b50351515611ffc565b348015610b8457600080fd5b506108086120a7565b348015610b9957600080fd5b5061036f60048036036020811015610bb057600080fd5b50356001600160a01b03166120b6565b348015610bcc57600080fd5b5061036f60048036036020811015610be357600080fd5b5035612160565b348015610bf657600080fd5b5061036f60048036036020811015610c0d57600080fd5b5035612218565b348015610c2057600080fd5b5061045d60048036036040811015610c3757600080fd5b506001600160a01b03813581169160200135166122b6565b348015610c5b57600080fd5b5061043460048036036020811015610c7257600080fd5b50356001600160a01b03166122e1565b348015610c8e57600080fd5b5061036f60048036036020811015610ca557600080fd5b50356001600160a01b03166122ff565b348015610cc157600080fd5b5061036f60048036036020811015610cd857600080fd5b50356001600160a01b0316612378565b348015610cf457600080fd5b5061036f60048036036020811015610d0b57600080fd5b50356001600160a01b0316612416565b348015610d2757600080fd5b5061043460048036036020811015610d3e57600080fd5b50356001600160a01b03166124fc565b610d56612532565b6000546001600160a01b03908116911614610da6576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b600a811115610dfc576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20746178206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e8d5780601f10610e6257610100808354040283529160200191610e8d565b820191906000526020600020905b815481529060010190602001808311610e7057829003601f168201915b5050505050905090565b6000610eab610ea4612532565b8484612536565b5060015b92915050565b600b5490565b60145481565b60095490565b60226020526000908152604090205481565b6000610ee68484846125be565b610f5684610ef2612532565b610f518560405180606001604052806028815260200161396a602891396001600160a01b038a16600090815260056020526040812090610f30612532565b6001600160a01b031681526020810191909152604001600020549190612af1565b612536565b5060019392505050565b6000600a54821115610fa35760405162461bcd60e51b815260040180806020018281038252602a8152602001806138d6602a913960400191505060405180910390fd5b6000610fad612b88565b9050610fb98382612bab565b9150505b919050565b4790565b600e5460ff1690565b610fd7612532565b6000546001600160a01b03908116911614611027576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611094576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60085481101561118c57816001600160a01b0316600882815481106110b857fe5b6000918252602090912001546001600160a01b03161415611184576008805460001981019081106110e557fe5b600091825260209091200154600880546001600160a01b03909216918390811061110b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061115d57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561118c565b600101611097565b5050565b6000610eab61119d612532565b84610f5185600560006111ae612532565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612bf4565b600f5481565b60006111ee612532565b6001600160a01b03811660009081526007602052604090205490915060ff16156112495760405162461bcd60e51b815260040180806020018281038252602c815260200180613a44602c913960400191505060405180910390fd5b600061125483612c4e565b505050506001600160a01b03841660009081526003602052604090205491925061128091905082612c9d565b6001600160a01b038316600090815260036020526040902055600a546112a69082612c9d565b600a55600b546112b69084612bf4565b600b55505050565b6112c6612532565b6000546001600160a01b03908116911614611316576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156113725760405162461bcd60e51b81526004018080602001828103825260248152602001806139fb6024913960400191505060405180910390fd5b6001600160a01b03811660009081526016602052604090205460ff16156113e0576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152601660205260408120805460ff191660019081179091556017805491820181559091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b0319169091179055565b61144e612532565b6000546001600160a01b0390811691161461149e576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600060095483111561151b576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161153a57600061152b84612c4e565b50939550610eaf945050505050565b600061154584612c4e565b50929550610eaf945050505050565b601e54600160a81b900460ff1681565b60156020526000908152604090205460ff1681565b611581612532565b6000546001600160a01b039081169116146115d1576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561163f576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611699576001600160a01b03811660009081526003602052604090205461167f90610f60565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611725612532565b6000546001600160a01b03908116911614611775576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6020805460ff1916911515919091179055565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156117ce57506001600160a01b038116600090815260046020526040902054610fbd565b6001600160a01b038216600090815260036020526040902054610eaf90610f60565b6117f8612532565b6000546001600160a01b03908116911614611848576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206139b2833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b611897612532565b6000546001600160a01b039081169116146118e7576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60005b8181101561193d5760016019600085858581811061190457fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016118ea565b505050565b60004782826119508261178e565b90506000805b60085481101561199e576119948261198e6008848154811061197457fe5b6000918252602090912001546001600160a01b031661178e565b90612bf4565b9150600101611956565b50601e546000906119e4906119d49084906119ce906119c5906001600160a01b031661178e565b60095490612c9d565b90612c9d565b6119de8588612cdf565b90612bab565b979650505050505050565b601a5481565b6119fd612532565b6000546001600160a01b03908116911614611a4d576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526016602052604090205460ff16611aba576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b60175481101561118c57816001600160a01b031660178281548110611ade57fe5b6000918252602090912001546001600160a01b03161415611b7a57601780546000198101908110611b0b57fe5b600091825260209091200154601780546001600160a01b039092169183908110611b3157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152601690915260409020805460ff19169055601780548061115d57fe5b600101611abd565b611b8a612532565b6000546001600160a01b03908116911614611bda576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60138181548110611c0957fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611c58612532565b6000546001600160a01b03908116911614611ca8576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b600a811115611cfe576040805162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d20666565206c696d69742069732031302070657263656e7400604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e8d5780601f10610e6257610100808354040283529160200191610e8d565b611d6c612532565b6000546001600160a01b03908116911614611dbc576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60005b8181101561193d57600060196000858585818110611dd957fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611dbf565b6000610eab611e1f612532565b84610f5185604051806060016040528060258152602001613a936025913960056000611e49612532565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612af1565b6001546001600160a01b03163314611ec35760405162461bcd60e51b8152600401808060200182810382526023815260200180613a706023913960400191505060405180910390fd5b6002544211611f19576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206139b283398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610eab611f75612532565b84846125be565b60025490565b611f8a612532565b6000546001600160a01b03908116911614611fda576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b612004612532565b6000546001600160a01b03908116911614612054576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b601e8054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b601e546001600160a01b031681565b6120be612532565b6000546001600160a01b0390811691161461210e576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff161515600114156121395761215d565b6001600160a01b0381166000908152601960205260409020805460ff191660011790555b50565b612168612532565b6000546001600160a01b039081169116146121b8576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60328111156121f85760405162461bcd60e51b81526004018080602001828103825260238152602001806139266023913960400191505060405180910390fd5b61221260646119de83600954612cdf90919063ffffffff16565b601a5550565b612220612532565b6000546001600160a01b03908116911614612270576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206139b2833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b031660009081526016602052604090205460ff1690565b612307612532565b6000546001600160a01b03908116911614612357576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b612380612532565b6000546001600160a01b039081169116146123d0576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526019602052604090205460ff166123f55761215d565b6001600160a01b03166000908152601960205260409020805460ff19169055565b61241e612532565b6000546001600160a01b0390811691161461246e576040805162461bcd60e51b81526020600482018190526024820152600080516020613992833981519152604482015290519081900360640190fd5b6001600160a01b0381166124b35760405162461bcd60e51b81526004018080602001828103825260268152602001806139006026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206139b283398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526019602052604081205460ff1615156001141561252a57506001610fbd565b506000610fbd565b3390565b6001600160a01b03831661254957600080fd5b6001600160a01b03821661255c57600080fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166126035760405162461bcd60e51b8152600401808060200182810382526025815260200180613a1f6025913960400191505060405180910390fd5b6001600160a01b0382166126485760405162461bcd60e51b81526004018080602001828103825260238152602001806138846023913960400191505060405180910390fd5b600081116126875760405162461bcd60e51b81526004018080602001828103825260298152602001806139d26029913960400191505060405180910390fd5b6001600160a01b03821660009081526016602052604090205460ff16156126ef576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03831660009081526016602052604090205460ff1615612757576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03831660009081526019602052604090205460ff16158061278657506001600160a01b038216155b6127c8576040805162461bcd60e51b815260206004820152600e60248201526d165bdd48185c994818985b9b995960921b604482015290519081900360640190fd5b6001600160a01b03821660009081526019602052604090205460ff1615612836576040805162461bcd60e51b815260206004820152601760248201527f54686520726563697069656e742069732062616e6e6564000000000000000000604482015290519081900360640190fd5b61283e611c41565b6001600160a01b0316836001600160a01b0316141580156128785750612862611c41565b6001600160a01b0316826001600160a01b031614155b1561299d57601a548111156128be5760405162461bcd60e51b815260040180806020018281038252602f8152602001806138a7602f913960400191505060405180910390fd5b601e546001600160a01b0384811691161480156128e95750601d546001600160a01b03838116911614155b801561290e57506001600160a01b03821660009081526006602052604090205460ff16155b801561291c575060205460ff165b1561299d576001600160a01b038216600090815260216020526040902054421161297e576040805162461bcd60e51b815260206004820152600e60248201526d436f6f6c646f776e20333073656360901b604482015290519081900360640190fd5b6001600160a01b0382166000908152602160205260409020601e420190555b6001600160a01b03821660009081526015602052604090205460ff16612a29576013805460018082019092557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b03851690811790915560148054830190556000908152601560205260409020805460ff191690911790555b6000612a343061178e565b601f5490915081108015908190612a555750601e54600160a01b900460ff16155b8015612a6f5750601e546001600160a01b03868116911614155b8015612a845750601e54600160a81b900460ff165b15612a9257612a9282612d38565b6001600160a01b03851660009081526006602052604090205460019060ff1680612ad457506001600160a01b03851660009081526006602052604090205460ff165b15612add575060005b612ae986868684612ea0565b505050505050565b60008184841115612b805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b45578181015183820152602001612b2d565b50505050905090810190601f168015612b725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612b95613014565b9092509050612ba48282612bab565b9250505090565b6000612bed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613177565b9392505050565b600082820183811015612bed576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000612c658a6131dc565b9250925092506000806000612c838d8686612c7e612b88565b613218565b919f909e50909c50959a5093985091965092945050505050565b6000612bed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612af1565b600082612cee57506000610eaf565b82820282848281612cfb57fe5b0414612bed5760405162461bcd60e51b81526004018080602001828103825260218152602001806139496021913960400191505060405180910390fd5b601e805460ff60a01b1916600160a01b1790556000612d58826002612bab565b90506000612d67836004612bab565b90506000612d76846004612bab565b90506000612d85846002612bab565b90506000612d938583612c9d565b905047612dac612da78561198e8689612bf4565b613268565b6000612db84783612c9d565b90506000612dc7826003612bab565b601b546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612e02573d6000803e3d6000fd5b50601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612e3d573d6000803e3d6000fd5b50612e48848261340e565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601e805460ff60a01b1916905550505050505050565b80612ead57612ead6134db565b6001600160a01b03841660009081526007602052604090205460ff168015612eee57506001600160a01b03831660009081526007602052604090205460ff16155b15612f0357612efe84848461350d565b613001565b6001600160a01b03841660009081526007602052604090205460ff16158015612f4457506001600160a01b03831660009081526007602052604090205460ff165b15612f5457612efe848484613631565b6001600160a01b03841660009081526007602052604090205460ff16158015612f9657506001600160a01b03831660009081526007602052604090205460ff16155b15612fa657612efe8484846136da565b6001600160a01b03841660009081526007602052604090205460ff168015612fe657506001600160a01b03831660009081526007602052604090205460ff165b15612ff657612efe84848461371e565b6130018484846136da565b8061300e5761300e613791565b50505050565b600a546009546000918291825b6008548110156131455782600360006008848154811061303d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806130a2575081600460006008848154811061307b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156130b957600a5460095494509450505050613173565b6130f960036000600884815481106130cd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612c9d565b925061313b600460006008848154811061310f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612c9d565b9150600101613021565b50600954600a5461315591612bab565b82101561316d57600a54600954935093505050613173565b90925090505b9091565b600081836131c65760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612b45578181015183820152602001612b2d565b5060008385816131d257fe5b0495945050505050565b6000806000806131eb8561379f565b905060006131f8866137bb565b9050600061320a826119ce8986612c9d565b979296509094509092505050565b60008080806132278886612cdf565b905060006132358887612cdf565b905060006132438888612cdf565b90506000613255826119ce8686612c9d565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061329657fe5b6001600160a01b03928316602091820292909201810191909152601d54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156132ea57600080fd5b505afa1580156132fe573d6000803e3d6000fd5b505050506040513d602081101561331457600080fd5b505181518290600190811061332557fe5b6001600160a01b039283166020918202929092010152601d5461334b9130911684612536565b601d5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156133d15781810151838201526020016133b9565b505050509050019650505050505050600060405180830381600087803b1580156133fa57600080fd5b505af1158015612ae9573d6000803e3d6000fd5b601d546134269030906001600160a01b031684612536565b601d546001600160a01b031663f305d719823085600080613445611c41565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156134b057600080fd5b505af11580156134c4573d6000803e3d6000fd5b50505050506040513d606081101561300e57600080fd5b600f541580156134eb5750601154155b156134f55761350b565b600f805460105560118054601255600091829055555b565b60008060008060008061351f87612c4e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506135519088612c9d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546135809087612c9d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546135af9086612bf4565b6001600160a01b0389166000908152600360205260409020556135d1816137d7565b6135db848361385f565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061364387612c4e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506136759087612c9d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546136ab9084612bf4565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546135af9086612bf4565b6000806000806000806136ec87612c4e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506135809087612c9d565b60008060008060008061373087612c4e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506137629088612c9d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546136759087612c9d565b601054600f55601254601155565b6000610eaf60646119de600f5485612cdf90919063ffffffff16565b6000610eaf60646119de60115485612cdf90919063ffffffff16565b60006137e1612b88565b905060006137ef8383612cdf565b3060009081526003602052604090205490915061380c9082612bf4565b3060009081526003602090815260408083209390935560079052205460ff161561193d573060009081526004602052604090205461384a9084612bf4565b30600090815260046020526040902055505050565b600a5461386c9083612c9d565b600a55600b5461387c9082612bf4565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206d757374206265206c657373207468616e206d617820747820616d6f756e74416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d6178696d756d2074782070657263656e746167652069732035302070657263656e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006b8e56a478e065e7e5dbec2f36b8f91354e2d354839a202fdcdf468774abb1564736f6c634300060c0033

Deployed Bytecode Sourcemap

27383:23349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49765:163;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49765:163:0;;:::i;:::-;;30275:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33149:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33149:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;34404:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28430:39;;;;;;;;;;;;;:::i;30552:95::-;;;;;;;;;;;;;:::i;39654:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39654:44:0;-1:-1:-1;;;;;39654:44:0;;:::i;33318:397::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33318:397:0;;;;;;;;;;;;;;;;;:::i;35344:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35344:253:0;;:::i;41025:101::-;;;;;;;;;;;;;:::i;30461:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36059:477;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36059:477:0;-1:-1:-1;;;;;36059:477:0;;:::i;33723:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33723:218:0;;;;;;;;:::i;28144:26::-;;;;;;;;;;;;;:::i;34499:382::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34499:382:0;;:::i;31036:350::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31036:350:0;-1:-1:-1;;;;;31036:350:0;;:::i;49528:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49528:111:0;-1:-1:-1;;;;;49528:111:0;;:::i;34889:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34889:447:0;;;;;;;;;:::i;28992:41::-;;;;;;;;;;;;;:::i;28476:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28476:37:0;-1:-1:-1;;;;;28476:37:0;;:::i;35605:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35605:446:0;-1:-1:-1;;;;;35605:446:0;;:::i;49396:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49396:124:0;-1:-1:-1;;;;;49396:124:0;;:::i;50537:101::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50537:101:0;;;;:::i;28227:32::-;;;;;;;;;;;;;:::i;30655:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30655:198:0;-1:-1:-1;;;;;30655:198:0;;:::i;16656:148::-;;;;;;;;;;;;;:::i;28883:39::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28883:39:0;;;;;;;;;;;;;;32209:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32209:204:0;;-1:-1:-1;32209:204:0;-1:-1:-1;32209:204:0;:::i;36845:541::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36845:541:0;-1:-1:-1;;;;;36845:541:0;;:::i;28734:55::-;;;;;;;;;;;;;:::i;31394:498::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31394:498:0;-1:-1:-1;;;;;31394:498:0;;:::i;29948:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29948:103:0;-1:-1:-1;;;;;29948:103:0;;:::i;28395:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28395:28:0;;:::i;34276:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34276:120:0;-1:-1:-1;;;;;34276:120:0;;:::i;16014:79::-;;;;;;;;;;;;;:::i;49936:193::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49936:193:0;;:::i;30366:87::-;;;;;;;;;;;;;:::i;32783:207::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32783:207:0;;-1:-1:-1;32783:207:0;-1:-1:-1;32783:207:0;:::i;33949:319::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33949:319:0;;;;;;;;:::i;17662:292::-;;;;;;;;;;;;;:::i;30861:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30861:167:0;;;;;;;;:::i;17211:89::-;;;;;;;;;;;;;:::i;30083:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30083:184:0;-1:-1:-1;;;;;30083:184:0;;:::i;50358:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50358:171:0;;;;:::i;28929:26::-;;;;;;;;;;;;;:::i;32027:174::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32027:174:0;-1:-1:-1;;;;;32027:174:0;;:::i;50137:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50137:213:0;;:::i;17376:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17376:214:0;;:::i;32998:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32998:143:0;;;;;;;;;;:::i;31900:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31900:119:0;-1:-1:-1;;;;;31900:119:0;;:::i;49647:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49647:110:0;-1:-1:-1;;;;;49647:110:0;;:::i;32595:180::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32595:180:0;-1:-1:-1;;;;;32595:180:0;;:::i;16959:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16959:244:0;-1:-1:-1;;;;;16959:244:0;;:::i;32421:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32421:166:0;-1:-1:-1;;;;;32421:166:0;;:::i;49765:163::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;49855:2:::1;49845:6;:12;;49837:56;;;::::0;;-1:-1:-1;;;49837:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;49904:7;:16:::0;49765:163::o;30275:83::-;30345:5;30338:12;;;;;;;;-1:-1:-1;;30338:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30312:13;;30338:12;;30345:5;;30338:12;;30345:5;30338:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30275:83;:::o;33149:161::-;33224:4;33241:39;33250:12;:10;:12::i;:::-;33264:7;33273:6;33241:8;:39::i;:::-;-1:-1:-1;33298:4:0;33149:161;;;;;:::o;34404:87::-;34473:10;;34404:87;:::o;28430:39::-;;;;:::o;30552:95::-;30632:7;;30552:95;:::o;39654:44::-;;;;;;;;;;;;;:::o;33318:397::-;33450:4;33467:36;33477:6;33485:9;33496:6;33467:9;:36::i;:::-;33514:171;33537:6;33558:12;:10;:12::i;:::-;33585:89;33623:6;33585:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33585:19:0;;;;;;:11;:19;;;;;;33605:12;:10;:12::i;:::-;-1:-1:-1;;;;;33585:33:0;;;;;;;;;;;;-1:-1:-1;33585:33:0;;;:89;:37;:89::i;:::-;33514:8;:171::i;:::-;-1:-1:-1;33703:4:0;33318:397;;;;;:::o;35344:253::-;35411:7;35450;;35439;:18;;35431:73;;;;-1:-1:-1;;;35431:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35515:19;35537:10;:8;:10::i;:::-;35515:32;-1:-1:-1;35565:24:0;:7;35515:32;35565:11;:24::i;:::-;35558:31;;;35344:253;;;;:::o;41025:101::-;41097:21;41025:101;:::o;30461:83::-;30527:9;;;;30461:83;:::o;36059:477::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36139:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36131:60;;;::::0;;-1:-1:-1;;;36131:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;36207:9;36202:327;36226:9;:16:::0;36222:20;::::1;36202:327;;;36284:7;-1:-1:-1::0;;;;;36268:23:0::1;:9;36278:1;36268:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36268:12:0::1;:23;36264:254;;;36327:9;36337:16:::0;;-1:-1:-1;;36337:20:0;;;36327:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;36312:9:::1;:12:::0;;-1:-1:-1;;;;;36327:31:0;;::::1;::::0;36322:1;;36312:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;36312:46:0::1;-1:-1:-1::0;;;;;36312:46:0;;::::1;;::::0;;36377:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;36416:11:::1;:20:::0;;;;:28;;-1:-1:-1;;36416:28:0::1;::::0;;36463:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;36463:15:0;;;;;-1:-1:-1;;;;;;36463:15:0::1;::::0;;;;;36497:5:::1;;36264:254;36244:3;;36202:327;;;;36059:477:::0;:::o;33723:218::-;33811:4;33828:83;33837:12;:10;:12::i;:::-;33851:7;33860:50;33899:10;33860:11;:25;33872:12;:10;:12::i;:::-;-1:-1:-1;;;;;33860:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;33860:25:0;;;:34;;;;;;;;;;;:38;:50::i;28144:26::-;;;;:::o;34499:382::-;34551:14;34568:12;:10;:12::i;:::-;-1:-1:-1;;;;;34600:19:0;;;;;;:11;:19;;;;;;34551:29;;-1:-1:-1;34600:19:0;;34599:20;34591:77;;;;-1:-1:-1;;;34591:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34680:15;34709:19;34720:7;34709:10;:19::i;:::-;-1:-1:-1;;;;;;;;;34757:15:0;;;;;;:7;:15;;;;;;34679:49;;-1:-1:-1;34757:28:0;;:15;-1:-1:-1;34679:49:0;34757:19;:28::i;:::-;-1:-1:-1;;;;;34739:15:0;;;;;;:7;:15;;;;;:46;34806:7;;:20;;34818:7;34806:11;:20::i;:::-;34796:7;:30;34850:10;;:23;;34865:7;34850:14;:23::i;:::-;34837:10;:36;-1:-1:-1;;;34499:382:0:o;31036:350::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;31129:42:::1;-1:-1:-1::0;;;;;31118:53:0;::::1;;;31110:102;;;;-1:-1:-1::0;;;31110:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31232:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;31231:27;31223:70;;;::::0;;-1:-1:-1;;;31223:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31304:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;31304:33:0::1;31333:4;31304:33:::0;;::::1;::::0;;;31348:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31348:30:0::1;::::0;;::::1;::::0;;31036:350::o;49528:111::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49597:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;49597:34:0::1;49627:4;49597:34;::::0;;49528:111::o;34889:447::-;34980:7;35019;;35008;:18;;35000:62;;;;;-1:-1:-1;;;35000:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35078:17;35073:256;;35113:15;35142:19;35153:7;35142:10;:19::i;:::-;-1:-1:-1;35112:49:0;;-1:-1:-1;35176:14:0;;-1:-1:-1;;;;;35176:14:0;35073:256;35226:23;35261:19;35272:7;35261:10;:19::i;:::-;-1:-1:-1;35223:57:0;;-1:-1:-1;35295:22:0;;-1:-1:-1;;;;;35295:22:0;28992:41;;;-1:-1:-1;;;28992:41:0;;;;;:::o;28476:37::-;;;;;;;;;;;;;;;:::o;35605:446::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35800:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35799:21;35791:61;;;::::0;;-1:-1:-1;;;35791:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;35867:16:0;::::1;35886:1;35867:16:::0;;;:7:::1;:16;::::0;;;;;:20;35863:109:::1;;-1:-1:-1::0;;;;;35943:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;35923:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;35904:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;35863:109:::1;-1:-1:-1::0;;;;;35982:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;35982:27:0::1;36005:4;35982:27:::0;;::::1;::::0;;;36020:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36020:23:0::1;::::0;;::::1;::::0;;35605:446::o;49396:124::-;-1:-1:-1;;;;;49485:27:0;49461:4;49485:27;;;:18;:27;;;;;;;;;49396:124::o;50537:101::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;50607:15:::1;:23:::0;;-1:-1:-1;;50607:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50537:101::o;28227:32::-;;;;:::o;30655:198::-;-1:-1:-1;;;;;30745:20:0;;30721:7;30745:20;;;:11;:20;;;;;;;;30741:49;;;-1:-1:-1;;;;;;30774:16:0;;;;;;:7;:16;;;;;;30767:23;;30741:49;-1:-1:-1;;;;;30828:16:0;;;;;;:7;:16;;;;;;30808:37;;:19;:37::i;16656:148::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;16763:1:::1;16747:6:::0;;16726:40:::1;::::0;-1:-1:-1;;;;;16747:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16726:40:0;16763:1;;16726:40:::1;16794:1;16777:19:::0;;-1:-1:-1;;;;;;16777:19:0::1;::::0;;16656:148::o;28883:39::-;;;-1:-1:-1;;;;;28883:39:0;;:::o;32209:204::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;32306:9:::1;32301:105;32317:20:::0;;::::1;32301:105;;;32390:4;32359:14;:28;32374:9;;32384:1;32374:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;32374:12:0::1;32359:28:::0;;-1:-1:-1;32359:28:0;::::1;::::0;;;;;;-1:-1:-1;32359:28:0;:35;;-1:-1:-1;;32359:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;32339:3:0::1;32301:105;;;;32209:204:::0;;:::o;36845:541::-;36910:7;36949:21;36998:7;36910;37037:17;36998:7;37037:9;:17::i;:::-;37016:38;-1:-1:-1;37065:24:0;;37100:138;37124:9;:16;37120:20;;37100:138;;;37181:45;37209:16;37181:23;37191:9;37201:1;37191:12;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37191:12:0;37181:9;:23::i;:::-;:27;;:45::i;:::-;37162:64;-1:-1:-1;37142:3:0;;37100:138;;;-1:-1:-1;37317:11:0;;37248:15;;37266:87;;37295:57;;37335:16;;37295:35;;37307:22;;-1:-1:-1;;;;;37317:11:0;37307:9;:22::i;:::-;37295:7;;;:11;:35::i;:::-;:39;;:57::i;:::-;37266:24;:10;37281:8;37266:14;:24::i;:::-;:28;;:87::i;:::-;37248:105;36845:541;-1:-1:-1;;;;;;;36845:541:0:o;28734:55::-;;;;:::o;31394:498::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31481:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;31473:65;;;::::0;;-1:-1:-1;;;31473:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31554:9;31549:336;31573:16;:23:::0;31569:27;::::1;31549:336;;;31645:7;-1:-1:-1::0;;;;;31622:30:0::1;:16;31639:1;31622:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31622:19:0::1;:30;31618:256;;;31695:16;31712:23:::0;;-1:-1:-1;;31712:27:0;;;31695:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31673:16:::1;:19:::0;;-1:-1:-1;;;;;31695:45:0;;::::1;::::0;31690:1;;31673:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;31673:67:0::1;-1:-1:-1::0;;;;;31673:67:0;;::::1;;::::0;;31759:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;31759:34:0::1;::::0;;31812:16:::1;:22:::0;;;::::1;;;31618:256;31598:3;;31549:336;;29948:103:::0;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;30017:11:::1;:26:::0;;-1:-1:-1;;;;;;30017:26:0::1;-1:-1:-1::0;;;;;30017:26:0;;;::::1;::::0;;;::::1;::::0;;29948:103::o;28395:28::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28395:28:0;;-1:-1:-1;28395:28:0;:::o;34276:120::-;-1:-1:-1;;;;;34368:20:0;34344:4;34368:20;;;:11;:20;;;;;;;;;34276:120::o;16014:79::-;16052:7;16079:6;-1:-1:-1;;;;;16079:6:0;16014:79;:::o;49936:193::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;50044:2:::1;50028:12;:18;;50020:62;;;::::0;;-1:-1:-1;;;50020:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;50093:13;:28:::0;49936:193::o;30366:87::-;30438:7;30431:14;;;;;;;;-1:-1:-1;;30431:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30405:13;;30431:14;;30438:7;;30431:14;;30438:7;30431:14;;;;;;;;;;;;;;;;;;;;;;;;32783:207;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;32882:9:::1;32877:106;32893:20:::0;;::::1;32877:106;;;32966:5;32935:14;:28;32950:9;;32960:1;32950:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;32950:12:0::1;32935:28:::0;;-1:-1:-1;32935:28:0;::::1;::::0;;;;;;-1:-1:-1;32935:28:0;:36;;-1:-1:-1;;32935:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;32915:3:0::1;32877:106;;33949:319:::0;34042:4;34059:179;34082:12;:10;:12::i;:::-;34109:7;34131:96;34170:15;34131:96;;;;;;;;;;;;;;;;;:11;:25;34143:12;:10;:12::i;:::-;-1:-1:-1;;;;;34131:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;34131:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17662:292::-;17714:14;;-1:-1:-1;;;;;17714:14:0;17732:10;17714:28;17706:76;;;;-1:-1:-1;;;17706:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17807:9;;17801:3;:15;17793:59;;;;;-1:-1:-1;;;17793:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17897:14;;;17889:6;;17868:44;;-1:-1:-1;;;;;17897:14:0;;;;17889:6;;;;-1:-1:-1;;;;;;;;;;;17868:44:0;;17932:14;;;17923:23;;-1:-1:-1;;;;;;17923:23:0;-1:-1:-1;;;;;17932:14:0;;;17923:23;;;;;;17662:292::o;30861:167::-;30939:4;30956:42;30966:12;:10;:12::i;:::-;30980:9;30991:6;30956:9;:42::i;17211:89::-;17283:9;;17211:89;:::o;30083:184::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;30229:13:::1;:30:::0;;-1:-1:-1;;;;;;30229:30:0::1;-1:-1:-1::0;;;;;30229:30:0;;;::::1;::::0;;;::::1;::::0;;30083:184::o;50358:171::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;50435:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;50435:32:0;::::1;-1:-1:-1::0;;;;50435:32:0;;::::1;::::0;;;::::1;::::0;;;50483:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;50358:171:::0;:::o;28929:26::-;;;-1:-1:-1;;;;;28929:26:0;;:::o;32027:174::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32109:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;::::1;;:33;;:25:::0;:33:::1;32105:46;;;32144:7;;32105:46;-1:-1:-1::0;;;;;32161:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;:32;;-1:-1:-1;;32161:32:0::1;32189:4;32161:32;::::0;;16296:1:::1;32027:174:::0;:::o;50137:213::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;50238:2:::1;50222:12;:18;;50214:66;;;;-1:-1:-1::0;;;50214:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50306:36;50336:5;50306:25;50318:12;50306:7;;:11;;:25;;;;:::i;:36::-;50291:12;:51:::0;-1:-1:-1;50137:213:0:o;17376:214::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;17457:6:::1;::::0;;;17440:23;;-1:-1:-1;;;;;;17440:23:0;;::::1;-1:-1:-1::0;;;;;17457:6:0;::::1;17440:23;::::0;;;17474:19:::1;::::0;;17516:3:::1;:10:::0;::::1;17504:9;:22:::0;17542:40:::1;::::0;17457:6;;-1:-1:-1;;;;;;;;;;;17542:40:0;17457:6;;17542:40:::1;17376:214:::0;:::o;32998:143::-;-1:-1:-1;;;;;33106:18:0;;;33079:7;33106:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32998:143::o;31900:119::-;-1:-1:-1;;;;;31985:26:0;31961:4;31985:26;;;:17;:26;;;;;;;;;31900:119::o;49647:110::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49714:27:0::1;49744:5;49714:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;49714:35:0::1;::::0;;49647:110::o;32595:180::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32681:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;::::1;;32677:47;;32717:7;;32677:47;-1:-1:-1::0;;;;;32734:25:0::1;32762:5;32734:25:::0;;;:14:::1;:25;::::0;;;;:33;;-1:-1:-1;;32734:33:0::1;::::0;;32595:180::o;16959:244::-;16236:12;:10;:12::i;:::-;16226:6;;-1:-1:-1;;;;;16226:6:0;;;:22;;;16218:67;;;;;-1:-1:-1;;;16218:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16218:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17048:22:0;::::1;17040:73;;;;-1:-1:-1::0;;;17040:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17150:6;::::0;;17129:38:::1;::::0;-1:-1:-1;;;;;17129:38:0;;::::1;::::0;17150:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17129:38:0;::::1;17178:6;:17:::0;;-1:-1:-1;;;;;;17178:17:0::1;-1:-1:-1::0;;;;;17178:17:0;;;::::1;::::0;;;::::1;::::0;;16959:244::o;32421:166::-;-1:-1:-1;;;;;32505:25:0;;32484:4;32505:25;;;:14;:25;;;;;;;;:33;;:25;:33;32501:78;;;-1:-1:-1;32547:4:0;32540:11;;32501:78;-1:-1:-1;32574:5:0;32567:12;;93:106;181:10;93:106;:::o;36544:293::-;-1:-1:-1;;;;;36671:19:0;;36663:28;;;;;;-1:-1:-1;;;;;36710:21:0;;36702:30;;;;;;-1:-1:-1;;;;;36745:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36797:32;;;;;;;;;;;;;;;;;36544:293;;;:::o;37394:2252::-;-1:-1:-1;;;;;37516:18:0;;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37595:16:0;;37587:64;;;;-1:-1:-1;;;37587:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37679:1;37670:6;:10;37662:64;;;;-1:-1:-1;;;37662:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37746:21:0;;;;;;:17;:21;;;;;;;;37745:22;37737:58;;;;;-1:-1:-1;;;37737:58:0;;;;;;;;;;;;-1:-1:-1;;;37737:58:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37815:23:0;;;;;;:17;:23;;;;;;;;37814:24;37806:60;;;;;-1:-1:-1;;;37806:60:0;;;;;;;;;;;;-1:-1:-1;;;37806:60:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37885:20:0;;;;;;:14;:20;;;;;;;;:29;;:49;;-1:-1:-1;;;;;;37918:16:0;;;37885:49;37877:76;;;;;-1:-1:-1;;;37877:76:0;;;;;;;;;;;;-1:-1:-1;;;37877:76:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37972:18:0;;;;;;:14;:18;;;;;;;;:27;37964:63;;;;;-1:-1:-1;;;37964:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38052:7;:5;:7::i;:::-;-1:-1:-1;;;;;38044:15:0;:4;-1:-1:-1;;;;;38044:15:0;;;:32;;;;;38069:7;:5;:7::i;:::-;-1:-1:-1;;;;;38063:13:0;:2;-1:-1:-1;;;;;38063:13:0;;;38044:32;38040:422;;;38111:12;;38101:6;:22;;38093:82;;;;-1:-1:-1;;;38093:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38204:11;;-1:-1:-1;;;;;38196:19:0;;;38204:11;;38196:19;:51;;;;-1:-1:-1;38233:13:0;;-1:-1:-1;;;;;38219:28:0;;;38233:13;;38219:28;;38196:51;:78;;;;-1:-1:-1;;;;;;38252:22:0;;;;;;:18;:22;;;;;;;;38251:23;38196:78;:97;;;;-1:-1:-1;38278:15:0;;;;38196:97;38192:259;;;-1:-1:-1;;;;;38322:12:0;;;;;;:8;:12;;;;;;38337:15;-1:-1:-1;38314:57:0;;;;;-1:-1:-1;;;38314:57:0;;;;;;;;;;;;-1:-1:-1;;;38314:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38390:12:0;;;;;;:8;:12;;;;;38424:10;38405:15;:30;38390:45;;38192:259;-1:-1:-1;;;;;38761:9:0;;;;;;:5;:9;;;;;;;;38756:131;;38787:11;:20;;;;;;;;;;;;;-1:-1:-1;;;;;;38787:20:0;-1:-1:-1;;;;;38787:20:0;;;;;;;;38822;:22;;;;;;-1:-1:-1;38859:9:0;;;:5;38787:20;38859:9;;;;:16;;-1:-1:-1;;38859:16:0;;;;;;38756:131;38899:28;38930:24;38948:4;38930:9;:24::i;:::-;39016:19;;38899:55;;-1:-1:-1;38992:43:0;;;;;;;39050:40;;-1:-1:-1;39074:16:0;;-1:-1:-1;;;39074:16:0;;;;39073:17;39050:40;:63;;;;-1:-1:-1;39102:11:0;;-1:-1:-1;;;;;39094:19:0;;;39102:11;;39094:19;;39050:63;:88;;;;-1:-1:-1;39117:21:0;;-1:-1:-1;;;39117:21:0;;;;39050:88;39046:186;;;39184:36;39199:20;39184:14;:36::i;:::-;-1:-1:-1;;;;;39425:24:0;;39305:12;39425:24;;;:18;:24;;;;;;39320:4;;39425:24;;;:50;;-1:-1:-1;;;;;;39453:22:0;;;;;;:18;:22;;;;;;;;39425:50;39421:98;;;-1:-1:-1;39502:5:0;39421:98;39597:41;39612:4;39618:2;39622:6;39630:7;39597:14;:41::i;:::-;37394:2252;;;;;;:::o;4939:226::-;5059:7;5095:12;5087:6;;;;5079:29;;;;-1:-1:-1;;;5079:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5131:5:0;;;4939:226::o;47646:164::-;47688:7;47709:15;47726;47745:19;:17;:19::i;:::-;47708:56;;-1:-1:-1;47708:56:0;-1:-1:-1;47782:20:0;47708:56;;47782:11;:20::i;:::-;47775:27;;;;47646:164;:::o;6371:132::-;6429:7;6456:39;6460:1;6463;6456:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6449:46;6371:132;-1:-1:-1;;;6371:132:0:o;4036:181::-;4094:7;4126:5;;;4150:6;;;;4142:46;;;;;-1:-1:-1;;;4142:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;46116:540;46216:7;46238;46260;46282;46304;46326;46362:23;46387:12;46401:18;46423:20;46435:7;46423:11;:20::i;:::-;46361:82;;;;;;46455:15;46472:23;46497:12;46513:50;46525:7;46534:4;46540:10;46552;:8;:10::i;:::-;46513:11;:50::i;:::-;46454:109;;;;-1:-1:-1;46454:109:0;;-1:-1:-1;46614:15:0;;-1:-1:-1;46631:4:0;;-1:-1:-1;46637:10:0;;-1:-1:-1;46116:540:0;;-1:-1:-1;;;;;46116:540:0:o;4500:136::-;4558:7;4585:43;4589:1;4592;4585:43;;;;;;;;;;;;;;;;;:3;:43::i;5424:471::-;5482:7;5727:6;5723:47;;-1:-1:-1;5757:1:0;5750:8;;5723:47;5794:5;;;5798:1;5794;:5;:1;5818:5;;;;;:10;5810:56;;;;-1:-1:-1;;;5810:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39707:1310;29442:16;:23;;-1:-1:-1;;;;29442:23:0;-1:-1:-1;;;29442:23:0;;;;39866:27:::1;:20:::0;39891:1:::1;39866:24;:27::i;:::-;39843:50:::0;-1:-1:-1;39904:14:0::1;39921:27;:20:::0;39946:1:::1;39921:24;:27::i;:::-;39904:44:::0;-1:-1:-1;39959:18:0::1;39980:27;:20:::0;40005:1:::1;39980:24;:27::i;:::-;39959:48:::0;-1:-1:-1;40050:12:0::1;40065:19;:12:::0;40082:1:::1;40065:16;:19::i;:::-;40050:34:::0;-1:-1:-1;40095:17:0::1;40115:22;:12:::0;40050:34;40115:16:::1;:22::i;:::-;40095:42:::0;-1:-1:-1;40438:21:0::1;40504:50;40521:32;40542:10:::0;40521:16:::1;:4:::0;40530:6;40521:8:::1;:16::i;:32::-;40504:16;:50::i;:::-;40685:15;40703:41;:21;40729:14:::0;40703:25:::1;:41::i;:::-;40685:59:::0;-1:-1:-1;40755:16:0::1;40774:14;40685:59:::0;40786:1:::1;40774:11;:14::i;:::-;40799:6;::::0;:25:::1;::::0;40755:33;;-1:-1:-1;;;;;;40799:6:0::1;::::0;:25;::::1;;;::::0;40755:33;;40799:6:::1;:25:::0;:6;:25;40755:33;40799:6;:25;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40835:13:0::1;::::0;:32:::1;::::0;-1:-1:-1;;;;;40835:13:0;;::::1;::::0;:32;::::1;;;::::0;40858:8;;40835:13:::1;:32:::0;:13;:32;40858:8;40835:13;:32;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40917:33;40930:9;40941:8;40917:12;:33::i;:::-;40968:41;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;29488:16:0;:24;;-1:-1:-1;;;;29488:24:0;;;-1:-1:-1;;;;;;;39707:1310:0:o;42317:838::-;42473:7;42468:28;;42482:14;:12;:14::i;:::-;-1:-1:-1;;;;;42513:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42537:22:0;;;;;;:11;:22;;;;;;;;42536:23;42513:46;42509:597;;;42576:48;42598:6;42606:9;42617:6;42576:21;:48::i;:::-;42509:597;;;-1:-1:-1;;;;;42647:19:0;;;;;;:11;:19;;;;;;;;42646:20;:46;;;;-1:-1:-1;;;;;;42670:22:0;;;;;;:11;:22;;;;;;;;42646:46;42642:464;;;42709:46;42729:6;42737:9;42748:6;42709:19;:46::i;42642:464::-;-1:-1:-1;;;;;42778:19:0;;;;;;:11;:19;;;;;;;;42777:20;:47;;;;-1:-1:-1;;;;;;42802:22:0;;;;;;:11;:22;;;;;;;;42801:23;42777:47;42773:333;;;42841:44;42859:6;42867:9;42878:6;42841:17;:44::i;42773:333::-;-1:-1:-1;;;;;42907:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42930:22:0;;;;;;:11;:22;;;;;;;;42907:45;42903:203;;;42969:48;42991:6;42999:9;43010:6;42969:21;:48::i;42903:203::-;43050:44;43068:6;43076:9;43087:6;43050:17;:44::i;:::-;43123:7;43118:29;;43132:15;:13;:15::i;:::-;42317:838;;;;:::o;47818:556::-;47916:7;;47952;;47869;;;;;47970:289;47994:9;:16;47990:20;;47970:289;;;48060:7;48036;:21;48044:9;48054:1;48044:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48044:12:0;48036:21;;;;;;;;;;;;;:31;;:66;;;48095:7;48071;:21;48079:9;48089:1;48079:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48079:12:0;48071:21;;;;;;;;;;;;;:31;48036:66;48032:97;;;48112:7;;48121;;48104:25;;;;;;;;;48032:97;48154:34;48166:7;:21;48174:9;48184:1;48174:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48174:12:0;48166:21;;;;;;;;;;;;;48154:7;;:11;:34::i;:::-;48144:44;;48213:34;48225:7;:21;48233:9;48243:1;48233:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48233:12:0;48225:21;;;;;;;;;;;;;48213:7;;:11;:34::i;:::-;48203:44;-1:-1:-1;48012:3:0;;47970:289;;;-1:-1:-1;48295:7:0;;48283;;:20;;:11;:20::i;:::-;48273:7;:30;48269:61;;;48313:7;;48322;;48305:25;;;;;;;;48269:61;48349:7;;-1:-1:-1;48358:7:0;-1:-1:-1;47818:556:0;;;:::o;6999:312::-;7119:7;7154:12;7147:5;7139:28;;;;-1:-1:-1;;;7139:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7178:9;7194:1;7190;:5;;;;;;;6999:312;-1:-1:-1;;;;;6999:312:0:o;46664:412::-;46765:7;46787;46809;46844:12;46859:24;46875:7;46859:15;:24::i;:::-;46844:39;;46894:18;46915:30;46937:7;46915:21;:30::i;:::-;46894:51;-1:-1:-1;46956:23:0;46982:33;46894:51;46982:17;:7;46994:4;46982:11;:17::i;:33::-;46956:59;47051:4;;-1:-1:-1;47057:10:0;;-1:-1:-1;46664:412:0;;-1:-1:-1;;;46664:412:0:o;47084:554::-;47283:7;;;;47380:24;:7;47392:11;47380;:24::i;:::-;47362:42;-1:-1:-1;47415:12:0;47430:21;:4;47439:11;47430:8;:21::i;:::-;47415:36;-1:-1:-1;47462:18:0;47483:27;:10;47498:11;47483:14;:27::i;:::-;47462:48;-1:-1:-1;47521:23:0;47547:33;47462:48;47547:17;:7;47559:4;47547:11;:17::i;:33::-;47599:7;;;;-1:-1:-1;47625:4:0;;-1:-1:-1;47084:554:0;;-1:-1:-1;;;;;;;47084:554:0:o;41134:583::-;41284:16;;;41298:1;41284:16;;;41260:21;41284:16;;;;;41260:21;41284:16;;;;;;;;;;-1:-1:-1;41284:16:0;41260:40;;41329:4;41311;41316:1;41311:7;;;;;;;;-1:-1:-1;;;;;41311:23:0;;;:7;;;;;;;;;;:23;;;;41355:13;;:20;;;-1:-1:-1;;;41355:20:0;;;;:13;;;;;:18;;:20;;;;;41311:7;;41355:20;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41355:20:0;41345:7;;:4;;41350:1;;41345:7;;;;;;-1:-1:-1;;;;;41345:30:0;;;:7;;;;;;;;;:30;41420:13;;41388:60;;41405:4;;41420:13;41436:11;41388:8;:60::i;:::-;41487:13;;:222;;-1:-1:-1;;;41487:222:0;;;;;;;;:13;:222;;;;;;41663:4;41487:222;;;;;;41683:15;41487:222;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41487:13:0;;;;:64;;41566:11;;41636:4;;41663;41683:15;41487:222;;;;;;;;;;;;;;;;:13;:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41725:511;41905:13;;41873:60;;41890:4;;-1:-1:-1;;;;;41905:13:0;41921:11;41873:8;:60::i;:::-;41976:13;;-1:-1:-1;;;;;41976:13:0;:29;42014:9;42048:4;42068:11;41976:13;;42180:7;:5;:7::i;:::-;42202:15;41976:252;;;;;;;;;;;;;-1:-1:-1;;;;;41976:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41976:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49020:235;49067:7;;:12;:34;;;;-1:-1:-1;49083:13:0;;:18;49067:34;49063:47;;;49103:7;;49063:47;49140:7;;;49122:15;:25;49182:13;;;49158:21;:37;-1:-1:-1;49208:11:0;;;;49230:17;49020:235;:::o;44502:686::-;44653:15;44683:23;44721:12;44748:23;44786:12;44813:18;44845:19;44856:7;44845:10;:19::i;:::-;-1:-1:-1;;;;;44893:15:0;;;;;;:7;:15;;;;;;44638:226;;-1:-1:-1;44638:226:0;;-1:-1:-1;44638:226:0;;-1:-1:-1;44638:226:0;-1:-1:-1;44638:226:0;-1:-1:-1;44638:226:0;-1:-1:-1;44893:28:0;;44913:7;44893:19;:28::i;:::-;-1:-1:-1;;;;;44875:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44950:7;:15;;;;:28;;44970:7;44950:19;:28::i;:::-;-1:-1:-1;;;;;44932:15:0;;;;;;;:7;:15;;;;;;:46;;;;45010:18;;;;;;;:39;;45033:15;45010:22;:39::i;:::-;-1:-1:-1;;;;;44989:18:0;;;;;;:7;:18;;;;;:60;45060:26;45075:10;45060:14;:26::i;:::-;45097:23;45109:4;45115;45097:11;:23::i;:::-;45153:9;-1:-1:-1;;;;;45136:44:0;45145:6;-1:-1:-1;;;;;45136:44:0;;45164:15;45136:44;;;;;;;;;;;;;;;;;;44502:686;;;;;;;;;:::o;43796:698::-;43945:15;43975:23;44013:12;44040:23;44078:12;44105:18;44137:19;44148:7;44137:10;:19::i;:::-;-1:-1:-1;;;;;44185:15:0;;;;;;:7;:15;;;;;;43930:226;;-1:-1:-1;43930:226:0;;-1:-1:-1;43930:226:0;;-1:-1:-1;43930:226:0;-1:-1:-1;43930:226:0;-1:-1:-1;43930:226:0;-1:-1:-1;44185:28:0;;43930:226;44185:19;:28::i;:::-;-1:-1:-1;;;;;44167:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44245:18;;;;;:7;:18;;;;;:39;;44268:15;44245:22;:39::i;:::-;-1:-1:-1;;;;;44224:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44316:7;:18;;;;:39;;44339:15;44316:22;:39::i;43163:625::-;43310:15;43340:23;43378:12;43405:23;43443:12;43470:18;43502:19;43513:7;43502:10;:19::i;:::-;-1:-1:-1;;;;;43550:15:0;;;;;;:7;:15;;;;;;43295:226;;-1:-1:-1;43295:226:0;;-1:-1:-1;43295:226:0;;-1:-1:-1;43295:226:0;-1:-1:-1;43295:226:0;-1:-1:-1;43295:226:0;-1:-1:-1;43550:28:0;;43295:226;43550:19;:28::i;45196:757::-;45347:15;45377:23;45415:12;45442:23;45480:12;45507:18;45539:19;45550:7;45539:10;:19::i;:::-;-1:-1:-1;;;;;45587:15:0;;;;;;:7;:15;;;;;;45332:226;;-1:-1:-1;45332:226:0;;-1:-1:-1;45332:226:0;;-1:-1:-1;45332:226:0;-1:-1:-1;45332:226:0;-1:-1:-1;45332:226:0;-1:-1:-1;45587:28:0;;45607:7;45587:19;:28::i;:::-;-1:-1:-1;;;;;45569:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45644:7;:15;;;;:28;;45664:7;45644:19;:28::i;49263:125::-;49317:15;;49307:7;:25;49359:21;;49343:13;:37;49263:125::o;48732:130::-;48796:7;48823:31;48848:5;48823:20;48835:7;;48823;:11;;:20;;;;:::i;48870:142::-;48940:7;48967:37;48998:5;48967:26;48979:13;;48967:7;:11;;:26;;;;:::i;48382:342::-;48445:19;48467:10;:8;:10::i;:::-;48445:32;-1:-1:-1;48488:18:0;48509:27;:10;48445:32;48509:14;:27::i;:::-;48588:4;48572:22;;;;:7;:22;;;;;;48488:48;;-1:-1:-1;48572:38:0;;48488:48;48572:26;:38::i;:::-;48563:4;48547:22;;;;:7;:22;;;;;;;;:63;;;;48625:11;:26;;;;;;48621:95;;;48694:4;48678:22;;;;:7;:22;;;;;;:38;;48705:10;48678:26;:38::i;:::-;48669:4;48653:22;;;;:7;:22;;;;;:63;48382:342;;;:::o;45961:147::-;46039:7;;:17;;46051:4;46039:11;:17::i;:::-;46029:7;:27;46080:10;;:20;;46095:4;46080:14;:20::i;:::-;46067:10;:33;-1:-1:-1;;45961:147:0:o

Swarm Source

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