ETH Price: $2,636.60 (+0.30%)

Token

科达币 (科达币)
 

Overview

Max Total Supply

45,000,000,000 科达币

Holders

125

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
99,002.574654665 科达币

Value
$0.00
0x31edb68d05d16d8a9a0a23cf7769370c0f580ffa
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:
KDT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-14
*/

/**
 *Submitted for verification at Etherscan.io on 2023-08-02
*/

/**
 *Submitted for verification at BscScan.com on 2022-10-25
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @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);
}


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: @openzeppelin/contracts/utils/Address.sol


// pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// Dependency file: contracts/interfaces/IUniswapV2Router02.sol

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

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


// Dependency file: contracts/interfaces/IUniswapV2Factory.sol

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


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard,
    antiBotStandard,
    liquidityGenerator,
    antiBotLiquidityGenerator,
    baby,
    antiBotBaby,
    buybackBaby,
    antiBotBuybackBaby
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/liquidity-generator/LiquidityGeneratorToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "@openzeppelin/contracts/utils/Address.sol";
// import "contracts/interfaces/IUniswapV2Router02.sol";
// import "contracts/interfaces/IUniswapV2Factory.sol";
// import "contracts/BaseToken.sol";

contract KDT is IERC20, Ownable, BaseToken {

    mapping (address => bool) private _blacklist;


    using SafeMath for uint256;
    using Address for address;

    uint256 public constant VERSION = 2;

    uint256 public constant MAX_FEE = 10**4 / 4;

    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;
    uint256 private _rTotal;
    uint256 private _tFeeTotal;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    uint256 public _taxFee;
    uint256 private _previousTaxFee;

    uint256 public _liquidityFee;
    uint256 private _previousLiquidityFee;

    uint256 public _charityFee;
    uint256 private _previousCharityFee;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public _charityAddress;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled;

    uint256 private numTokensSellToAddToLiquidity;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyAmountUpdated(uint256 amount);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    constructor(
       
    ) payable {
      
        address charityAddress_= msg.sender;
        address router_ = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

        _name = unicode"科达币";//名字
        _symbol = unicode"科达币";//简称
        uint256 totalSupply_ = 45000000000 * 10 ** 9;//发行量
        _taxFee = 100;//交易税1%
        _liquidityFee = 1;//流动性回流0.01%
        _charityFee = 100;//营销百分比0.01%



        address serviceFeeReceiver_ = msg.sender;
        uint256 serviceFee_ = 0;


        _decimals = 9;

        _tTotal = totalSupply_;
        _rTotal = (MAX - (MAX % _tTotal));

        _previousTaxFee = _taxFee;

        _previousLiquidityFee = _liquidityFee;

        _charityAddress = charityAddress_;
        _previousCharityFee = _charityFee;

        numTokensSellToAddToLiquidity = totalSupply_.div(10**3); // 0.1%

        swapAndLiquifyEnabled = true;

        _rOwned[owner()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_);
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

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

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

        emit Transfer(address(0), owner(), _tTotal);

        emit TokenCreated(
            owner(),
            address(this),
            TokenType.liquidityGenerator,
            VERSION
        );

        payable(serviceFeeReceiver_).transfer(serviceFee_);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    function 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 _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tCharity
        ) = _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);
        _takeCharityFee(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

    function setTaxFeePercent(uint256 taxFeeBps) external onlyOwner {
        _taxFee = taxFeeBps;
        require(
            _taxFee + _liquidityFee + _charityFee <= MAX_FEE,
            "Total fee is over 25%"
        );
    }

    function setLiquidityFeePercent(uint256 liquidityFeeBps)
        external
        onlyOwner
    {
        _liquidityFee = liquidityFeeBps;
        require(
            _taxFee + _liquidityFee + _charityFee <= MAX_FEE,
            "Total fee is over 25%"
        );
    }

    function setCharityFeePercent(uint256 charityFeeBps) external onlyOwner {
        _charityFee = charityFeeBps;
        require(
            _taxFee + _liquidityFee + _charityFee <= MAX_FEE,
            "Total fee is over 25%"
        );
    }

    function setSwapBackSettings(uint256 _amount) external onlyOwner {
        require(
            _amount >= totalSupply().mul(5).div(10**4),
            "Swapback amount should be at least 0.05% of total supply"
        );
        numTokensSellToAddToLiquidity = _amount;
        emit SwapAndLiquifyAmountUpdated(_amount);
    }

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

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

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

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

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tCharity,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rCharity = tCharity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(
            rCharity
        );
        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 _takeCharityFee(uint256 tCharity) private {
        if (tCharity > 0) {
            uint256 currentRate = _getRate();
            uint256 rCharity = tCharity.mul(currentRate);
            _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity);
            if (_isExcluded[_charityAddress])
                _tOwned[_charityAddress] = _tOwned[_charityAddress].add(
                    tCharity
                );
            emit Transfer(_msgSender(), _charityAddress, tCharity);
        }
    }

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

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

    function calculateCharityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        if (_charityAddress == address(0)) return 0;
        return _amount.mul(_charityFee).div(10**4);
    }

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

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

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

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

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

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

    function blacklist(address account) public onlyOwner {
        _blacklist[account] = true;
    }

    function unblacklist(address account) public onlyOwner {
        _blacklist[account] = false;
    }

    function isBlacklisted(address account) public view returns (bool) {
        return _blacklist[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(!_blacklist[from], "Sender is blacklisted");
        require(!_blacklist[to], "Recipient is blacklisted");
        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");

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

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

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

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

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

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

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

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

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

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0xdead),
            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,
            uint256 tCharity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeCharityFee(tCharity);
        _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,
            uint256 tCharity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeCharityFee(tCharity);
        _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,
            uint256 tCharity
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeCharityFee(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"uint256","name":"amount","type":"uint256"}],"name":"SwapAndLiquifyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","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":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","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":"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":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFeeBps","type":"uint256"}],"name":"setCharityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFeeBps","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFeeBps","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526200000f336200047f565b60408051808201909152600980825268e7a791e8bebee5b88160b81b60209092019182523391737a250d5630b4cf539739df2c5dacb4c659f2488d916200005991600b91620004e4565b5060408051808201909152600980825268e7a791e8bebee5b88160b81b60209092019182526200008c91600c91620004e4565b506064600e8190556001601055601255600d805460ff19166009179055680270801d946c9400006008819055336000620000c98360001962000658565b620000d790600019620005f7565b600955600e54600f55601054601155601680546001600160a01b0319166001600160a01b03871617905560125460135562000121836103e8620004cf602090811b620012a117901c565b6017556016805460ff60a81b1916600160a81b17905560095460026000620001516000546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000849050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001b457600080fd5b505afa158015620001c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ef91906200058a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023857600080fd5b505afa1580156200024d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027391906200058a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002bc57600080fd5b505af1158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f791906200058a565b601580546001600160a01b03199081166001600160a01b0393841617909155601480549091169183169190911790556001600560006200033f6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620003926000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600854604051620003da91815260200190565b60405180910390a330620003f66000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260028060405162000433929190620005b3565b60405180910390a36040516001600160a01b0384169083156108fc029084906000818181858888f1935050505015801562000472573d6000803e3d6000fd5b5050505050505062000685565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620004dd8284620005e0565b9392505050565b828054620004f2906200061b565b90600052602060002090601f01602090048101928262000516576000855562000561565b82601f106200053157805160ff191683800117855562000561565b8280016001018555821562000561579182015b828111156200056157825182559160200191906001019062000544565b506200056f92915062000573565b5090565b5b808211156200056f576000815560010162000574565b6000602082840312156200059c578081fd5b81516001600160a01b0381168114620004dd578182fd5b6040810160088410620005d657634e487b7160e01b600052602160045260246000fd5b9281526020015290565b600082620005f257620005f26200066f565b500490565b6000828210156200061657634e487b7160e01b81526011600452602481fd5b500390565b600181811c908216806200063057607f821691505b602082108114156200065257634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200066a576200066a6200066f565b500690565b634e487b7160e01b600052601260045260246000fd5b61276480620006956000396000f3fe6080604052600436106102345760003560e01c806352390c021161012e57806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e1461069e578063f2fde38b146106e4578063f9f92be414610704578063fe575a8714610724578063ffa1ad741461075d57600080fd5b806395d89b4114610613578063a457c2d714610628578063a9059cbb14610648578063af41063b14610668578063bc063e1a1461068857600080fd5b806375e3661e116100f257806375e3661e1461055c578063796431d01461057c57806388f820201461059c5780638da5cb5b146105d55780638ee88c53146105f357600080fd5b806352390c02146104b85780635342acb4146104d85780636bc87c3a1461051157806370a0823114610527578063715018a61461054757600080fd5b8063313ce567116101bc57806340f8007a1161018057806340f8007a14610421578063437823ec146104375780634549b0391461045757806349bd5a5e146104775780634a74bb021461049757600080fd5b8063313ce567146103895780633685d419146103ab57806339509351146103cb5780633b124fe7146103eb5780633bd5d1731461040157600080fd5b80631694505e116102035780631694505e146102dc57806318160ddd1461031457806319a8ac9e1461032957806323b872dd146103495780632d8381191461036957600080fd5b8063061c82d01461024057806306fdde0314610262578063095ea7b31461028d57806313114a9d146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b36600461248d565b610772565b005b34801561026e57600080fd5b50610277610812565b60405161028491906124fa565b60405180910390f35b34801561029957600080fd5b506102ad6102a8366004612462565b6108a4565b6040519015158152602001610284565b3480156102c957600080fd5b50600a545b604051908152602001610284565b3480156102e857600080fd5b506014546102fc906001600160a01b031681565b6040516001600160a01b039091168152602001610284565b34801561032057600080fd5b506008546102ce565b34801561033557600080fd5b506016546102fc906001600160a01b031681565b34801561035557600080fd5b506102ad610364366004612422565b6108bb565b34801561037557600080fd5b506102ce61038436600461248d565b610924565b34801561039557600080fd5b50600d5460405160ff9091168152602001610284565b3480156103b757600080fd5b506102606103c63660046123b2565b6109a8565b3480156103d757600080fd5b506102ad6103e6366004612462565b610b97565b3480156103f757600080fd5b506102ce600e5481565b34801561040d57600080fd5b5061026061041c36600461248d565b610bcd565b34801561042d57600080fd5b506102ce60125481565b34801561044357600080fd5b506102606104523660046123b2565b610cb9565b34801561046357600080fd5b506102ce6104723660046124a5565b610d07565b34801561048357600080fd5b506015546102fc906001600160a01b031681565b3480156104a357600080fd5b506016546102ad90600160a81b900460ff1681565b3480156104c457600080fd5b506102606104d33660046123b2565b610d96565b3480156104e457600080fd5b506102ad6104f33660046123b2565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561051d57600080fd5b506102ce60105481565b34801561053357600080fd5b506102ce6105423660046123b2565b610ee9565b34801561055357600080fd5b50610260610f48565b34801561056857600080fd5b506102606105773660046123b2565b610f7e565b34801561058857600080fd5b5061026061059736600461248d565b610fc9565b3480156105a857600080fd5b506102ad6105b73660046123b2565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105e157600080fd5b506000546001600160a01b03166102fc565b3480156105ff57600080fd5b5061026061060e36600461248d565b6110c3565b34801561061f57600080fd5b50610277611108565b34801561063457600080fd5b506102ad610643366004612462565b611117565b34801561065457600080fd5b506102ad610663366004612462565b611166565b34801561067457600080fd5b5061026061068336600461248d565b611173565b34801561069457600080fd5b506102ce6109c481565b3480156106aa57600080fd5b506102ce6106b93660046123ea565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156106f057600080fd5b506102606106ff3660046123b2565b6111b8565b34801561071057600080fd5b5061026061071f3660046123b2565b611250565b34801561073057600080fd5b506102ad61073f3660046123b2565b6001600160a01b031660009081526001602052604090205460ff1690565b34801561076957600080fd5b506102ce600281565b6000546001600160a01b031633146107a55760405162461bcd60e51b815260040161079c9061254d565b60405180910390fd5b600e8190556012546010546109c491906107bf90846125f2565b6107c991906125f2565b111561080f5760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b604482015260640161079c565b50565b6060600b805461082190612660565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612660565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108b13384846112ad565b5060015b92915050565b60006108c88484846113d2565b61091a8433610915856040518060600160405280602881526020016126e2602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611691565b6112ad565b5060019392505050565b600060095482111561098b5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161079c565b60006109956116bd565b90506109a183826112a1565b9392505050565b6000546001600160a01b031633146109d25760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03811660009081526006602052604090205460ff16610a3a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161079c565b60005b600754811015610b9357816001600160a01b031660078281548110610a7257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b815760078054610a9d90600190612649565b81548110610abb57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b039092169183908110610af557634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610b5b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b8b8161269b565b915050610a3d565b5050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916108b191859061091590866116e0565b3360008181526006602052604090205460ff1615610c425760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161079c565b6000610c4d836116ec565b5050506001600160a01b038616600090815260026020526040902054939450610c7b93925084915050611747565b6001600160a01b038316600090815260026020526040902055600954610ca19082611747565b600955600a54610cb190846116e0565b600a55505050565b6000546001600160a01b03163314610ce35760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600854831115610d5b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161079c565b81610d7b576000610d6b846116ec565b509496506108b595505050505050565b6000610d86846116ec565b509396506108b595505050505050565b6000546001600160a01b03163314610dc05760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03811660009081526006602052604090205460ff1615610e295760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161079c565b6001600160a01b03811660009081526002602052604090205415610e83576001600160a01b038116600090815260026020526040902054610e6990610924565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff1615610f2657506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546108b590610924565b6000546001600160a01b03163314610f725760405162461bcd60e51b815260040161079c9061254d565b610f7c6000611753565b565b6000546001600160a01b03163314610fa85760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6000546001600160a01b03163314610ff35760405162461bcd60e51b815260040161079c9061254d565b61101361271061100d600561100760085490565b906117a3565b906112a1565b8110156110885760405162461bcd60e51b815260206004820152603860248201527f537761706261636b20616d6f756e742073686f756c64206265206174206c656160448201527f737420302e303525206f6620746f74616c20737570706c790000000000000000606482015260840161079c565b60178190556040518181527ff7edd1a72d399eb95c56c07c5a26f00a9096735269c96c75caa8fc4e15bcd5d29060200160405180910390a150565b6000546001600160a01b031633146110ed5760405162461bcd60e51b815260040161079c9061254d565b6010819055601254600e546109c491906107bf9084906125f2565b6060600c805461082190612660565b60006108b133846109158560405180606001604052806025815260200161270a602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611691565b60006108b13384846113d2565b6000546001600160a01b0316331461119d5760405162461bcd60e51b815260040161079c9061254d565b6012819055601054600e546109c49183916107bf91906125f2565b6000546001600160a01b031633146111e25760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b0381166112475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b61080f81611753565b6000546001600160a01b0316331461127a5760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b60006109a1828461260a565b6001600160a01b03831661130f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079c565b6001600160a01b0382166113705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831660009081526001602052604090205460ff16156114335760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015260640161079c565b6001600160a01b03821660009081526001602052604090205460ff161561149c5760405162461bcd60e51b815260206004820152601860248201527f526563697069656e7420697320626c61636b6c69737465640000000000000000604482015260640161079c565b6001600160a01b0383166115005760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161079c565b6001600160a01b0382166115625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161079c565b600081116115c45760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161079c565b60006115cf30610ee9565b601754909150811080159081906115f05750601654600160a01b900460ff16155b801561160a57506015546001600160a01b03868116911614155b801561161f5750601654600160a81b900460ff165b15611632576017549150611632826117af565b6001600160a01b03851660009081526005602052604090205460019060ff168061167457506001600160a01b03851660009081526005602052604090205460ff165b1561167d575060005b61168986868684611856565b505050505050565b600081848411156116b55760405162461bcd60e51b815260040161079c91906124fa565b505050900390565b60008060006116ca6119f6565b90925090506116d982826112a1565b9250505090565b60006109a182846125f2565b60008060008060008060008060008060006117068c611bb0565b935093509350935060008060006117278f8787876117226116bd565b611c05565b919f509d509b509599509397509195509350505050919395979092949650565b60006109a18284612649565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109a1828461262a565b6016805460ff60a01b1916600160a01b17905560006117cf8260026112a1565b905060006117dd8383611747565b9050476117e983611c67565b60006117f54783611747565b90506118018382611de4565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff60a01b19169055505050565b8061188057611880600e8054600f5560108054601155601280546013556000928390559082905555565b6001600160a01b03841660009081526006602052604090205460ff1680156118c157506001600160a01b03831660009081526006602052604090205460ff16155b156118d6576118d1848484611ea5565b6119d4565b6001600160a01b03841660009081526006602052604090205460ff1615801561191757506001600160a01b03831660009081526006602052604090205460ff165b15611927576118d1848484611feb565b6001600160a01b03841660009081526006602052604090205460ff1615801561196957506001600160a01b03831660009081526006602052604090205460ff16155b15611979576118d18484846120aa565b6001600160a01b03841660009081526006602052604090205460ff1680156119b957506001600160a01b03831660009081526006602052604090205460ff165b156119c9576118d1848484612104565b6119d48484846120aa565b806119f0576119f0600f54600e55601154601055601354601255565b50505050565b6009546008546000918291825b600754811015611b8057826002600060078481548110611a3357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611aac5750816003600060078481548110611a8557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611ac257600954600854945094505050509091565b611b166002600060078481548110611aea57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611747565b9250611b6c6003600060078481548110611b4057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611747565b915080611b788161269b565b915050611a03565b50600854600954611b90916112a1565b821015611ba7576009546008549350935050509091565b90939092509050565b6000806000806000611bc18661218d565b90506000611bce876121aa565b90506000611bdb886121c7565b90506000611bf582611bef85818d89611747565b90611747565b9993985091965094509092505050565b6000808080611c1489866117a3565b90506000611c2289876117a3565b90506000611c3089886117a3565b90506000611c3e89896117a3565b90506000611c5282611bef85818989611747565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611caa57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611cfe57600080fd5b505afa158015611d12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3691906123ce565b81600181518110611d5757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601454611d7d91309116846112ad565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac94790611db6908590600090869030904290600401612582565b600060405180830381600087803b158015611dd057600080fd5b505af1158015611689573d6000803e3d6000fd5b601454611dfc9030906001600160a01b0316846112ad565b60145460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611e6557600080fd5b505af1158015611e79573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e9e91906124cd565b5050505050565b6000806000806000806000611eb9886116ec565b9650965096509650965096509650611eff88600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611f2e9088611747565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611f5d90876116e0565b6001600160a01b038a16600090815260026020526040902055611f7f826121fd565b611f8881612286565b611f92858461238e565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611fd791815260200190565b60405180910390a350505050505050505050565b6000806000806000806000611fff886116ec565b965096509650965096509650965061204587600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6001600160a01b03808c16600090815260026020908152604080832094909455918c1681526003909152205461207b90856116e0565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611f5d90876116e0565b60008060008060008060006120be886116ec565b9650965096509650965096509650611f2e87600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6000806000806000806000612118886116ec565b965096509650965096509650965061215e88600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546120459088611747565b60006108b561271061100d600e54856117a390919063ffffffff16565b60006108b561271061100d601054856117a390919063ffffffff16565b6016546000906001600160a01b03166121e257506000919050565b6108b561271061100d601254856117a390919063ffffffff16565b60006122076116bd565b9050600061221583836117a3565b3060009081526002602052604090205490915061223290826116e0565b3060009081526002602090815260408083209390935560069052205460ff1615612281573060009081526003602052604090205461227090846116e0565b306000908152600360205260409020555b505050565b801561080f5760006122966116bd565b905060006122a483836117a3565b6016546001600160a01b03166000908152600260205260409020549091506122cc90826116e0565b601680546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612347576016546001600160a01b031660009081526003602052604090205461232b90846116e0565b6016546001600160a01b03166000908152600360205260409020555b6016546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516113c591815260200190565b60095461239b9083611747565b600955600a546123ab90826116e0565b600a555050565b6000602082840312156123c3578081fd5b81356109a1816126cc565b6000602082840312156123df578081fd5b81516109a1816126cc565b600080604083850312156123fc578081fd5b8235612407816126cc565b91506020830135612417816126cc565b809150509250929050565b600080600060608486031215612436578081fd5b8335612441816126cc565b92506020840135612451816126cc565b929592945050506040919091013590565b60008060408385031215612474578182fd5b823561247f816126cc565b946020939093013593505050565b60006020828403121561249e578081fd5b5035919050565b600080604083850312156124b7578182fd5b8235915060208301358015158114612417578182fd5b6000806000606084860312156124e1578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b818110156125265785810183015185820160400152820161250a565b818111156125375783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156125d15784516001600160a01b0316835293830193918301916001016125ac565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612605576126056126b6565b500190565b60008261262557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612644576126446126b6565b500290565b60008282101561265b5761265b6126b6565b500390565b600181811c9082168061267457607f821691505b6020821081141561269557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126af576126af6126b6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461080f57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d0254242ed3554062fd3ac6e2755a16c3b138edc2b86e5ef124db17464a8eed964736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806352390c021161012e57806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e1461069e578063f2fde38b146106e4578063f9f92be414610704578063fe575a8714610724578063ffa1ad741461075d57600080fd5b806395d89b4114610613578063a457c2d714610628578063a9059cbb14610648578063af41063b14610668578063bc063e1a1461068857600080fd5b806375e3661e116100f257806375e3661e1461055c578063796431d01461057c57806388f820201461059c5780638da5cb5b146105d55780638ee88c53146105f357600080fd5b806352390c02146104b85780635342acb4146104d85780636bc87c3a1461051157806370a0823114610527578063715018a61461054757600080fd5b8063313ce567116101bc57806340f8007a1161018057806340f8007a14610421578063437823ec146104375780634549b0391461045757806349bd5a5e146104775780634a74bb021461049757600080fd5b8063313ce567146103895780633685d419146103ab57806339509351146103cb5780633b124fe7146103eb5780633bd5d1731461040157600080fd5b80631694505e116102035780631694505e146102dc57806318160ddd1461031457806319a8ac9e1461032957806323b872dd146103495780632d8381191461036957600080fd5b8063061c82d01461024057806306fdde0314610262578063095ea7b31461028d57806313114a9d146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b36600461248d565b610772565b005b34801561026e57600080fd5b50610277610812565b60405161028491906124fa565b60405180910390f35b34801561029957600080fd5b506102ad6102a8366004612462565b6108a4565b6040519015158152602001610284565b3480156102c957600080fd5b50600a545b604051908152602001610284565b3480156102e857600080fd5b506014546102fc906001600160a01b031681565b6040516001600160a01b039091168152602001610284565b34801561032057600080fd5b506008546102ce565b34801561033557600080fd5b506016546102fc906001600160a01b031681565b34801561035557600080fd5b506102ad610364366004612422565b6108bb565b34801561037557600080fd5b506102ce61038436600461248d565b610924565b34801561039557600080fd5b50600d5460405160ff9091168152602001610284565b3480156103b757600080fd5b506102606103c63660046123b2565b6109a8565b3480156103d757600080fd5b506102ad6103e6366004612462565b610b97565b3480156103f757600080fd5b506102ce600e5481565b34801561040d57600080fd5b5061026061041c36600461248d565b610bcd565b34801561042d57600080fd5b506102ce60125481565b34801561044357600080fd5b506102606104523660046123b2565b610cb9565b34801561046357600080fd5b506102ce6104723660046124a5565b610d07565b34801561048357600080fd5b506015546102fc906001600160a01b031681565b3480156104a357600080fd5b506016546102ad90600160a81b900460ff1681565b3480156104c457600080fd5b506102606104d33660046123b2565b610d96565b3480156104e457600080fd5b506102ad6104f33660046123b2565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561051d57600080fd5b506102ce60105481565b34801561053357600080fd5b506102ce6105423660046123b2565b610ee9565b34801561055357600080fd5b50610260610f48565b34801561056857600080fd5b506102606105773660046123b2565b610f7e565b34801561058857600080fd5b5061026061059736600461248d565b610fc9565b3480156105a857600080fd5b506102ad6105b73660046123b2565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105e157600080fd5b506000546001600160a01b03166102fc565b3480156105ff57600080fd5b5061026061060e36600461248d565b6110c3565b34801561061f57600080fd5b50610277611108565b34801561063457600080fd5b506102ad610643366004612462565b611117565b34801561065457600080fd5b506102ad610663366004612462565b611166565b34801561067457600080fd5b5061026061068336600461248d565b611173565b34801561069457600080fd5b506102ce6109c481565b3480156106aa57600080fd5b506102ce6106b93660046123ea565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156106f057600080fd5b506102606106ff3660046123b2565b6111b8565b34801561071057600080fd5b5061026061071f3660046123b2565b611250565b34801561073057600080fd5b506102ad61073f3660046123b2565b6001600160a01b031660009081526001602052604090205460ff1690565b34801561076957600080fd5b506102ce600281565b6000546001600160a01b031633146107a55760405162461bcd60e51b815260040161079c9061254d565b60405180910390fd5b600e8190556012546010546109c491906107bf90846125f2565b6107c991906125f2565b111561080f5760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b604482015260640161079c565b50565b6060600b805461082190612660565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612660565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108b13384846112ad565b5060015b92915050565b60006108c88484846113d2565b61091a8433610915856040518060600160405280602881526020016126e2602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611691565b6112ad565b5060019392505050565b600060095482111561098b5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161079c565b60006109956116bd565b90506109a183826112a1565b9392505050565b6000546001600160a01b031633146109d25760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03811660009081526006602052604090205460ff16610a3a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161079c565b60005b600754811015610b9357816001600160a01b031660078281548110610a7257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b815760078054610a9d90600190612649565b81548110610abb57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b039092169183908110610af557634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610b5b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b8b8161269b565b915050610a3d565b5050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916108b191859061091590866116e0565b3360008181526006602052604090205460ff1615610c425760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161079c565b6000610c4d836116ec565b5050506001600160a01b038616600090815260026020526040902054939450610c7b93925084915050611747565b6001600160a01b038316600090815260026020526040902055600954610ca19082611747565b600955600a54610cb190846116e0565b600a55505050565b6000546001600160a01b03163314610ce35760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600854831115610d5b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161079c565b81610d7b576000610d6b846116ec565b509496506108b595505050505050565b6000610d86846116ec565b509396506108b595505050505050565b6000546001600160a01b03163314610dc05760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03811660009081526006602052604090205460ff1615610e295760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161079c565b6001600160a01b03811660009081526002602052604090205415610e83576001600160a01b038116600090815260026020526040902054610e6990610924565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff1615610f2657506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546108b590610924565b6000546001600160a01b03163314610f725760405162461bcd60e51b815260040161079c9061254d565b610f7c6000611753565b565b6000546001600160a01b03163314610fa85760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6000546001600160a01b03163314610ff35760405162461bcd60e51b815260040161079c9061254d565b61101361271061100d600561100760085490565b906117a3565b906112a1565b8110156110885760405162461bcd60e51b815260206004820152603860248201527f537761706261636b20616d6f756e742073686f756c64206265206174206c656160448201527f737420302e303525206f6620746f74616c20737570706c790000000000000000606482015260840161079c565b60178190556040518181527ff7edd1a72d399eb95c56c07c5a26f00a9096735269c96c75caa8fc4e15bcd5d29060200160405180910390a150565b6000546001600160a01b031633146110ed5760405162461bcd60e51b815260040161079c9061254d565b6010819055601254600e546109c491906107bf9084906125f2565b6060600c805461082190612660565b60006108b133846109158560405180606001604052806025815260200161270a602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611691565b60006108b13384846113d2565b6000546001600160a01b0316331461119d5760405162461bcd60e51b815260040161079c9061254d565b6012819055601054600e546109c49183916107bf91906125f2565b6000546001600160a01b031633146111e25760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b0381166112475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079c565b61080f81611753565b6000546001600160a01b0316331461127a5760405162461bcd60e51b815260040161079c9061254d565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b60006109a1828461260a565b6001600160a01b03831661130f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079c565b6001600160a01b0382166113705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831660009081526001602052604090205460ff16156114335760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015260640161079c565b6001600160a01b03821660009081526001602052604090205460ff161561149c5760405162461bcd60e51b815260206004820152601860248201527f526563697069656e7420697320626c61636b6c69737465640000000000000000604482015260640161079c565b6001600160a01b0383166115005760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161079c565b6001600160a01b0382166115625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161079c565b600081116115c45760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161079c565b60006115cf30610ee9565b601754909150811080159081906115f05750601654600160a01b900460ff16155b801561160a57506015546001600160a01b03868116911614155b801561161f5750601654600160a81b900460ff165b15611632576017549150611632826117af565b6001600160a01b03851660009081526005602052604090205460019060ff168061167457506001600160a01b03851660009081526005602052604090205460ff165b1561167d575060005b61168986868684611856565b505050505050565b600081848411156116b55760405162461bcd60e51b815260040161079c91906124fa565b505050900390565b60008060006116ca6119f6565b90925090506116d982826112a1565b9250505090565b60006109a182846125f2565b60008060008060008060008060008060006117068c611bb0565b935093509350935060008060006117278f8787876117226116bd565b611c05565b919f509d509b509599509397509195509350505050919395979092949650565b60006109a18284612649565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109a1828461262a565b6016805460ff60a01b1916600160a01b17905560006117cf8260026112a1565b905060006117dd8383611747565b9050476117e983611c67565b60006117f54783611747565b90506118018382611de4565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff60a01b19169055505050565b8061188057611880600e8054600f5560108054601155601280546013556000928390559082905555565b6001600160a01b03841660009081526006602052604090205460ff1680156118c157506001600160a01b03831660009081526006602052604090205460ff16155b156118d6576118d1848484611ea5565b6119d4565b6001600160a01b03841660009081526006602052604090205460ff1615801561191757506001600160a01b03831660009081526006602052604090205460ff165b15611927576118d1848484611feb565b6001600160a01b03841660009081526006602052604090205460ff1615801561196957506001600160a01b03831660009081526006602052604090205460ff16155b15611979576118d18484846120aa565b6001600160a01b03841660009081526006602052604090205460ff1680156119b957506001600160a01b03831660009081526006602052604090205460ff165b156119c9576118d1848484612104565b6119d48484846120aa565b806119f0576119f0600f54600e55601154601055601354601255565b50505050565b6009546008546000918291825b600754811015611b8057826002600060078481548110611a3357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611aac5750816003600060078481548110611a8557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611ac257600954600854945094505050509091565b611b166002600060078481548110611aea57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611747565b9250611b6c6003600060078481548110611b4057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611747565b915080611b788161269b565b915050611a03565b50600854600954611b90916112a1565b821015611ba7576009546008549350935050509091565b90939092509050565b6000806000806000611bc18661218d565b90506000611bce876121aa565b90506000611bdb886121c7565b90506000611bf582611bef85818d89611747565b90611747565b9993985091965094509092505050565b6000808080611c1489866117a3565b90506000611c2289876117a3565b90506000611c3089886117a3565b90506000611c3e89896117a3565b90506000611c5282611bef85818989611747565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611caa57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611cfe57600080fd5b505afa158015611d12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3691906123ce565b81600181518110611d5757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601454611d7d91309116846112ad565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac94790611db6908590600090869030904290600401612582565b600060405180830381600087803b158015611dd057600080fd5b505af1158015611689573d6000803e3d6000fd5b601454611dfc9030906001600160a01b0316846112ad565b60145460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015611e6557600080fd5b505af1158015611e79573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e9e91906124cd565b5050505050565b6000806000806000806000611eb9886116ec565b9650965096509650965096509650611eff88600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611f2e9088611747565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611f5d90876116e0565b6001600160a01b038a16600090815260026020526040902055611f7f826121fd565b611f8881612286565b611f92858461238e565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611fd791815260200190565b60405180910390a350505050505050505050565b6000806000806000806000611fff886116ec565b965096509650965096509650965061204587600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6001600160a01b03808c16600090815260026020908152604080832094909455918c1681526003909152205461207b90856116e0565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611f5d90876116e0565b60008060008060008060006120be886116ec565b9650965096509650965096509650611f2e87600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6000806000806000806000612118886116ec565b965096509650965096509650965061215e88600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461174790919063ffffffff16565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546120459088611747565b60006108b561271061100d600e54856117a390919063ffffffff16565b60006108b561271061100d601054856117a390919063ffffffff16565b6016546000906001600160a01b03166121e257506000919050565b6108b561271061100d601254856117a390919063ffffffff16565b60006122076116bd565b9050600061221583836117a3565b3060009081526002602052604090205490915061223290826116e0565b3060009081526002602090815260408083209390935560069052205460ff1615612281573060009081526003602052604090205461227090846116e0565b306000908152600360205260409020555b505050565b801561080f5760006122966116bd565b905060006122a483836117a3565b6016546001600160a01b03166000908152600260205260409020549091506122cc90826116e0565b601680546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612347576016546001600160a01b031660009081526003602052604090205461232b90846116e0565b6016546001600160a01b03166000908152600360205260409020555b6016546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516113c591815260200190565b60095461239b9083611747565b600955600a546123ab90826116e0565b600a555050565b6000602082840312156123c3578081fd5b81356109a1816126cc565b6000602082840312156123df578081fd5b81516109a1816126cc565b600080604083850312156123fc578081fd5b8235612407816126cc565b91506020830135612417816126cc565b809150509250929050565b600080600060608486031215612436578081fd5b8335612441816126cc565b92506020840135612451816126cc565b929592945050506040919091013590565b60008060408385031215612474578182fd5b823561247f816126cc565b946020939093013593505050565b60006020828403121561249e578081fd5b5035919050565b600080604083850312156124b7578182fd5b8235915060208301358015158114612417578182fd5b6000806000606084860312156124e1578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b818110156125265785810183015185820160400152820161250a565b818111156125375783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156125d15784516001600160a01b0316835293830193918301916001016125ac565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612605576126056126b6565b500190565b60008261262557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612644576126446126b6565b500290565b60008282101561265b5761265b6126b6565b500390565b600181811c9082168061267457607f821691505b6020821081141561269557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126af576126af6126b6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461080f57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d0254242ed3554062fd3ac6e2755a16c3b138edc2b86e5ef124db17464a8eed964736f6c63430008040033

Deployed Bytecode Sourcemap

28878:23087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38071:232;;;;;;;;;;-1:-1:-1;38071:232:0;;;;;:::i;:::-;;:::i;:::-;;32352:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33337:193;;;;;;;;;;-1:-1:-1;33337:193:0;;;;;:::i;:::-;;:::i;:::-;;;3613:14:1;;3606:22;3588:41;;3576:2;3561:18;33337:193:0;3543:92:1;34836:87:0;;;;;;;;;;-1:-1:-1;34905:10:0;;34836:87;;;10443:25:1;;;10431:2;10416:18;34836:87:0;10398:76:1;29928:41:0;;;;;;;;;;-1:-1:-1;29928:41:0;;;;-1:-1:-1;;;;;29928:41:0;;;;;;-1:-1:-1;;;;;2792:32:1;;;2774:51;;2762:2;2747:18;29928:41:0;2729:102:1;32629:95:0;;;;;;;;;;-1:-1:-1;32709:7:0;;32629:95;;30011:30;;;;;;;;;;-1:-1:-1;30011:30:0;;;;-1:-1:-1;;;;;30011:30:0;;;33538:446;;;;;;;;;;-1:-1:-1;33538:446:0;;;;;:::i;:::-;;:::i;35851:322::-;;;;;;;;;;-1:-1:-1;35851:322:0;;;;;:::i;:::-;;:::i;32538:83::-;;;;;;;;;;-1:-1:-1;32604:9:0;;32538:83;;32604:9;;;;11933:36:1;;11921:2;11906:18;32538:83:0;11888:87:1;36635:477:0;;;;;;;;;;-1:-1:-1;36635:477:0;;;;;:::i;:::-;;:::i;33992:300::-;;;;;;;;;;-1:-1:-1;33992:300:0;;;;;:::i;:::-;;:::i;29701:22::-;;;;;;;;;;;;;;;;34931:421;;;;;;;;;;-1:-1:-1;34931:421:0;;;;;:::i;:::-;;:::i;29851:26::-;;;;;;;;;;;;;;;;37952:111;;;;;;;;;;-1:-1:-1;37952:111:0;;;;;:::i;:::-;;:::i;35360:483::-;;;;;;;;;;-1:-1:-1;35360:483:0;;;;;:::i;:::-;;:::i;29976:28::-;;;;;;;;;;-1:-1:-1;29976:28:0;;;;-1:-1:-1;;;;;29976:28:0;;;30078:33;;;;;;;;;;-1:-1:-1;30078:33:0;;;;-1:-1:-1;;;30078:33:0;;;;;;36181:446;;;;;;;;;;-1:-1:-1;36181:446:0;;;;;:::i;:::-;;:::i;44196:124::-;;;;;;;;;;-1:-1:-1;44196:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;44285:27:0;44261:4;44285:27;;;:18;:27;;;;;;;;;44196:124;29770:28;;;;;;;;;;;;;;;;32732:198;;;;;;;;;;-1:-1:-1;32732:198:0;;;;;:::i;:::-;;:::i;5595:94::-;;;;;;;;;;;;;:::i;44813:101::-;;;;;;;;;;-1:-1:-1;44813:101:0;;;;;:::i;:::-;;:::i;38854:334::-;;;;;;;;;;-1:-1:-1;38854:334:0;;;;;:::i;:::-;;:::i;34708:120::-;;;;;;;;;;-1:-1:-1;34708:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;34800:20:0;34776:4;34800:20;;;:11;:20;;;;;;;;;34708:120;4944:87;;;;;;;;;;-1:-1:-1;4990:7:0;5017:6;-1:-1:-1;;;;;5017:6:0;4944:87;;38311:279;;;;;;;;;;-1:-1:-1;38311:279:0;;;;;:::i;:::-;;:::i;32443:87::-;;;;;;;;;;;;;:::i;34300:400::-;;;;;;;;;;-1:-1:-1;34300:400:0;;;;;:::i;:::-;;:::i;32938:199::-;;;;;;;;;;-1:-1:-1;32938:199:0;;;;;:::i;:::-;;:::i;38598:248::-;;;;;;;;;;-1:-1:-1;38598:248:0;;;;;:::i;:::-;;:::i;29096:43::-;;;;;;;;;;;;29130:9;29096:43;;33145:184;;;;;;;;;;-1:-1:-1;33145:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;33294:18:0;;;33262:7;33294:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;33145:184;5844:192;;;;;;;;;;-1:-1:-1;5844:192:0;;;;;:::i;:::-;;:::i;44707:98::-;;;;;;;;;;-1:-1:-1;44707:98:0;;;;;:::i;:::-;;:::i;44922:112::-;;;;;;;;;;-1:-1:-1;44922:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;45007:19:0;44983:4;45007:19;;;:10;:19;;;;;;;;;44922:112;29052:35;;;;;;;;;;;;29086:1;29052:35;;38071:232;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;;;;;;;;;38146:7:::1;:19:::0;;;38224:11:::1;::::0;38208:13:::1;::::0;29130:9:::1;::::0;38224:11;38198:23:::1;::::0;38156:9;38198:23:::1;:::i;:::-;:37;;;;:::i;:::-;:48;;38176:119;;;::::0;-1:-1:-1;;;38176:119:0;;7019:2:1;38176:119:0::1;::::0;::::1;7001:21:1::0;7058:2;7038:18;;;7031:30;-1:-1:-1;;;7077:18:1;;;7070:51;7138:18;;38176:119:0::1;6991:171:1::0;38176:119:0::1;38071:232:::0;:::o;32352:83::-;32389:13;32422:5;32415:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32352:83;:::o;33337:193::-;33439:4;33461:39;3742:10;33484:7;33493:6;33461:8;:39::i;:::-;-1:-1:-1;33518:4:0;33337:193;;;;;:::o;33538:446::-;33670:4;33687:36;33697:6;33705:9;33716:6;33687:9;:36::i;:::-;33734:220;33757:6;3742:10;33805:138;33861:6;33805:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33805:19:0;;;;;;:11;:19;;;;;;;;3742:10;33805:33;;;;;;;;;;:37;:138::i;:::-;33734:8;:220::i;:::-;-1:-1:-1;33972:4:0;33538:446;;;;;:::o;35851:322::-;35945:7;36003;;35992;:18;;35970:110;;;;-1:-1:-1;;;35970:110:0;;5089:2:1;35970:110:0;;;5071:21:1;5128:2;5108:18;;;5101:30;5167:34;5147:18;;;5140:62;-1:-1:-1;;;5218:18:1;;;5211:40;5268:19;;35970:110:0;5061:232:1;35970:110:0;36091:19;36113:10;:8;:10::i;:::-;36091:32;-1:-1:-1;36141:24:0;:7;36091:32;36141:11;:24::i;:::-;36134:31;35851:322;-1:-1:-1;;;35851:322:0:o;36635:477::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36715:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36707:60;;;::::0;-1:-1:-1;;;36707:60:0;;6663:2:1;36707:60:0::1;::::0;::::1;6645:21:1::0;6702:2;6682:18;;;6675:30;6741:29;6721:18;;;6714:57;6788:18;;36707:60:0::1;6635:177:1::0;36707:60:0::1;36783:9;36778:327;36802:9;:16:::0;36798:20;::::1;36778:327;;;36860:7;-1:-1:-1::0;;;;;36844:23:0::1;:9;36854:1;36844:12;;;;;;-1:-1:-1::0;;;36844:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36844:12:0::1;:23;36840:254;;;36903:9;36913:16:::0;;:20:::1;::::0;36932:1:::1;::::0;36913:20:::1;:::i;:::-;36903:31;;;;;;-1:-1:-1::0;;;36903:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;36888:9:::1;:12:::0;;-1:-1:-1;;;;;36903:31:0;;::::1;::::0;36898:1;;36888:12;::::1;;;-1:-1:-1::0;;;36888:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;36888:46:0::1;-1:-1:-1::0;;;;;36888:46:0;;::::1;;::::0;;36953:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;36992:11:::1;:20:::0;;;;:28;;-1:-1:-1;;36992:28:0::1;::::0;;37039:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;37039:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;37039:15:0;;;;;-1:-1:-1;;;;;;37039:15:0::1;::::0;;;;;36778:327:::1;36635:477:::0;:::o;36840:254::-:1;36820:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36778:327;;;;36635:477:::0;:::o;33992:300::-;3742:10;34107:4;34201:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34201:34:0;;;;;;;;;;34107:4;;34129:133;;34179:7;;34201:50;;34240:10;34201:38;:50::i;34931:421::-;3742:10;34983:14;35046:19;;;:11;:19;;;;;;;;35045:20;35023:114;;;;-1:-1:-1;;;35023:114:0;;10086:2:1;35023:114:0;;;10068:21:1;10125:2;10105:18;;;10098:30;10164:34;10144:18;;;10137:62;-1:-1:-1;;;10215:18:1;;;10208:42;10267:19;;35023:114:0;10058:234:1;35023:114:0;35149:15;35180:19;35191:7;35180:10;:19::i;:::-;-1:-1:-1;;;;;;;;35228:15:0;;;;;;:7;:15;;;;;;35148:51;;-1:-1:-1;35228:28:0;;:15;-1:-1:-1;35148:51:0;;-1:-1:-1;;35228:19:0;:28::i;:::-;-1:-1:-1;;;;;35210:15:0;;;;;;:7;:15;;;;;:46;35277:7;;:20;;35289:7;35277:11;:20::i;:::-;35267:7;:30;35321:10;;:23;;35336:7;35321:14;:23::i;:::-;35308:10;:36;-1:-1:-1;;;34931:421:0:o;37952:111::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38021:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;38021:34:0::1;38051:4;38021:34;::::0;;37952:111::o;35360:483::-;35478:7;35522;;35511;:18;;35503:62;;;;-1:-1:-1;;;35503:62:0;;7369:2:1;35503:62:0;;;7351:21:1;7408:2;7388:18;;;7381:30;7447:33;7427:18;;;7420:61;7498:18;;35503:62:0;7341:181:1;35503:62:0;35581:17;35576:260;;35616:15;35647:19;35658:7;35647:10;:19::i;:::-;-1:-1:-1;35615:51:0;;-1:-1:-1;35681:14:0;;-1:-1:-1;;;;;;35681:14:0;35576:260;35731:23;35768:19;35779:7;35768:10;:19::i;:::-;-1:-1:-1;35728:59:0;;-1:-1:-1;35802:22:0;;-1:-1:-1;;;;;;35802:22:0;36181:446;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36376:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36375:21;36367:61;;;::::0;-1:-1:-1;;;36367:61:0;;6663:2:1;36367:61:0::1;::::0;::::1;6645:21:1::0;6702:2;6682:18;;;6675:30;6741:29;6721:18;;;6714:57;6788:18;;36367:61:0::1;6635:177:1::0;36367:61:0::1;-1:-1:-1::0;;;;;36443:16:0;::::1;36462:1;36443:16:::0;;;:7:::1;:16;::::0;;;;;:20;36439:109:::1;;-1:-1:-1::0;;;;;36519:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;36499:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;36480:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;36439:109:::1;-1:-1:-1::0;;;;;36558:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;36558:27:0::1;36581:4;36558:27:::0;;::::1;::::0;;;36596:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36596:23:0::1;::::0;;::::1;::::0;;36181:446::o;32732:198::-;-1:-1:-1;;;;;32822:20:0;;32798:7;32822:20;;;:11;:20;;;;;;;;32818:49;;;-1:-1:-1;;;;;;32851:16:0;;;;;:7;:16;;;;;;;32732:198::o;32818:49::-;-1:-1:-1;;;;;32905:16:0;;;;;;:7;:16;;;;;;32885:37;;:19;:37::i;5595:94::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;5660:21:::1;5678:1;5660:9;:21::i;:::-;5595:94::o:0;44813:101::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44879:19:0::1;44901:5;44879:19:::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;44879:27:0::1;::::0;;44813:101::o;38854:334::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;38963:31:::1;38988:5;38963:20;38981:1;38963:13;32709:7:::0;;;32629:95;38963:13:::1;:17:::0;::::1;:20::i;:::-;:24:::0;::::1;:31::i;:::-;38952:7;:42;;38930:148;;;::::0;-1:-1:-1;;;38930:148:0;;9256:2:1;38930:148:0::1;::::0;::::1;9238:21:1::0;9295:2;9275:18;;;9268:30;9334:34;9314:18;;;9307:62;9405:26;9385:18;;;9378:54;9449:19;;38930:148:0::1;9228:246:1::0;38930:148:0::1;39089:29;:39:::0;;;39144:36:::1;::::0;10443:25:1;;;39144:36:0::1;::::0;10431:2:1;10416:18;39144:36:0::1;;;;;;;38854:334:::0;:::o;38311:279::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;38421:13:::1;:31:::0;;;38511:11:::1;::::0;38485:7:::1;::::0;29130:9:::1;::::0;38511:11;38485:23:::1;::::0;38437:15;;38485:23:::1;:::i;32443:87::-:0;32482:13;32515:7;32508:14;;;;;:::i;34300:400::-;34420:4;34442:228;3742:10;34492:7;34514:145;34571:15;34514:145;;;;;;;;;;;;;;;;;3742:10;34514:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34514:34:0;;;;;;;;;;;;:38;:145::i;32938:199::-;33043:4;33065:42;3742:10;33089:9;33100:6;33065:9;:42::i;38598:248::-;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;38681:11:::1;:27:::0;;;38751:13:::1;::::0;38741:7:::1;::::0;29130:9:::1;::::0;38695:13;;38741:23:::1;::::0;38751:13;38741:23:::1;:::i;5844:192::-:0;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5933:22:0;::::1;5925:73;;;::::0;-1:-1:-1;;;5925:73:0;;5500:2:1;5925:73:0::1;::::0;::::1;5482:21:1::0;5539:2;5519:18;;;5512:30;5578:34;5558:18;;;5551:62;-1:-1:-1;;;5629:18:1;;;5622:36;5675:19;;5925:73:0::1;5472:228:1::0;5925:73:0::1;6009:19;6019:8;6009:9;:19::i;44707:98::-:0;4990:7;5017:6;-1:-1:-1;;;;;5017:6:0;3742:10;5164:23;5156:68;;;;-1:-1:-1;;;5156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44771:19:0::1;;::::0;;;44793:4:::1;44771:19;::::0;;;;;;;:26;;-1:-1:-1;;44771:26:0::1;::::0;;::::1;::::0;;44707:98::o;10167:::-;10225:7;10252:5;10256:1;10252;:5;:::i;44328:371::-;-1:-1:-1;;;;;44455:19:0;;44447:68;;;;-1:-1:-1;;;44447:68:0;;9681:2:1;44447:68:0;;;9663:21:1;9720:2;9700:18;;;9693:30;9759:34;9739:18;;;9732:62;-1:-1:-1;;;9810:18:1;;;9803:34;9854:19;;44447:68:0;9653:226:1;44447:68:0;-1:-1:-1;;;;;44534:21:0;;44526:68;;;;-1:-1:-1;;;44526:68:0;;5907:2:1;44526:68:0;;;5889:21:1;5946:2;5926:18;;;5919:30;5985:34;5965:18;;;5958:62;-1:-1:-1;;;6036:18:1;;;6029:32;6078:19;;44526:68:0;5879:224:1;44526:68:0;-1:-1:-1;;;;;44607:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;44659:32;;10443:25:1;;;44659:32:0;;10416:18:1;44659:32:0;;;;;;;;44328:371;;;:::o;45042:1656::-;-1:-1:-1;;;;;45165:16:0;;;;;;:10;:16;;;;;;;;45164:17;45156:51;;;;-1:-1:-1;;;45156:51:0;;7729:2:1;45156:51:0;;;7711:21:1;7768:2;7748:18;;;7741:30;-1:-1:-1;;;7787:18:1;;;7780:51;7848:18;;45156:51:0;7701:171:1;45156:51:0;-1:-1:-1;;;;;45227:14:0;;;;;;:10;:14;;;;;;;;45226:15;45218:52;;;;-1:-1:-1;;;45218:52:0;;6310:2:1;45218:52:0;;;6292:21:1;6349:2;6329:18;;;6322:30;6388:26;6368:18;;;6361:54;6432:18;;45218:52:0;6282:174:1;45218:52:0;-1:-1:-1;;;;;45289:18:0;;45281:68;;;;-1:-1:-1;;;45281:68:0;;8850:2:1;45281:68:0;;;8832:21:1;8889:2;8869:18;;;8862:30;8928:34;8908:18;;;8901:62;-1:-1:-1;;;8979:18:1;;;8972:35;9024:19;;45281:68:0;8822:227:1;45281:68:0;-1:-1:-1;;;;;45368:16:0;;45360:64;;;;-1:-1:-1;;;45360:64:0;;4685:2:1;45360:64:0;;;4667:21:1;4724:2;4704:18;;;4697:30;4763:34;4743:18;;;4736:62;-1:-1:-1;;;4814:18:1;;;4807:33;4857:19;;45360:64:0;4657:225:1;45360:64:0;45452:1;45443:6;:10;45435:64;;;;-1:-1:-1;;;45435:64:0;;8440:2:1;45435:64:0;;;8422:21:1;8479:2;8459:18;;;8452:30;8518:34;8498:18;;;8491:62;-1:-1:-1;;;8569:18:1;;;8562:39;8618:19;;45435:64:0;8412:231:1;45435:64:0;45794:28;45825:24;45843:4;45825:9;:24::i;:::-;45926:29;;45794:55;;-1:-1:-1;45889:66:0;;;;;;;45984:53;;-1:-1:-1;46021:16:0;;-1:-1:-1;;;46021:16:0;;;;46020:17;45984:53;:91;;;;-1:-1:-1;46062:13:0;;-1:-1:-1;;;;;46054:21:0;;;46062:13;;46054:21;;45984:91;:129;;;;-1:-1:-1;46092:21:0;;-1:-1:-1;;;46092:21:0;;;;45984:129;45966:318;;;46163:29;;46140:52;;46236:36;46251:20;46236:14;:36::i;:::-;-1:-1:-1;;;;;46477:24:0;;46357:12;46477:24;;;:18;:24;;;;;;46372:4;;46477:24;;;:50;;-1:-1:-1;;;;;;46505:22:0;;;;;;:18;:22;;;;;;;;46477:50;46473:98;;;-1:-1:-1;46554:5:0;46473:98;46649:41;46664:4;46670:2;46674:6;46682:7;46649:14;:41::i;:::-;45042:1656;;;;;;:::o;11309:240::-;11429:7;11490:12;11482:6;;;;11474:29;;;;-1:-1:-1;;;11474:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11525:5:0;;;11309:240::o;41532:164::-;41574:7;41595:15;41612;41631:19;:17;:19::i;:::-;41594:56;;-1:-1:-1;41594:56:0;-1:-1:-1;41668:20:0;41594:56;;41668:11;:20::i;:::-;41661:27;;;;41532:164;:::o;9030:98::-;9088:7;9115:5;9119:1;9115;:5;:::i;39444:841::-;39544:7;39566;39588;39610;39632;39654;39676;39726:23;39764:12;39791:18;39824:16;39854:20;39866:7;39854:11;:20::i;:::-;39711:163;;;;;;;;39886:15;39903:23;39928:12;39944:136;39970:7;39992:4;40011:10;40036:8;40059:10;:8;:10::i;:::-;39944:11;:136::i;:::-;39885:195;;-1:-1:-1;39885:195:0;-1:-1:-1;39885:195:0;-1:-1:-1;40184:15:0;;-1:-1:-1;40214:4:0;;-1:-1:-1;40233:10:0;;-1:-1:-1;40258:8:0;-1:-1:-1;;;;39444:841:0;;;;;;;;;:::o;9411:98::-;9469:7;9496:5;9500:1;9496;:5;:::i;6044:173::-;6100:16;6119:6;;-1:-1:-1;;;;;6136:17:0;;;-1:-1:-1;;;;;;6136:17:0;;;;;;6169:40;;6119:6;;;;;;;6169:40;;6100:16;6169:40;6044:173;;:::o;9768:98::-;9826:7;9853:5;9857:1;9853;:5;:::i;46706:977::-;30467:16;:23;;-1:-1:-1;;;;30467:23:0;-1:-1:-1;;;30467:23:0;;;;46857:27:::1;:20:::0;46882:1:::1;46857:24;:27::i;:::-;46842:42:::0;-1:-1:-1;46895:17:0::1;46915:30;:20:::0;46842:42;46915:24:::1;:30::i;:::-;46895:50:::0;-1:-1:-1;47248:21:0::1;47314:22;47331:4:::0;47314:16:::1;:22::i;:::-;47467:18;47488:41;:21;47514:14:::0;47488:25:::1;:41::i;:::-;47467:62;;47579:35;47592:9;47603:10;47579:12;:35::i;:::-;47632:43;::::0;;11669:25:1;;;11725:2;11710:18;;11703:34;;;11753:18;;;11746:34;;;47632:43:0::1;::::0;11657:2:1;11642:18;47632:43:0::1;;;;;;;-1:-1:-1::0;;30513:16:0;:24;;-1:-1:-1;;;;30513:24:0;;;-1:-1:-1;;;46706:977:0:o;48890:838::-;49046:7;49041:28;;49055:14;43826:7;;;43808:15;:25;43868:13;;;43844:21;:37;43914:11;;;43892:19;:33;-1:-1:-1;43938:11:0;;;;43960:17;;;;43988:15;43765:246;49055:14;-1:-1:-1;;;;;49086:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;49110:22:0;;;;;;:11;:22;;;;;;;;49109:23;49086:46;49082:597;;;49149:48;49171:6;49179:9;49190:6;49149:21;:48::i;:::-;49082:597;;;-1:-1:-1;;;;;49220:19:0;;;;;;:11;:19;;;;;;;;49219:20;:46;;;;-1:-1:-1;;;;;;49243:22:0;;;;;;:11;:22;;;;;;;;49219:46;49215:464;;;49282:46;49302:6;49310:9;49321:6;49282:19;:46::i;49215:464::-;-1:-1:-1;;;;;49351:19:0;;;;;;:11;:19;;;;;;;;49350:20;:47;;;;-1:-1:-1;;;;;;49375:22:0;;;;;;:11;:22;;;;;;;;49374:23;49350:47;49346:333;;;49414:44;49432:6;49440:9;49451:6;49414:17;:44::i;49346:333::-;-1:-1:-1;;;;;49480:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;49503:22:0;;;;;;:11;:22;;;;;;;;49480:45;49476:203;;;49542:48;49564:6;49572:9;49583:6;49542:21;:48::i;49476:203::-;49623:44;49641:6;49649:9;49660:6;49623:17;:44::i;:::-;49696:7;49691:29;;49705:15;44073;;44063:7;:25;44115:21;;44099:13;:37;44161:19;;44147:11;:33;44019:169;49705:15;48890:838;;;;:::o;41704:605::-;41802:7;;41838;;41755;;;;;41856:338;41880:9;:16;41876:20;;41856:338;;;41964:7;41940;:21;41948:9;41958:1;41948:12;;;;;;-1:-1:-1;;;41948:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41948:12:0;41940:21;;;;;;;;;;;;;:31;;:83;;;42016:7;41992;:21;42000:9;42010:1;42000:12;;;;;;-1:-1:-1;;;42000:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42000:12:0;41992:21;;;;;;;;;;;;;:31;41940:83;41918:146;;;42047:7;;42056;;42039:25;;;;;;;41704:605;;:::o;41918:146::-;42089:34;42101:7;:21;42109:9;42119:1;42109:12;;;;;;-1:-1:-1;;;42109:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42109:12:0;42101:21;;;;;;;;;;;;;42089:7;;:11;:34::i;:::-;42079:44;;42148:34;42160:7;:21;42168:9;42178:1;42168:12;;;;;;-1:-1:-1;;;42168:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42168:12:0;42160:21;;;;;;;;;;;;;42148:7;;:11;:34::i;:::-;42138:44;-1:-1:-1;41898:3:0;;;;:::i;:::-;;;;41856:338;;;-1:-1:-1;42230:7:0;;42218;;:20;;:11;:20::i;:::-;42208:7;:30;42204:61;;;42248:7;;42257;;42240:25;;;;;;41704:605;;:::o;42204:61::-;42284:7;;42293;;-1:-1:-1;41704:605:0;-1:-1:-1;41704:605:0:o;40293:549::-;40394:7;40416;40438;40460;40495:12;40510:24;40526:7;40510:15;:24::i;:::-;40495:39;;40545:18;40566:30;40588:7;40566:21;:30::i;:::-;40545:51;;40607:19;40629:28;40649:7;40629:19;:28::i;:::-;40607:50;-1:-1:-1;40668:23:0;40694:74;40607:50;40694:33;40716:10;40694:33;:7;40706:4;40694:11;:17::i;:::-;:21;;:33::i;:74::-;40668:100;40804:4;;-1:-1:-1;40810:10:0;;-1:-1:-1;40810:10:0;-1:-1:-1;40293:549:0;;-1:-1:-1;;;40293:549:0:o;40850:674::-;41076:7;;;;41173:24;:7;41185:11;41173;:24::i;:::-;41155:42;-1:-1:-1;41208:12:0;41223:21;:4;41232:11;41223:8;:21::i;:::-;41208:36;-1:-1:-1;41255:18:0;41276:27;:10;41291:11;41276:14;:27::i;:::-;41255:48;-1:-1:-1;41314:16:0;41333:25;:8;41346:11;41333:12;:25::i;:::-;41314:44;-1:-1:-1;41369:23:0;41395:71;41314:44;41395:33;41417:10;41395:33;:7;41407:4;41395:11;:17::i;:71::-;41485:7;;;;-1:-1:-1;41511:4:0;;-1:-1:-1;40850:674:0;;-1:-1:-1;;;;;;;;;40850:674:0:o;47691:589::-;47841:16;;;47855:1;47841:16;;;;;;;;47817:21;;47841:16;;;;;;;;;;-1:-1:-1;47841:16:0;47817:40;;47886:4;47868;47873:1;47868:7;;;;;;-1:-1:-1;;;47868:7:0;;;;;;;;;-1:-1:-1;;;;;47868:23:0;;;:7;;;;;;;;;;:23;;;;47912:15;;:22;;;-1:-1:-1;;;47912:22:0;;;;:15;;;;;:20;;:22;;;;;47868:7;;47912:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47902:4;47907:1;47902:7;;;;;;-1:-1:-1;;;47902:7:0;;;;;;;;;-1:-1:-1;;;;;47902:32:0;;;:7;;;;;;;;;:32;47979:15;;47947:62;;47964:4;;47979:15;47997:11;47947:8;:62::i;:::-;48048:15;;:224;;-1:-1:-1;;;48048:224:0;;-1:-1:-1;;;;;48048:15:0;;;;:66;;:224;;48129:11;;48048:15;;48199:4;;48226;;48246:15;;48048:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48288:521;48468:15;;48436:62;;48453:4;;-1:-1:-1;;;;;48468:15:0;48486:11;48436:8;:62::i;:::-;48541:15;;:260;;-1:-1:-1;;;48541:260:0;;48613:4;48541:260;;;3177:34:1;3227:18;;;3220:34;;;48541:15:0;3270:18:1;;;3263:34;;;3313:18;;;3306:34;48753:6:0;3356:19:1;;;3349:44;48775:15:0;3409:19:1;;;3402:35;-1:-1:-1;;;;;48541:15:0;;;;:31;;48580:9;;3111:19:1;;48541:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48288:521;;:::o;51209:753::-;51360:15;51390:23;51428:12;51455:23;51493:12;51520:18;51553:16;51583:19;51594:7;51583:10;:19::i;:::-;51345:257;;;;;;;;;;;;;;51631:28;51651:7;51631;:15;51639:6;-1:-1:-1;;;;;51631:15:0;-1:-1:-1;;;;;51631:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;51613:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51688:7;:15;;;;:28;;51708:7;51688:19;:28::i;:::-;-1:-1:-1;;;;;51670:15:0;;;;;;;:7;:15;;;;;;:46;;;;51748:18;;;;;;;:39;;51771:15;51748:22;:39::i;:::-;-1:-1:-1;;;;;51727:18:0;;;;;;:7;:18;;;;;:60;51798:26;51813:10;51798:14;:26::i;:::-;51835:25;51851:8;51835:15;:25::i;:::-;51871:23;51883:4;51889;51871:11;:23::i;:::-;51927:9;-1:-1:-1;;;;;51910:44:0;51919:6;-1:-1:-1;;;;;51910:44:0;;51938:15;51910:44;;;;10443:25:1;;10431:2;10416:18;;10398:76;51910:44:0;;;;;;;;51209:753;;;;;;;;;;:::o;50436:765::-;50585:15;50615:23;50653:12;50680:23;50718:12;50745:18;50778:16;50808:19;50819:7;50808:10;:19::i;:::-;50570:257;;;;;;;;;;;;;;50856:28;50876:7;50856;:15;50864:6;-1:-1:-1;;;;;50856:15:0;-1:-1:-1;;;;;50856:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;50838:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50916:18;;;;;:7;:18;;;;;:39;;50939:15;50916:22;:39::i;:::-;-1:-1:-1;;;;;50895:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50987:7;:18;;;;:39;;51010:15;50987:22;:39::i;49736:692::-;49883:15;49913:23;49951:12;49978:23;50016:12;50043:18;50076:16;50106:19;50117:7;50106:10;:19::i;:::-;49868:257;;;;;;;;;;;;;;50154:28;50174:7;50154;:15;50162:6;-1:-1:-1;;;;;50154:15:0;-1:-1:-1;;;;;50154:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;37120:824::-;37271:15;37301:23;37339:12;37366:23;37404:12;37431:18;37464:16;37494:19;37505:7;37494:10;:19::i;:::-;37256:257;;;;;;;;;;;;;;37542:28;37562:7;37542;:15;37550:6;-1:-1:-1;;;;;37542:15:0;-1:-1:-1;;;;;37542:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;37524:15:0;;;;;;:7;:15;;;;;;;;:46;;;;37599:7;:15;;;;:28;;37619:7;37599:19;:28::i;43213:130::-;43277:7;43304:31;43329:5;43304:20;43316:7;;43304;:11;;:20;;;;:::i;43351:174::-;43448:7;43480:37;43511:5;43480:26;43492:13;;43480:7;:11;;:26;;;;:::i;43533:224::-;43657:15;;43628:7;;-1:-1:-1;;;;;43657:15:0;43653:43;;-1:-1:-1;43695:1:0;;43533:224;-1:-1:-1;43533:224:0:o;43653:43::-;43714:35;43743:5;43714:24;43726:11;;43714:7;:11;;:24;;;;:::i;42317:355::-;42380:19;42402:10;:8;:10::i;:::-;42380:32;-1:-1:-1;42423:18:0;42444:27;:10;42380:32;42444:14;:27::i;:::-;42523:4;42507:22;;;;:7;:22;;;;;;42423:48;;-1:-1:-1;42507:38:0;;42423:48;42507:26;:38::i;:::-;42498:4;42482:22;;;;:7;:22;;;;;;;;:63;;;;42560:11;:26;;;;;;42556:108;;;42642:4;42626:22;;;;:7;:22;;;;;;:38;;42653:10;42626:26;:38::i;:::-;42617:4;42601:22;;;;:7;:22;;;;;:63;42556:108;42317:355;;;:::o;42680:525::-;42746:12;;42742:456;;42775:19;42797:10;:8;:10::i;:::-;42775:32;-1:-1:-1;42822:16:0;42841:25;:8;42775:32;42841:12;:25::i;:::-;42916:15;;-1:-1:-1;;;;;42916:15:0;42908:24;;;;:7;:24;;;;;;42822:44;;-1:-1:-1;42908:38:0;;42822:44;42908:28;:38::i;:::-;42889:15;;;-1:-1:-1;;;;;42889:15:0;;;42881:24;;;;:7;:24;;;;;;;;:65;;;;42977:15;;;;;42965:28;;:11;:28;;;;;;;42961:156;;;43047:15;;-1:-1:-1;;;;;43047:15:0;43039:24;;;;:7;:24;;;;;;:78;;43090:8;43039:28;:78::i;:::-;43020:15;;-1:-1:-1;;;;;43020:15:0;43012:24;;;;:7;:24;;;;;:105;42961:156;43160:15;;-1:-1:-1;;;;;43160:15:0;3742:10;-1:-1:-1;;;;;43137:49:0;;43177:8;43137:49;;;;10443:25:1;;10431:2;10416:18;;10398:76;39289:147:0;39367:7;;:17;;39379:4;39367:11;:17::i;:::-;39357:7;:27;39408:10;;:20;;39423:4;39408:14;:20::i;:::-;39395:10;:33;-1:-1:-1;;39289:147:0:o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:325::-;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1566:6;1558;1551:22;1513:2;1610:9;1597:23;1629:31;1654:5;1629:31;:::i;:::-;1679:5;1731:2;1716:18;;;;1703:32;;-1:-1:-1;;;1503:238:1:o;1746:190::-;1805:6;1858:2;1846:9;1837:7;1833:23;1829:32;1826:2;;;1879:6;1871;1864:22;1826:2;-1:-1:-1;1907:23:1;;1816:120;-1:-1:-1;1816:120:1:o;1941:361::-;2006:6;2014;2067:2;2055:9;2046:7;2042:23;2038:32;2035:2;;;2088:6;2080;2073:22;2035:2;2129:9;2116:23;2106:33;;2189:2;2178:9;2174:18;2161:32;2236:5;2229:13;2222:21;2215:5;2212:32;2202:2;;2263:6;2255;2248:22;2307:316;2395:6;2403;2411;2464:2;2452:9;2443:7;2439:23;2435:32;2432:2;;;2485:6;2477;2470:22;2432:2;2519:9;2513:16;2503:26;;2569:2;2558:9;2554:18;2548:25;2538:35;;2613:2;2602:9;2598:18;2592:25;2582:35;;2422:201;;;;;:::o;3875:603::-;3987:4;4016:2;4045;4034:9;4027:21;4077:6;4071:13;4120:6;4115:2;4104:9;4100:18;4093:34;4145:4;4158:140;4172:6;4169:1;4166:13;4158:140;;;4267:14;;;4263:23;;4257:30;4233:17;;;4252:2;4229:26;4222:66;4187:10;;4158:140;;;4316:6;4313:1;4310:13;4307:2;;;4386:4;4381:2;4372:6;4361:9;4357:22;4353:31;4346:45;4307:2;-1:-1:-1;4462:2:1;4441:15;-1:-1:-1;;4437:29:1;4422:45;;;;4469:2;4418:54;;3996:482;-1:-1:-1;;;3996:482:1:o;7877:356::-;8079:2;8061:21;;;8098:18;;;8091:30;8157:34;8152:2;8137:18;;8130:62;8224:2;8209:18;;8051:182::o;10479:983::-;10741:4;10789:3;10778:9;10774:19;10820:6;10809:9;10802:25;10846:2;10884:6;10879:2;10868:9;10864:18;10857:34;10927:3;10922:2;10911:9;10907:18;10900:31;10951:6;10986;10980:13;11017:6;11009;11002:22;11055:3;11044:9;11040:19;11033:26;;11094:2;11086:6;11082:15;11068:29;;11115:4;11128:195;11142:6;11139:1;11136:13;11128:195;;;11207:13;;-1:-1:-1;;;;;11203:39:1;11191:52;;11298:15;;;;11263:12;;;;11239:1;11157:9;11128:195;;;-1:-1:-1;;;;;;;11379:32:1;;;;11374:2;11359:18;;11352:60;-1:-1:-1;;;11443:3:1;11428:19;11421:35;11340:3;10750:712;-1:-1:-1;;;10750:712:1:o;11980:128::-;12020:3;12051:1;12047:6;12044:1;12041:13;12038:2;;;12057:18;;:::i;:::-;-1:-1:-1;12093:9:1;;12028:80::o;12113:217::-;12153:1;12179;12169:2;;-1:-1:-1;;;12204:31:1;;12258:4;12255:1;12248:15;12286:4;12211:1;12276:15;12169:2;-1:-1:-1;12315:9:1;;12159:171::o;12335:168::-;12375:7;12441:1;12437;12433:6;12429:14;12426:1;12423:21;12418:1;12411:9;12404:17;12400:45;12397:2;;;12448:18;;:::i;:::-;-1:-1:-1;12488:9:1;;12387:116::o;12508:125::-;12548:4;12576:1;12573;12570:8;12567:2;;;12581:18;;:::i;:::-;-1:-1:-1;12618:9:1;;12557:76::o;12638:380::-;12717:1;12713:12;;;;12760;;;12781:2;;12835:4;12827:6;12823:17;12813:27;;12781:2;12888;12880:6;12877:14;12857:18;12854:38;12851:2;;;12934:10;12929:3;12925:20;12922:1;12915:31;12969:4;12966:1;12959:15;12997:4;12994:1;12987:15;12851:2;;12693:325;;;:::o;13023:135::-;13062:3;-1:-1:-1;;13083:17:1;;13080:2;;;13103:18;;:::i;:::-;-1:-1:-1;13150:1:1;13139:13;;13070:88::o;13163:127::-;13224:10;13219:3;13215:20;13212:1;13205:31;13255:4;13252:1;13245:15;13279:4;13276:1;13269:15;13295:131;-1:-1:-1;;;;;13370:31:1;;13360:42;;13350:2;;13416:1;13413;13406:12

Swarm Source

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