ETH Price: $2,437.06 (+1.46%)

Token

Refarm (REFARM)
 

Overview

Max Total Supply

1,000,000,000 REFARM

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
gorillagrindset.eth
Balance
178,094.302926867679562892 REFARM

Value
$0.00
0x92d2cFf81d01f5DB3D5aaA07A4fBaBE53De9AC2d
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:
RefarmCapital

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-09
*/

// Verified using https://dapp.tools

// hevm: flattened sources of src/RefarmCapital.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.0 (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);
            }
        }
    }
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (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 generally not needed starting with Solidity 0.8, since 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;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    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 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;
}

////// src/RefarmCapital.sol
/**

Refarm Capital: REFARM

u'all are not ready for this

Tax for Buying/Selling: 10%
    - 3% of each transaction sent to holders as ETH transactions
    - 4% of each transaction sent to Treasury Wallet
    - 3% of each transaction sent to the Liquidity Pool

Earning Dashboard:
https://refarm.capital

*/

/* pragma solidity 0.8.10; */

/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {Address} from "lib/openzeppelin-contracts/contracts/utils/Address.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */

contract RefarmCapital is Ownable, IERC20 {
    address UNISWAPROUTER = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    address ZERO = 0x0000000000000000000000000000000000000000;

    string private _name = "Refarm";
    string private _symbol = "REFARM";

    uint256 public treasuryFeeBPS = 400;
    uint256 public liquidityFeeBPS = 300;
    uint256 public dividendFeeBPS = 300;
    uint256 public totalFeeBPS = 1000;

    uint256 public swapTokensAtAmount = 100_000 * (10**18);
    uint256 public lastSwapTime;
    bool swapAllToken = true;

    bool public swapEnabled = true;
    bool public taxEnabled = true;
    bool public compoundingEnabled = true;

    uint256 private _totalSupply;
    bool private swapping;

    address marketingWallet;
    address liquidityWallet;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _whiteList;

    event SwapAndAddLiquidity(
        uint256 tokensSwapped,
        uint256 nativeReceived,
        uint256 tokensIntoLiquidity
    );
    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );
    event SwapEnabled(bool enabled);
    event TaxEnabled(bool enabled);
    event CompoundingEnabled(bool enabled);

    DividendTracker public dividendTracker;
    IUniswapV2Router02 public uniswapV2Router;

    address public uniswapV2Pair;

    uint256 public maxTxBPS = 48;
    uint256 public maxWalletBPS = 300;

    bool isOpen = false;

    mapping(address => bool) private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    constructor(
        address _marketingWallet,
        address _liquidityWallet,
        address[] memory whitelistAddress
    ) {
        marketingWallet = _marketingWallet;
        liquidityWallet = _liquidityWallet;
        includeToWhiteList(whitelistAddress);

        dividendTracker = new DividendTracker(address(this), UNISWAPROUTER);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(UNISWAPROUTER);

        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(_uniswapV2Router), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(dividendTracker), true);

        excludeFromMaxTx(owner(), true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(address(dividendTracker), true);

        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(dividendTracker), true);

        _mint(owner(), 1_000_000_000 * (10**18));
    }

    receive() external payable {}

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

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

    function decimals() public pure returns (uint8) {
        return 18;
    }

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

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

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

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

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

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "RefarmCapital: decreased allowance below zero"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        return true;
    }

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "RefarmCapital: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    function openTrading() external onlyOwner {
        isOpen = true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(
            isOpen ||
                sender == owner() ||
                recipient == owner() ||
                _whiteList[sender] ||
                _whiteList[recipient],
            "Not Open"
        );

        require(
            sender != address(0),
            "RefarmCapital: transfer from the zero address"
        );
        require(
            recipient != address(0),
            "RefarmCapital: transfer to the zero address"
        );

        uint256 _maxTxAmount = (totalSupply() * maxTxBPS) / 10000;
        uint256 _maxWallet = (totalSupply() * maxWalletBPS) / 10000;
        require(
            amount <= _maxTxAmount || _isExcludedFromMaxTx[sender],
            "TX Limit Exceeded"
        );

        if (
            sender != owner() &&
            recipient != address(this) &&
            recipient != address(DEAD) &&
            recipient != uniswapV2Pair
        ) {
            uint256 currentBalance = balanceOf(recipient);
            require(
                _isExcludedFromMaxWallet[recipient] ||
                    (currentBalance + amount <= _maxWallet)
            );
        }

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "RefarmCapital: transfer amount exceeds balance"
        );

        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 contractNativeBalance = address(this).balance;

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            swapEnabled && // True
            canSwap && // true
            !swapping && // swapping=false !false true
            !automatedMarketMakerPairs[sender] && // no swap on remove liquidity step 1 or DEX buy
            sender != address(uniswapV2Router) && // no swap on remove liquidity step 2
            sender != owner() &&
            recipient != owner()
        ) {
            swapping = true;

            if (!swapAllToken) {
                contractTokenBalance = swapTokensAtAmount;
            }
            _executeSwap(contractTokenBalance, contractNativeBalance);

            lastSwapTime = block.timestamp;
            swapping = false;
        }

        bool takeFee;

        if (
            sender == address(uniswapV2Pair) ||
            recipient == address(uniswapV2Pair)
        ) {
            takeFee = true;
        }

        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }

        if (swapping || !taxEnabled) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = (amount * totalFeeBPS) / 10000;
            amount -= fees;
            _executeTransfer(sender, address(this), fees);
        }

        _executeTransfer(sender, recipient, amount);

        dividendTracker.setBalance(payable(sender), balanceOf(sender));
        dividendTracker.setBalance(payable(recipient), balanceOf(recipient));
    }

    function _executeTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        require(
            sender != address(0),
            "RefarmCapital: transfer from the zero address"
        );
        require(
            recipient != address(0),
            "RefarmCapital: transfer to the zero address"
        );
        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "RefarmCapital: transfer amount exceeds balance"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(
            owner != address(0),
            "RefarmCapital: approve from the zero address"
        );
        require(
            spender != address(0),
            "RefarmCapital: approve to the zero address"
        );
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _mint(address account, uint256 amount) private {
        require(
            account != address(0),
            "RefarmCapital: mint to the zero address"
        );
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) private {
        require(
            account != address(0),
            "RefarmCapital: burn from the zero address"
        );
        uint256 accountBalance = _balances[account];
        require(
            accountBalance >= amount,
            "RefarmCapital: burn amount exceeds balance"
        );
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
    }

    function swapTokensForNative(uint256 tokens) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokens);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokens,
            0, // accept any amount of native
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokens, uint256 native) private {
        _approve(address(this), address(uniswapV2Router), tokens);
        uniswapV2Router.addLiquidityETH{value: native}(
            address(this),
            tokens,
            0, // slippage unavoidable
            0, // slippage unavoidable
            liquidityWallet,
            block.timestamp
        );
    }

    function includeToWhiteList(address[] memory _users) private {
        for (uint8 i = 0; i < _users.length; i++) {
            _whiteList[_users[i]] = true;
        }
    }

    function _executeSwap(uint256 tokens, uint256 native) private {
        if (tokens <= 0) {
            return;
        }

        uint256 swapTokensMarketing;
        if (address(marketingWallet) != address(0)) {
            swapTokensMarketing = (tokens * treasuryFeeBPS) / totalFeeBPS;
        }

        uint256 swapTokensDividends;
        if (dividendTracker.totalSupply() > 0) {
            swapTokensDividends = (tokens * dividendFeeBPS) / totalFeeBPS;
        }

        uint256 tokensForLiquidity = tokens -
            swapTokensMarketing -
            swapTokensDividends;
        uint256 swapTokensLiquidity = tokensForLiquidity / 2;
        uint256 addTokensLiquidity = tokensForLiquidity - swapTokensLiquidity;
        uint256 swapTokensTotal = swapTokensMarketing +
            swapTokensDividends +
            swapTokensLiquidity;

        uint256 initNativeBal = address(this).balance;
        swapTokensForNative(swapTokensTotal);
        uint256 nativeSwapped = (address(this).balance - initNativeBal) +
            native;

        uint256 nativeMarketing = (nativeSwapped * swapTokensMarketing) /
            swapTokensTotal;
        uint256 nativeDividends = (nativeSwapped * swapTokensDividends) /
            swapTokensTotal;
        uint256 nativeLiquidity = nativeSwapped -
            nativeMarketing -
            nativeDividends;

        if (nativeMarketing > 0) {
            payable(marketingWallet).transfer(nativeMarketing);
        }

        addLiquidity(addTokensLiquidity, nativeLiquidity);
        emit SwapAndAddLiquidity(
            swapTokensLiquidity,
            nativeLiquidity,
            addTokensLiquidity
        );

        if (nativeDividends > 0) {
            (bool success, ) = address(dividendTracker).call{
                value: nativeDividends
            }("");
            if (success) {
                emit SendDividends(swapTokensDividends, nativeDividends);
            }
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "RefarmCapital: account is already set to requested state"
        );
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function manualSendDividend(uint256 amount, address holder)
        external
        onlyOwner
    {
        dividendTracker.manualSendDividend(amount, holder);
    }

    function excludeFromDividends(address account, bool excluded)
        public
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, excluded);
    }

    function isExcludedFromDividends(address account)
        public
        view
        returns (bool)
    {
        return dividendTracker.isExcludedFromDividends(account);
    }

    function setWallet(
        address payable _marketingWallet,
        address payable _liquidityWallet
    ) external onlyOwner {
        marketingWallet = _marketingWallet;
        liquidityWallet = _liquidityWallet;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "RefarmCapital: DEX pair can not be removed"
        );
        _setAutomatedMarketMakerPair(pair, value);
    }

    function setFee(
        uint256 _treasuryFee,
        uint256 _liquidityFee,
        uint256 _dividendFee
    ) external onlyOwner {
        treasuryFeeBPS = _treasuryFee;
        liquidityFeeBPS = _liquidityFee;
        dividendFeeBPS = _dividendFee;
        totalFeeBPS = _treasuryFee + _liquidityFee + _dividendFee;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "RefarmCapital: automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;
        if (value) {
            dividendTracker.excludeFromDividends(pair, true);
        }
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "RefarmCapital: the router is already set to the new address"
        );
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function claim() public {
        dividendTracker.processAccount(payable(_msgSender()));
    }

    function compound() public {
        require(
            compoundingEnabled,
            "RefarmCapital: compounding is not enabled"
        );
        dividendTracker.compoundAccount(payable(_msgSender()));
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function withdrawnDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawnDividendOf(account);
    }

    function accumulativeDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.accumulativeDividendOf(account);
    }

    function getAccountInfo(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccountInfo(account);
    }

    function getLastClaimTime(address account) public view returns (uint256) {
        return dividendTracker.getLastClaimTime(account);
    }

    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
        emit SwapEnabled(_enabled);
    }

    function setTaxEnabled(bool _enabled) external onlyOwner {
        taxEnabled = _enabled;
        emit TaxEnabled(_enabled);
    }

    function setCompoundingEnabled(bool _enabled) external onlyOwner {
        compoundingEnabled = _enabled;
        emit CompoundingEnabled(_enabled);
    }

    function updateDividendSettings(
        bool _swapEnabled,
        uint256 _swapTokensAtAmount,
        bool _swapAllToken
    ) external onlyOwner {
        swapEnabled = _swapEnabled;
        swapTokensAtAmount = _swapTokensAtAmount;
        swapAllToken = _swapAllToken;
    }

    function setMaxTxBPS(uint256 bps) external onlyOwner {
        require(bps >= 75 && bps <= 10000, "BPS must be between 75 and 10000");
        maxTxBPS = bps;
    }

    function excludeFromMaxTx(address account, bool excluded) public onlyOwner {
        _isExcludedFromMaxTx[account] = excluded;
    }

    function isExcludedFromMaxTx(address account) public view returns (bool) {
        return _isExcludedFromMaxTx[account];
    }

    function setMaxWalletBPS(uint256 bps) external onlyOwner {
        require(
            bps >= 175 && bps <= 10000,
            "BPS must be between 175 and 10000"
        );
        maxWalletBPS = bps;
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function isExcludedFromMaxWallet(address account)
        public
        view
        returns (bool)
    {
        return _isExcludedFromMaxWallet[account];
    }

    function rescueToken(address _token, uint256 _amount) external onlyOwner {
        IERC20(_token).transfer(msg.sender, _amount);
    }

    function rescueETH(uint256 _amount) external onlyOwner {
        payable(msg.sender).transfer(_amount);
    }
}

contract DividendTracker is Ownable, IERC20 {
    address UNISWAPROUTER;

    string private _name = "RefarmCapital_DividendTracker";
    string private _symbol = "RefarmCapital_DividendTracker";

    uint256 public lastProcessedIndex;

    uint256 private _totalSupply;
    mapping(address => uint256) private _balances;

    uint256 private constant magnitude = 2**128;
    uint256 public immutable minTokenBalanceForDividends;
    uint256 private magnifiedDividendPerShare;
    uint256 public totalDividendsDistributed;
    uint256 public totalDividendsWithdrawn;

    address public tokenAddress;

    mapping(address => bool) public excludedFromDividends;
    mapping(address => int256) private magnifiedDividendCorrections;
    mapping(address => uint256) private withdrawnDividends;
    mapping(address => uint256) private lastClaimTimes;

    event DividendsDistributed(address indexed from, uint256 weiAmount);
    event DividendWithdrawn(address indexed to, uint256 weiAmount);
    event ExcludeFromDividends(address indexed account, bool excluded);
    event Claim(address indexed account, uint256 amount);
    event Compound(address indexed account, uint256 amount, uint256 tokens);

    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    constructor(address _tokenAddress, address _uniswapRouter) {
        minTokenBalanceForDividends = 1000000 * (10**18);
        tokenAddress = _tokenAddress;
        UNISWAPROUTER = _uniswapRouter;
    }

    receive() external payable {
        distributeDividends();
    }

    function distributeDividends() public payable {
        require(_totalSupply > 0);
        if (msg.value > 0) {
            magnifiedDividendPerShare =
                magnifiedDividendPerShare +
                ((msg.value * magnitude) / _totalSupply);
            emit DividendsDistributed(msg.sender, msg.value);
            totalDividendsDistributed += msg.value;
        }
    }

    function setBalance(address payable account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        if (newBalance >= minTokenBalanceForDividends) {
            _setBalance(account, newBalance);
        } else {
            _setBalance(account, 0);
        }
    }

    function excludeFromDividends(address account, bool excluded)
        external
        onlyOwner
    {
        require(
            excludedFromDividends[account] != excluded,
            "RefarmCapital_DividendTracker: account already set to requested state"
        );
        excludedFromDividends[account] = excluded;
        if (excluded) {
            _setBalance(account, 0);
        } else {
            uint256 newBalance = IERC20(tokenAddress).balanceOf(account);
            if (newBalance >= minTokenBalanceForDividends) {
                _setBalance(account, newBalance);
            } else {
                _setBalance(account, 0);
            }
        }
        emit ExcludeFromDividends(account, excluded);
    }

    function isExcludedFromDividends(address account)
        public
        view
        returns (bool)
    {
        return excludedFromDividends[account];
    }

    function manualSendDividend(uint256 amount, address holder)
        external
        onlyOwner
    {
        uint256 contractETHBalance = address(this).balance;
        payable(holder).transfer(amount > 0 ? amount : contractETHBalance);
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = _balances[account];
        if (newBalance > currentBalance) {
            uint256 addAmount = newBalance - currentBalance;
            _mint(account, addAmount);
        } else if (newBalance < currentBalance) {
            uint256 subAmount = currentBalance - newBalance;
            _burn(account, subAmount);
        }
    }

    function _mint(address account, uint256 amount) private {
        require(
            account != address(0),
            "RefarmCapital_DividendTracker: mint to the zero address"
        );
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
        magnifiedDividendCorrections[account] =
            magnifiedDividendCorrections[account] -
            int256(magnifiedDividendPerShare * amount);
    }

    function _burn(address account, uint256 amount) private {
        require(
            account != address(0),
            "RefarmCapital_DividendTracker: burn from the zero address"
        );
        uint256 accountBalance = _balances[account];
        require(
            accountBalance >= amount,
            "RefarmCapital_DividendTracker: burn amount exceeds balance"
        );
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
        magnifiedDividendCorrections[account] =
            magnifiedDividendCorrections[account] +
            int256(magnifiedDividendPerShare * amount);
    }

    function processAccount(address payable account)
        public
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);
        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount);
            return true;
        }
        return false;
    }

    function _withdrawDividendOfUser(address payable account)
        private
        returns (uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(account);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[account] += _withdrawableDividend;
            totalDividendsWithdrawn += _withdrawableDividend;
            emit DividendWithdrawn(account, _withdrawableDividend);
            (bool success, ) = account.call{
                value: _withdrawableDividend,
                gas: 3000
            }("");
            if (!success) {
                withdrawnDividends[account] -= _withdrawableDividend;
                totalDividendsWithdrawn -= _withdrawableDividend;
                return 0;
            }
            return _withdrawableDividend;
        }
        return 0;
    }

    function compoundAccount(address payable account)
        public
        onlyOwner
        returns (bool)
    {
        (uint256 amount, uint256 tokens) = _compoundDividendOfUser(account);
        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Compound(account, amount, tokens);
            return true;
        }
        return false;
    }

    function _compoundDividendOfUser(address payable account)
        private
        returns (uint256, uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(account);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[account] += _withdrawableDividend;
            totalDividendsWithdrawn += _withdrawableDividend;
            emit DividendWithdrawn(account, _withdrawableDividend);

            IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(
                UNISWAPROUTER
            );

            address[] memory path = new address[](2);
            path[0] = uniswapV2Router.WETH();
            path[1] = address(tokenAddress);

            bool success;
            uint256 tokens;

            uint256 initTokenBal = IERC20(tokenAddress).balanceOf(account);
            try
                uniswapV2Router
                    .swapExactETHForTokensSupportingFeeOnTransferTokens{
                    value: _withdrawableDividend
                }(0, path, address(account), block.timestamp)
            {
                success = true;
                tokens = IERC20(tokenAddress).balanceOf(account) - initTokenBal;
            } catch Error(
                string memory /*err*/
            ) {
                success = false;
            }

            if (!success) {
                withdrawnDividends[account] -= _withdrawableDividend;
                totalDividendsWithdrawn -= _withdrawableDividend;
                return (0, 0);
            }

            return (_withdrawableDividend, tokens);
        }
        return (0, 0);
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return accumulativeDividendOf(account) - withdrawnDividends[account];
    }

    function withdrawnDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return withdrawnDividends[account];
    }

    function accumulativeDividendOf(address account)
        public
        view
        returns (uint256)
    {
        int256 a = int256(magnifiedDividendPerShare * balanceOf(account));
        int256 b = magnifiedDividendCorrections[account]; // this is an explicit int256 (signed)
        return uint256(a + b) / magnitude;
    }

    function getAccountInfo(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

    function getLastClaimTime(address account) public view returns (uint256) {
        return lastClaimTimes[account];
    }

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

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

    function decimals() public pure returns (uint8) {
        return 18;
    }

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

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

    function transfer(address, uint256) public pure override returns (bool) {
        revert("RefarmCapital_DividendTracker: method not implemented");
    }

    function allowance(address, address)
        public
        pure
        override
        returns (uint256)
    {
        revert("RefarmCapital_DividendTracker: method not implemented");
    }

    function approve(address, uint256) public pure override returns (bool) {
        revert("RefarmCapital_DividendTracker: method not implemented");
    }

    function transferFrom(
        address,
        address,
        uint256
    ) public pure override returns (bool) {
        revert("RefarmCapital_DividendTracker: method not implemented");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_liquidityWallet","type":"address"},{"internalType":"address[]","name":"whitelistAddress","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"CompoundingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nativeReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndAddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TaxEnabled","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"accumulativeDividendOf","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compoundingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"dividendFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLastClaimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"holder","type":"address"}],"name":"manualSendDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setCompoundingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_dividendFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"setMaxTxBPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"setMaxWalletBPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_liquidityWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"},{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"},{"internalType":"bool","name":"_swapAllToken","type":"bool"}],"name":"updateDividendSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560028054821661dead17905560038054909116905560c0604052600660808190526552656661726d60d01b60a090815262000067916004919062000b9e565b506040805180820190915260068082526552454641524d60d01b6020909201918252620000979160059162000b9e565b5061019060065561012c600781905560088190556103e860095569152d02c7e14af6800000600a55600c805463ffffffff191663010101011790556030601855601955601a805460ff19169055348015620000f157600080fd5b506040516200782338038062007823833981016040819052620001149162000c85565b6200011f3362000627565b600e8054610100600160a81b0319166101006001600160a01b038681169190910291909117909155600f80546001600160a01b031916918416919091179055620001698162000677565b60015460405130916001600160a01b031690620001869062000c2d565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015620001ba573d6000803e3d6000fd5b50601580546001600160a01b0319166001600160a01b039283161790556001546040805163c45a015560e01b815290519190921691600091839163c45a01559160048083019260209291908290030181865afa1580156200021f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000245919062000d7f565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000293573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b9919062000d7f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000307573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032d919062000d7f565b601680546001600160a01b038086166001600160a01b031992831617909255601780549284169290911691909117905590506200036c816001620006f0565b60155460405162241fbd60e51b81526001600160a01b03909116600482018190526001602483015290630483f7a090604401600060405180830381600087803b158015620003b957600080fd5b505af1158015620003ce573d6000803e3d6000fd5b505060155460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200041e57600080fd5b505af115801562000433573d6000803e3d6000fd5b50506015546001600160a01b03169150630483f7a090506200045d6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b158015620004a657600080fd5b505af1158015620004bb573d6000803e3d6000fd5b505060155460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b1580156200050d57600080fd5b505af115801562000522573d6000803e3d6000fd5b50505050620005426200053a6200086d60201b60201c565b60016200087c565b6200054f3060016200087c565b60155462000568906001600160a01b031660016200087c565b620005876200057f6000546001600160a01b031690565b6001620009bd565b62000594306001620009bd565b601554620005ad906001600160a01b03166001620009bd565b620005cc620005c46000546001600160a01b031690565b600162000a33565b620005d930600162000a33565b601554620005f2906001600160a01b0316600162000a33565b6200061c620006096000546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000aa9565b505050505062000e4b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b81518160ff161015620006ec57600160146000848460ff1681518110620006a557620006a562000da4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580620006e38162000dd0565b9150506200067a565b5050565b6001600160a01b03821660009081526013602052604090205460ff16151581151514156200079b5760405162461bcd60e51b815260206004820152604760248201527f52656661726d4361706974616c3a206175746f6d61746564206d61726b65742060448201527f6d616b6572207061697220697320616c72656164792073657420746f20746861606482015266742076616c756560c81b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155620008315760155460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156200081757600080fd5b505af11580156200082c573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000546001600160a01b031690565b6000546001600160a01b03163314620008c75760405162461bcd60e51b8152602060048201819052602482015260008051602062007803833981519152604482015260640162000792565b6001600160a01b03821660009081526012602052604090205460ff16151581151514156200095e5760405162461bcd60e51b815260206004820152603860248201527f52656661726d4361706974616c3a206163636f756e7420697320616c7265616460448201527f792073657420746f207265717565737465642073746174650000000000000000606482015260840162000792565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000546001600160a01b0316331462000a085760405162461bcd60e51b8152602060048201819052602482015260008051602062007803833981519152604482015260640162000792565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331462000a7e5760405162461bcd60e51b8152602060048201819052602482015260008051602062007803833981519152604482015260640162000792565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b03821662000b115760405162461bcd60e51b815260206004820152602760248201527f52656661726d4361706974616c3a206d696e7420746f20746865207a65726f206044820152666164647265737360c81b606482015260840162000792565b80600d600082825462000b25919062000df3565b90915550506001600160a01b0382166000908152601060205260408120805483929062000b5490849062000df3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000bac9062000e0e565b90600052602060002090601f01602090048101928262000bd0576000855562000c1b565b82601f1062000beb57805160ff191683800117855562000c1b565b8280016001018555821562000c1b579182015b8281111562000c1b57825182559160200191906001019062000bfe565b5062000c2992915062000c3b565b5090565b6125e0806200522383390190565b5b8082111562000c29576000815560010162000c3c565b80516001600160a01b038116811462000c6a57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121562000c9b57600080fd5b62000ca68462000c52565b9250602062000cb781860162000c52565b60408601519093506001600160401b038082111562000cd557600080fd5b818701915087601f83011262000cea57600080fd5b81518181111562000cff5762000cff62000c6f565b8060051b604051601f19603f8301168101818110858211171562000d275762000d2762000c6f565b60405291825284820192508381018501918a83111562000d4657600080fd5b938501935b8285101562000d6f5762000d5f8562000c52565b8452938501939285019262000d4b565b8096505050505050509250925092565b60006020828403121562000d9257600080fd5b62000d9d8262000c52565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81141562000dea5762000dea62000dba565b60010192915050565b6000821982111562000e095762000e0962000dba565b500190565b600181811c9082168062000e2357607f821691505b6020821081141562000e4557634e487b7160e01b600052602260045260246000fd5b50919050565b6143c88062000e5b6000396000f3fe6080604052600436106103855760003560e01c80637b510fe8116101d1578063b80b6e8911610102578063dd62ed3e116100a0578063ebbf1ace1161006f578063ebbf1ace14610b69578063f1b234ad14610b7f578063f2fde38b14610b9f578063f69e204614610bbf57600080fd5b8063dd62ed3e14610ac0578063e01af92c14610b13578063e2f4560514610b33578063e4956ce214610b4957600080fd5b8063c705c569116100dc578063c705c56914610a4b578063c9567bf914610a6b578063d2fcc00114610a80578063d4c989d314610aa057600080fd5b8063b80b6e89146109f5578063c024666814610a0b578063c6af580b14610a2b57600080fd5b8063a457c2d71161016f578063a9059cbb11610149578063a9059cbb14610965578063aa4e8c4a14610985578063aafd847a146109a5578063b62496f5146109c557600080fd5b8063a457c2d714610905578063a680e0bc14610925578063a8b9d2401461094557600080fd5b80638e126944116101ab5780638e1269441461089057806395d89b41146108b05780639a7a23d6146108c55780639e252f00146108e557600080fd5b80637b510fe8146107e6578063870bd30b146108455780638da5cb5b1461086557600080fd5b806349bd5a5e116102b6578063658c27a9116102545780636ddd1713116102235780636ddd17131461075957806370a0823114610778578063715018a6146107bb578063744d1591146107d057600080fd5b8063658c27a91461068d57806365b8dbc0146106d357806368c51e35146106f35780636dd3d39f1461071357600080fd5b806357777d311161029057806357777d31146106215780635937ea6c146106375780635b65b9ab1461064d5780635e843ad21461066d57600080fd5b806349bd5a5e146105995780634e71d92d146105c65780634fbee193146105db57600080fd5b806327ce014711610323578063313ce567116102fd578063313ce5671461052757806333f3d6281461054357806337eb152814610563578063395093511461057957600080fd5b806327ce0147146104b95780632c1f5216146104d95780632f4504ae1461050657600080fd5b80630dd871571161035f5780630dd871571461040e5780631694505e1461043257806318160ddd1461048457806323b872dd1461049957600080fd5b80630483f7a01461039157806306fdde03146103b3578063095ea7b3146103de57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103b16103ac366004613eb0565b610bd4565b005b3480156103bf57600080fd5b506103c8610cec565b6040516103d59190613ee9565b60405180910390f35b3480156103ea57600080fd5b506103fe6103f9366004613f5c565b610d7e565b60405190151581526020016103d5565b34801561041a57600080fd5b50610424600b5481565b6040519081526020016103d5565b34801561043e57600080fd5b5060165461045f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103d5565b34801561049057600080fd5b50600d54610424565b3480156104a557600080fd5b506103fe6104b4366004613f88565b610d94565b3480156104c557600080fd5b506104246104d4366004613fc9565b610e81565b3480156104e557600080fd5b5060155461045f9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561051257600080fd5b50600c546103fe906301000000900460ff1681565b34801561053357600080fd5b50604051601281526020016103d5565b34801561054f57600080fd5b506103b161055e366004613f5c565b610f1d565b34801561056f57600080fd5b5061042460095481565b34801561058557600080fd5b506103fe610594366004613f5c565b61103a565b3480156105a557600080fd5b5060175461045f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105d257600080fd5b506103b161107e565b3480156105e757600080fd5b506103fe6105f6366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205460ff1690565b34801561062d57600080fd5b5061042460185481565b34801561064357600080fd5b5061042460065481565b34801561065957600080fd5b506103b1610668366004613fed565b611130565b34801561067957600080fd5b506103b1610688366004614019565b6111dd565b34801561069957600080fd5b506103fe6106a8366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff166000908152601b602052604090205460ff1690565b3480156106df57600080fd5b506103b16106ee366004613fc9565b6112c7565b3480156106ff57600080fd5b506103b161070e36600461405b565b611685565b34801561071f57600080fd5b506103fe61072e366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff166000908152601c602052604090205460ff1690565b34801561076557600080fd5b50600c546103fe90610100900460ff1681565b34801561078457600080fd5b50610424610793366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b3480156107c757600080fd5b506103b16117aa565b3480156107dc57600080fd5b5061042460195481565b3480156107f257600080fd5b50610806610801366004613fc9565b611837565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a0016103d5565b34801561085157600080fd5b50600c546103fe9062010000900460ff1681565b34801561087157600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661045f565b34801561089c57600080fd5b506103b16108ab366004614074565b6118e7565b3480156108bc57600080fd5b506103c86119c7565b3480156108d157600080fd5b506103b16108e0366004613eb0565b6119d6565b3480156108f157600080fd5b506103b161090036600461405b565b611b10565b34801561091157600080fd5b506103fe610920366004613f5c565b611bbe565b34801561093157600080fd5b50610424610940366004613fc9565b611c98565b34801561095157600080fd5b50610424610960366004613fc9565b611cf1565b34801561097157600080fd5b506103fe610980366004613f5c565b611d4a565b34801561099157600080fd5b506103b16109a036600461405b565b611d57565b3480156109b157600080fd5b506104246109c0366004613fc9565b611e56565b3480156109d157600080fd5b506103fe6109e0366004613fc9565b60136020526000908152604090205460ff1681565b348015610a0157600080fd5b5061042460085481565b348015610a1757600080fd5b506103b1610a26366004613eb0565b611eaf565b348015610a3757600080fd5b506103b1610a46366004614099565b612076565b348015610a5757600080fd5b506103fe610a66366004613fc9565b612169565b348015610a7757600080fd5b506103b16121fe565b348015610a8c57600080fd5b506103b1610a9b366004613eb0565b6122ac565b348015610aac57600080fd5b506103b1610abb366004613eb0565b612383565b348015610acc57600080fd5b50610424610adb3660046140b6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b348015610b1f57600080fd5b506103b1610b2e366004614099565b61245a565b348015610b3f57600080fd5b50610424600a5481565b348015610b5557600080fd5b506103b1610b64366004614099565b612541565b348015610b7557600080fd5b5061042460075481565b348015610b8b57600080fd5b506103b1610b9a3660046140b6565b61262a565b348015610bab57600080fd5b506103b1610bba366004613fc9565b61271f565b348015610bcb57600080fd5b506103b161284c565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6015546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610cd057600080fd5b505af1158015610ce4573d6000803e3d6000fd5b505050505050565b606060048054610cfb906140e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d27906140e4565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b5050505050905090565b6000610d8b338484612909565b50600192915050565b6000610da1848484612abd565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260116020908152604080832033845290915290205482811015610e62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f52656661726d4361706974616c3a207472616e7366657220616d6f756e74206560448201527f78636565647320616c6c6f77616e6365000000000000000000000000000000006064820152608401610c51565b610e768533610e718685614167565b612909565b506001949350505050565b6015546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f17919061417e565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af1158015611011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110359190614197565b505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d8b918590610e719086906141b4565b60155473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af1158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d9190614197565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600683905560078290556008819055806111cb83856141b4565b6111d591906141b4565b600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b60165473ffffffffffffffffffffffffffffffffffffffff828116911614156113f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f52656661726d4361706974616c3a2074686520726f7574657220697320616c7260448201527f656164792073657420746f20746865206e6577206164647265737300000000006064820152608401610c51565b60165460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa1580156114d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f991906141cc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a691906141cc565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611618573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163c91906141cc565b601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611706576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b60af811015801561171957506127108111155b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f425053206d757374206265206265747765656e2031373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610c51565b601955565b60005473ffffffffffffffffffffffffffffffffffffffff16331461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b61183560006133c0565b565b6015546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa1580156118b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d591906141e9565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b6015546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610cb6565b606060058054610cfb906140e4565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b60175473ffffffffffffffffffffffffffffffffffffffff83811691161415611b02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f52656661726d4361706974616c3a2044455820706169722063616e206e6f742060448201527f62652072656d6f766564000000000000000000000000000000000000000000006064820152608401610c51565b611b0c8282613435565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b604051339082156108fc029083906000818181858888f19350505050158015611b0c573d6000803e3d6000fd5b33600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611c7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f52656661726d4361706974616c3a2064656372656173656420616c6c6f77616e60448201527f63652062656c6f77207a65726f000000000000000000000000000000000000006064820152608401610c51565b611c8e3385610e718685614167565b5060019392505050565b6015546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc90602401610ed6565b6015546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d24090602401610ed6565b6000610d8b338484612abd565b60005473ffffffffffffffffffffffffffffffffffffffff163314611dd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b604b8110158015611deb57506127108111155b611e51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f425053206d757374206265206265747765656e20373520616e642031303030306044820152606401610c51565b601855565b6015546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a90602401610ed6565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff1615158115151415611fec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f52656661726d4361706974616c3a206163636f756e7420697320616c7265616460448201527f792073657420746f2072657175657374656420737461746500000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe1339061215e90831515815260200190565b60405180910390a150565b6015546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa1580156121da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f179190614197565b60005473ffffffffffffffffffffffffffffffffffffffff16331461227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b601a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612404576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146124db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c89061215e90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d439061215e90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff8116612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c51565b61112d816133c0565b600c546301000000900460ff166128e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f52656661726d4361706974616c3a20636f6d706f756e64696e67206973206e6f60448201527f7420656e61626c656400000000000000000000000000000000000000000000006064820152608401610c51565b60155473ffffffffffffffffffffffffffffffffffffffff16636de1a5a93361109e565b73ffffffffffffffffffffffffffffffffffffffff83166129ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f52656661726d4361706974616c3a20617070726f76652066726f6d207468652060448201527f7a65726f206164647265737300000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216612a4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f52656661726d4361706974616c3a20617070726f766520746f20746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601a5460ff1680612ae8575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b80612b0d575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b80612b3d575073ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205460ff165b80612b6d575073ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff165b612bd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff8316612c76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f52656661726d4361706974616c3a207472616e736665722066726f6d2074686560448201527f207a65726f2061646472657373000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216612d19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f52656661726d4361706974616c3a207472616e7366657220746f20746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610c51565b6000612710601854612d2a600d5490565b612d349190614232565b612d3e919061426f565b90506000612710601954612d51600d5490565b612d5b9190614232565b612d65919061426f565b90508183111580612d9b575073ffffffffffffffffffffffffffffffffffffffff85166000908152601b602052604090205460ff165b612e01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610c51565b60005473ffffffffffffffffffffffffffffffffffffffff868116911614801590612e42575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015612e69575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015612e90575060175473ffffffffffffffffffffffffffffffffffffffff858116911614155b15612ee95773ffffffffffffffffffffffffffffffffffffffff8416600090815260106020908152604080832054601c9092529091205460ff1680612ede575081612edb85836141b4565b11155b612ee757600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526010602052604090205483811015612f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f52656661726d4361706974616c3a207472616e7366657220616d6f756e74206560448201527f7863656564732062616c616e63650000000000000000000000000000000000006064820152608401610c51565b30600090815260106020526040902054600a54600c54479183101590610100900460ff168015612fcc5750805b8015612fdb5750600e5460ff16155b801561300d575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16155b8015613034575060165473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b801561305b575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613082575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b156130f957600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff166130c257600a5492505b6130cc8383613645565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60175460009073ffffffffffffffffffffffffffffffffffffffff8b81169116148061313f575060175473ffffffffffffffffffffffffffffffffffffffff8a81169116145b15613148575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526012602052604090205460ff16806131a1575073ffffffffffffffffffffffffffffffffffffffff891660009081526012602052604090205460ff165b156131aa575060005b600e5460ff16806131c45750600c5462010000900460ff16155b156131cd575060005b801561320b5760006127106009548a6131e69190614232565b6131f0919061426f565b90506131fc818a614167565b98506132098b308361395f565b505b6132168a8a8a61395f565b60155473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6132618173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b1580156132cc57600080fd5b505af11580156132e0573d6000803e3d6000fd5b505060155473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6133318173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561339c57600080fd5b505af11580156133b0573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f52656661726d4361706974616c3a206175746f6d61746564206d61726b65742060448201527f6d616b6572207061697220697320616c72656164792073657420746f2074686160648201527f742076616c756500000000000000000000000000000000000000000000000000608482015260a401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556135fc576015546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156135e357600080fd5b505af11580156135f7573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60008211613651575050565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff1615613694576009546006546136879085614232565b613691919061426f565b90505b600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613704573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613728919061417e565b111561374b5760095460085461373e9086614232565b613748919061426f565b90505b6000816137588487614167565b6137629190614167565b9050600061377160028361426f565b9050600061377f8284614167565b905060008261378e86886141b4565b61379891906141b4565b9050476137a482613c1c565b6000886137b18347614167565b6137bb91906141b4565b90506000836137ca8a84614232565b6137d4919061426f565b90506000846137e38a85614232565b6137ed919061426f565b90506000816137fc8486614167565b6138069190614167565b9050821561385b57600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613859573d6000803e3d6000fd5b505b6138658782613d99565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a181156139505760155460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d8060008114613906576040519150601f19603f3d011682016040523d82523d6000602084013e61390b565b606091505b5050905080156133b057604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316613a02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f52656661726d4361706974616c3a207472616e736665722066726f6d2074686560448201527f207a65726f2061646472657373000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216613aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f52656661726d4361706974616c3a207472616e7366657220746f20746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090205481811015613b5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f52656661726d4361706974616c3a207472616e7366657220616d6f756e74206560448201527f7863656564732062616c616e63650000000000000000000000000000000000006064820152608401610c51565b613b658282614167565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601060205260408082209390935590851681529081208054849290613ba89084906141b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c0e91815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613c5157613c516142aa565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613cd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cf491906141cc565b81600181518110613d0757613d076142aa565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601654613d3a9130911684612909565b6016546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610cb69085906000908690309042906004016142d9565b601654613dbe90309073ffffffffffffffffffffffffffffffffffffffff1684612909565b601654600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015613e54573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e799190614364565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461112d57600080fd5b801515811461112d57600080fd5b60008060408385031215613ec357600080fd5b8235613ece81613e80565b91506020830135613ede81613ea2565b809150509250929050565b600060208083528351808285015260005b81811015613f1657858101830151858201604001528201613efa565b81811115613f28576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215613f6f57600080fd5b8235613f7a81613e80565b946020939093013593505050565b600080600060608486031215613f9d57600080fd5b8335613fa881613e80565b92506020840135613fb881613e80565b929592945050506040919091013590565b600060208284031215613fdb57600080fd5b8135613fe681613e80565b9392505050565b60008060006060848603121561400257600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561402e57600080fd5b833561403981613ea2565b925060208401359150604084013561405081613ea2565b809150509250925092565b60006020828403121561406d57600080fd5b5035919050565b6000806040838503121561408757600080fd5b823591506020830135613ede81613e80565b6000602082840312156140ab57600080fd5b8135613fe681613ea2565b600080604083850312156140c957600080fd5b82356140d481613e80565b91506020830135613ede81613e80565b600181811c908216806140f857607f821691505b60208210811415614132577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561417957614179614138565b500390565b60006020828403121561419057600080fd5b5051919050565b6000602082840312156141a957600080fd5b8151613fe681613ea2565b600082198211156141c7576141c7614138565b500190565b6000602082840312156141de57600080fd5b8151613fe681613e80565b600080600080600060a0868803121561420157600080fd5b855161420c81613e80565b602087015160408801516060890151608090990151929a91995097965090945092505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426a5761426a614138565b500290565b6000826142a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561433657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614304565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561437957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220574732915201d441e7aabee2e0ac7b560c8e525e2530b9fd669c4b95d9a6a4f164736f6c634300080a003360e0604052601d60a08190527f52656661726d4361706974616c5f4469766964656e64547261636b657200000060c090815262000040916002919062000153565b5060408051808201909152601d8082527f52656661726d4361706974616c5f4469766964656e64547261636b65720000006020909201918252620000879160039162000153565b503480156200009557600080fd5b50604051620025e0380380620025e0833981016040819052620000b89162000216565b620000c33362000103565b69d3c21bcecceda1000000608052600a80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556200028b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000161906200024e565b90600052602060002090601f016020900481019282620001855760008555620001d0565b82601f10620001a057805160ff1916838001178555620001d0565b82800160010185558215620001d0579182015b82811115620001d0578251825591602001919060010190620001b3565b50620001de929150620001e2565b5090565b5b80821115620001de5760008155600101620001e3565b80516001600160a01b03811681146200021157600080fd5b919050565b600080604083850312156200022a57600080fd5b6200023583620001f9565b91506200024560208401620001f9565b90509250929050565b600181811c908216806200026357607f821691505b602082108114156200028557634e487b7160e01b600052602260045260246000fd5b50919050565b60805161232b620002b5600039600081816105ad015281816109750152611100015261232b6000f3fe6080604052600436106101d15760003560e01c806385a6b3ae116100f7578063a8b9d24011610095578063c705c56911610064578063c705c569146105cf578063dd62ed3e14610615578063e30443bc14610630578063f2fde38b1461065057600080fd5b8063a8b9d24014610538578063a9059cbb14610238578063aafd847a14610558578063c49af5f01461059b57600080fd5b806395d89b41116100d157806395d89b411461049d5780639d76ea58146104b25780639e1e0661146104df578063a680e0bc146104f557600080fd5b806385a6b3ae1461041b5780638da5cb5b146104315780638e1269441461047d57600080fd5b80633009a6091161016f57806370a082311161013e57806370a0823114610344578063715018a6146103875780637b510fe81461039c578063807ab4f7146103fb57600080fd5b80633009a609146102c2578063313ce567146102d85780634e7b827f146102f45780636de1a5a91461032457600080fd5b8063095ea7b3116101ab578063095ea7b31461023857806318160ddd1461026857806323b872dd1461028757806327ce0147146102a257600080fd5b806303c83302146101e55780630483f7a0146101ed57806306fdde031461020d57600080fd5b366101e0576101de610670565b005b600080fd5b6101de610670565b3480156101f957600080fd5b506101de610208366004611d2f565b61070c565b34801561021957600080fd5b50610222610a0c565b60405161022f9190611d6d565b60405180910390f35b34801561024457600080fd5b50610258610253366004611de0565b610a9e565b604051901515815260200161022f565b34801561027457600080fd5b506005545b60405190815260200161022f565b34801561029357600080fd5b50610258610253366004611e0c565b3480156102ae57600080fd5b506102796102bd366004611e4d565b610b29565b3480156102ce57600080fd5b5061027960045481565b3480156102e457600080fd5b506040516012815260200161022f565b34801561030057600080fd5b5061025861030f366004611e4d565b600b6020526000908152604090205460ff1681565b34801561033057600080fd5b5061025861033f366004611e4d565b610bb4565b34801561035057600080fd5b5061027961035f366004611e4d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b34801561039357600080fd5b506101de610cc3565b3480156103a857600080fd5b506103bc6103b7366004611e4d565b610d4e565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161022f565b34801561040757600080fd5b50610258610416366004611e4d565b610e1d565b34801561042757600080fd5b5061027960085481565b34801561043d57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161022f565b34801561048957600080fd5b506101de610498366004611e71565b610f26565b3480156104a957600080fd5b50610222610ffd565b3480156104be57600080fd5b50600a546104589073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104eb57600080fd5b5061027960095481565b34801561050157600080fd5b50610279610510366004611e4d565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561054457600080fd5b50610279610553366004611e4d565b61100c565b34801561056457600080fd5b50610279610573366004611e4d565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205490565b3480156105a757600080fd5b506102797f000000000000000000000000000000000000000000000000000000000000000081565b3480156105db57600080fd5b506102586105ea366004611e4d565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205460ff1690565b34801561062157600080fd5b50610279610253366004611e96565b34801561063c57600080fd5b506101de61064b366004611de0565b61104b565b34801561065c57600080fd5b506101de61066b366004611e4d565b61113e565b60006005541161067f57600080fd5b341561070a576005546106a370010000000000000000000000000000000034611ef3565b6106ad9190611f30565b6007546106ba9190611f6b565b60075560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a234600860008282546107049190611f6b565b90915550505b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff1615158115151415610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604560248201527f52656661726d4361706974616c5f4469766964656e64547261636b65723a206160448201527f63636f756e7420616c72656164792073657420746f207265717565737465642060648201527f7374617465000000000000000000000000000000000000000000000000000000608482015260a401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556108dc576108d782600061126e565b6109b6565b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009216906370a0823190602401602060405180830381865afa15801561094d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109719190611f83565b90507f000000000000000000000000000000000000000000000000000000000000000081106109a9576109a4838261126e565b6109b4565b6109b483600061126e565b505b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610a00911515815260200190565b60405180910390a25050565b606060028054610a1b90611f9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4790611f9c565b8015610a945780601f10610a6957610100808354040283529160200191610a94565b820191906000526020600020905b815481529060010190602001808311610a7757829003601f168201915b5050505050905090565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f52656661726d4361706974616c5f4469766964656e64547261636b65723a206d60448201527f6574686f64206e6f7420696d706c656d656e74656400000000000000000000006064820152600090608401610789565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120546007548291610b5d91611ef3565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054909150700100000000000000000000000000000000610ba28284611ff0565b610bac9190611f30565b949350505050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610c36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b600080610c42846112d9565b90925090508115610cb95773ffffffffffffffffffffffffffffffffffffffff84166000818152600e602090815260409182902042905581518581529081018490527f0e311a2c6dbfb0153ec3a8a5bdca09070b3e5f60768fdc10a20453f38d186873910160405180910390a25060019392505050565b5060009392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b61070a600061170b565b6000806000806000610d976040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b73ffffffffffffffffffffffffffffffffffffffff87168152610db98761100c565b6020820152610dc787610b29565b604082810191825273ffffffffffffffffffffffffffffffffffffffff989098166000908152600e6020908152989020546060830181905282519890920151905160095498999198909750919550909350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610e9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b6000610eaa83611780565b90508015610f1d5773ffffffffffffffffffffffffffffffffffffffff83166000818152600e602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610f0c9084815260200190565b60405180910390a250600192915050565b50600092915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610fa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b4773ffffffffffffffffffffffffffffffffffffffff82166108fc84610fcd5782610fcf565b845b6040518115909202916000818181858888f19350505050158015610ff7573d6000803e3d6000fd5b50505050565b606060038054610a1b90611f9c565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604081205461103b83610b29565b6110459190612064565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16156110fe575050565b7f000000000000000000000000000000000000000000000000000000000000000081106111335761112f828261126e565b5050565b61112f82600061126e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff8116611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610789565b61126b8161170b565b50565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040902054808211156112b45760006112a88284612064565b9050610ff78482611903565b808210156112d45760006112c88383612064565b9050610ff78482611ab0565b505050565b60008060006112e78461100c565b905080156116ff5773ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604081208054839290611324908490611f6b565b92505081905550806009600082825461133d9190611f6b565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8516907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260015460408051600280825260608201835273ffffffffffffffffffffffffffffffffffffffff909316926000926020830190803683370190505090508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611415573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611439919061207b565b8160008151811061144c5761144c612098565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a5482519116908290600190811061148a5761148a612098565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a546040517f70a082310000000000000000000000000000000000000000000000000000000081528883166004820152600092839283929116906370a0823190602401602060405180830381865afa15801561150e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115329190611f83565b90508473ffffffffffffffffffffffffffffffffffffffff1663b6f9de95876000878d426040518663ffffffff1660e01b815260040161157594939291906120c7565b6000604051808303818588803b15801561158e57600080fd5b505af1935050505080156115a0575060015b6115e2576115ac61214b565b806308c379a014156115d657506115c16121d9565b806115cc57506115d8565b6000935050611687565b505b3d6000803e3d6000fd5b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b8116600483015260019550839216906370a0823190602401602060405180830381865afa158015611656573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167a9190611f83565b6116849190612064565b91505b826116f05773ffffffffffffffffffffffffffffffffffffffff89166000908152600d6020526040812080548892906116c1908490612064565b9250508190555085600960008282546116da9190612064565b9091555060009a8b9a5098505050505050505050565b50939793965092945050505050565b50600093849350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061178c8361100c565b90508015610f1d5773ffffffffffffffffffffffffffffffffffffffff83166000908152600d6020526040812080548392906117c9908490611f6b565b9250508190555080600960008282546117e29190611f6b565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260008373ffffffffffffffffffffffffffffffffffffffff1682610bb890604051600060405180830381858888f193505050503d8060008114611891576040519150601f19603f3d011682016040523d82523d6000602084013e611896565b606091505b50509050806118fc5773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548492906118d4908490612064565b9250508190555081600960008282546118ed9190612064565b90915550600095945050505050565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff82166119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603760248201527f52656661726d4361706974616c5f4469766964656e64547261636b65723a206d60448201527f696e7420746f20746865207a65726f20616464726573730000000000000000006064820152608401610789565b80600560008282546119b89190611f6b565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040812080548392906119f2908490611f6b565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380600754611a539190611ef3565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c6020526040902054611a839190612281565b73ffffffffffffffffffffffffffffffffffffffff9092166000908152600c602052604090209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216611b53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f52656661726d4361706974616c5f4469766964656e64547261636b65723a206260448201527f75726e2066726f6d20746865207a65726f2061646472657373000000000000006064820152608401610789565b73ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205481811015611c09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f52656661726d4361706974616c5f4469766964656e64547261636b65723a206260448201527f75726e20616d6f756e7420657863656564732062616c616e63650000000000006064820152608401610789565b611c138282612064565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081209190915560058054849290611c4e908490612064565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a381600754611caf9190611ef3565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054611cdf9190611ff0565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600c60205260409020929092555050565b73ffffffffffffffffffffffffffffffffffffffff8116811461126b57600080fd5b60008060408385031215611d4257600080fd5b8235611d4d81611d0d565b915060208301358015158114611d6257600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611d9a57858101830151858201604001528201611d7e565b81811115611dac576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215611df357600080fd5b8235611dfe81611d0d565b946020939093013593505050565b600080600060608486031215611e2157600080fd5b8335611e2c81611d0d565b92506020840135611e3c81611d0d565b929592945050506040919091013590565b600060208284031215611e5f57600080fd5b8135611e6a81611d0d565b9392505050565b60008060408385031215611e8457600080fd5b823591506020830135611d6281611d0d565b60008060408385031215611ea957600080fd5b8235611eb481611d0d565b91506020830135611d6281611d0d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f2b57611f2b611ec4565b500290565b600082611f66577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611f7e57611f7e611ec4565b500190565b600060208284031215611f9557600080fd5b5051919050565b600181811c90821680611fb057607f821691505b60208210811415611fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808212827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0384138115161561202a5761202a611ec4565b827f800000000000000000000000000000000000000000000000000000000000000003841281161561205e5761205e611ec4565b50500190565b60008282101561207657612076611ec4565b500390565b60006020828403121561208d57600080fd5b8151611e6a81611d0d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b8181101561211e57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016120ec565b505073ffffffffffffffffffffffffffffffffffffffff9690961660408501525050506060015292915050565b600060033d11156121645760046000803e5060005160e01c5b90565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff821117156121d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040525050565b600060443d10156121e75790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561223557505050505090565b828501915081518181111561224d5750505050505090565b843d87010160208285010111156122675750505050505090565b61227660208286010187612167565b509095945050505050565b6000808312837f8000000000000000000000000000000000000000000000000000000000000000018312811516156122bb576122bb611ec4565b837f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0183138116156122ef576122ef611ec4565b5050039056fea264697066735822122026d384f503065b19e2a427f6907a510fc9294a2e35e3dbc613d1ab6b37fc379864736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000006b8adc4fd538073a2a9314b8ce5fc6490bd0091900000000000000000000000000d1f6d4513b75e8fb95509ad7683a354f2000d10000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d1f6d4513b75e8fb95509ad7683a354f2000d1

Deployed Bytecode

0x6080604052600436106103855760003560e01c80637b510fe8116101d1578063b80b6e8911610102578063dd62ed3e116100a0578063ebbf1ace1161006f578063ebbf1ace14610b69578063f1b234ad14610b7f578063f2fde38b14610b9f578063f69e204614610bbf57600080fd5b8063dd62ed3e14610ac0578063e01af92c14610b13578063e2f4560514610b33578063e4956ce214610b4957600080fd5b8063c705c569116100dc578063c705c56914610a4b578063c9567bf914610a6b578063d2fcc00114610a80578063d4c989d314610aa057600080fd5b8063b80b6e89146109f5578063c024666814610a0b578063c6af580b14610a2b57600080fd5b8063a457c2d71161016f578063a9059cbb11610149578063a9059cbb14610965578063aa4e8c4a14610985578063aafd847a146109a5578063b62496f5146109c557600080fd5b8063a457c2d714610905578063a680e0bc14610925578063a8b9d2401461094557600080fd5b80638e126944116101ab5780638e1269441461089057806395d89b41146108b05780639a7a23d6146108c55780639e252f00146108e557600080fd5b80637b510fe8146107e6578063870bd30b146108455780638da5cb5b1461086557600080fd5b806349bd5a5e116102b6578063658c27a9116102545780636ddd1713116102235780636ddd17131461075957806370a0823114610778578063715018a6146107bb578063744d1591146107d057600080fd5b8063658c27a91461068d57806365b8dbc0146106d357806368c51e35146106f35780636dd3d39f1461071357600080fd5b806357777d311161029057806357777d31146106215780635937ea6c146106375780635b65b9ab1461064d5780635e843ad21461066d57600080fd5b806349bd5a5e146105995780634e71d92d146105c65780634fbee193146105db57600080fd5b806327ce014711610323578063313ce567116102fd578063313ce5671461052757806333f3d6281461054357806337eb152814610563578063395093511461057957600080fd5b806327ce0147146104b95780632c1f5216146104d95780632f4504ae1461050657600080fd5b80630dd871571161035f5780630dd871571461040e5780631694505e1461043257806318160ddd1461048457806323b872dd1461049957600080fd5b80630483f7a01461039157806306fdde03146103b3578063095ea7b3146103de57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103b16103ac366004613eb0565b610bd4565b005b3480156103bf57600080fd5b506103c8610cec565b6040516103d59190613ee9565b60405180910390f35b3480156103ea57600080fd5b506103fe6103f9366004613f5c565b610d7e565b60405190151581526020016103d5565b34801561041a57600080fd5b50610424600b5481565b6040519081526020016103d5565b34801561043e57600080fd5b5060165461045f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103d5565b34801561049057600080fd5b50600d54610424565b3480156104a557600080fd5b506103fe6104b4366004613f88565b610d94565b3480156104c557600080fd5b506104246104d4366004613fc9565b610e81565b3480156104e557600080fd5b5060155461045f9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561051257600080fd5b50600c546103fe906301000000900460ff1681565b34801561053357600080fd5b50604051601281526020016103d5565b34801561054f57600080fd5b506103b161055e366004613f5c565b610f1d565b34801561056f57600080fd5b5061042460095481565b34801561058557600080fd5b506103fe610594366004613f5c565b61103a565b3480156105a557600080fd5b5060175461045f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105d257600080fd5b506103b161107e565b3480156105e757600080fd5b506103fe6105f6366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205460ff1690565b34801561062d57600080fd5b5061042460185481565b34801561064357600080fd5b5061042460065481565b34801561065957600080fd5b506103b1610668366004613fed565b611130565b34801561067957600080fd5b506103b1610688366004614019565b6111dd565b34801561069957600080fd5b506103fe6106a8366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff166000908152601b602052604090205460ff1690565b3480156106df57600080fd5b506103b16106ee366004613fc9565b6112c7565b3480156106ff57600080fd5b506103b161070e36600461405b565b611685565b34801561071f57600080fd5b506103fe61072e366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff166000908152601c602052604090205460ff1690565b34801561076557600080fd5b50600c546103fe90610100900460ff1681565b34801561078457600080fd5b50610424610793366004613fc9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b3480156107c757600080fd5b506103b16117aa565b3480156107dc57600080fd5b5061042460195481565b3480156107f257600080fd5b50610806610801366004613fc9565b611837565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a0016103d5565b34801561085157600080fd5b50600c546103fe9062010000900460ff1681565b34801561087157600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661045f565b34801561089c57600080fd5b506103b16108ab366004614074565b6118e7565b3480156108bc57600080fd5b506103c86119c7565b3480156108d157600080fd5b506103b16108e0366004613eb0565b6119d6565b3480156108f157600080fd5b506103b161090036600461405b565b611b10565b34801561091157600080fd5b506103fe610920366004613f5c565b611bbe565b34801561093157600080fd5b50610424610940366004613fc9565b611c98565b34801561095157600080fd5b50610424610960366004613fc9565b611cf1565b34801561097157600080fd5b506103fe610980366004613f5c565b611d4a565b34801561099157600080fd5b506103b16109a036600461405b565b611d57565b3480156109b157600080fd5b506104246109c0366004613fc9565b611e56565b3480156109d157600080fd5b506103fe6109e0366004613fc9565b60136020526000908152604090205460ff1681565b348015610a0157600080fd5b5061042460085481565b348015610a1757600080fd5b506103b1610a26366004613eb0565b611eaf565b348015610a3757600080fd5b506103b1610a46366004614099565b612076565b348015610a5757600080fd5b506103fe610a66366004613fc9565b612169565b348015610a7757600080fd5b506103b16121fe565b348015610a8c57600080fd5b506103b1610a9b366004613eb0565b6122ac565b348015610aac57600080fd5b506103b1610abb366004613eb0565b612383565b348015610acc57600080fd5b50610424610adb3660046140b6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b348015610b1f57600080fd5b506103b1610b2e366004614099565b61245a565b348015610b3f57600080fd5b50610424600a5481565b348015610b5557600080fd5b506103b1610b64366004614099565b612541565b348015610b7557600080fd5b5061042460075481565b348015610b8b57600080fd5b506103b1610b9a3660046140b6565b61262a565b348015610bab57600080fd5b506103b1610bba366004613fc9565b61271f565b348015610bcb57600080fd5b506103b161284c565b60005473ffffffffffffffffffffffffffffffffffffffff163314610c5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6015546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610cd057600080fd5b505af1158015610ce4573d6000803e3d6000fd5b505050505050565b606060048054610cfb906140e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d27906140e4565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b5050505050905090565b6000610d8b338484612909565b50600192915050565b6000610da1848484612abd565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260116020908152604080832033845290915290205482811015610e62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f52656661726d4361706974616c3a207472616e7366657220616d6f756e74206560448201527f78636565647320616c6c6f77616e6365000000000000000000000000000000006064820152608401610c51565b610e768533610e718685614167565b612909565b506001949350505050565b6015546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f17919061417e565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af1158015611011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110359190614197565b505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d8b918590610e719086906141b4565b60155473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af1158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d9190614197565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600683905560078290556008819055806111cb83856141b4565b6111d591906141b4565b600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b60165473ffffffffffffffffffffffffffffffffffffffff828116911614156113f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f52656661726d4361706974616c3a2074686520726f7574657220697320616c7260448201527f656164792073657420746f20746865206e6577206164647265737300000000006064820152608401610c51565b60165460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa1580156114d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f991906141cc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a691906141cc565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611618573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163c91906141cc565b601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611706576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b60af811015801561171957506127108111155b6117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f425053206d757374206265206265747765656e2031373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610c51565b601955565b60005473ffffffffffffffffffffffffffffffffffffffff16331461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b61183560006133c0565b565b6015546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa1580156118b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d591906141e9565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b6015546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610cb6565b606060058054610cfb906140e4565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b60175473ffffffffffffffffffffffffffffffffffffffff83811691161415611b02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f52656661726d4361706974616c3a2044455820706169722063616e206e6f742060448201527f62652072656d6f766564000000000000000000000000000000000000000000006064820152608401610c51565b611b0c8282613435565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b604051339082156108fc029083906000818181858888f19350505050158015611b0c573d6000803e3d6000fd5b33600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611c7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f52656661726d4361706974616c3a2064656372656173656420616c6c6f77616e60448201527f63652062656c6f77207a65726f000000000000000000000000000000000000006064820152608401610c51565b611c8e3385610e718685614167565b5060019392505050565b6015546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc90602401610ed6565b6015546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d24090602401610ed6565b6000610d8b338484612abd565b60005473ffffffffffffffffffffffffffffffffffffffff163314611dd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b604b8110158015611deb57506127108111155b611e51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f425053206d757374206265206265747765656e20373520616e642031303030306044820152606401610c51565b601855565b6015546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a90602401610ed6565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff1615158115151415611fec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f52656661726d4361706974616c3a206163636f756e7420697320616c7265616460448201527f792073657420746f2072657175657374656420737461746500000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe1339061215e90831515815260200190565b60405180910390a150565b6015546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa1580156121da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f179190614197565b60005473ffffffffffffffffffffffffffffffffffffffff16331461227f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b601a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612404576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146124db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c89061215e90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600c80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d439061215e90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff8116612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c51565b61112d816133c0565b600c546301000000900460ff166128e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f52656661726d4361706974616c3a20636f6d706f756e64696e67206973206e6f60448201527f7420656e61626c656400000000000000000000000000000000000000000000006064820152608401610c51565b60155473ffffffffffffffffffffffffffffffffffffffff16636de1a5a93361109e565b73ffffffffffffffffffffffffffffffffffffffff83166129ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f52656661726d4361706974616c3a20617070726f76652066726f6d207468652060448201527f7a65726f206164647265737300000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216612a4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f52656661726d4361706974616c3a20617070726f766520746f20746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601a5460ff1680612ae8575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b80612b0d575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b80612b3d575073ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205460ff165b80612b6d575073ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff165b612bd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610c51565b73ffffffffffffffffffffffffffffffffffffffff8316612c76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f52656661726d4361706974616c3a207472616e736665722066726f6d2074686560448201527f207a65726f2061646472657373000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216612d19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f52656661726d4361706974616c3a207472616e7366657220746f20746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610c51565b6000612710601854612d2a600d5490565b612d349190614232565b612d3e919061426f565b90506000612710601954612d51600d5490565b612d5b9190614232565b612d65919061426f565b90508183111580612d9b575073ffffffffffffffffffffffffffffffffffffffff85166000908152601b602052604090205460ff165b612e01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610c51565b60005473ffffffffffffffffffffffffffffffffffffffff868116911614801590612e42575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015612e69575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015612e90575060175473ffffffffffffffffffffffffffffffffffffffff858116911614155b15612ee95773ffffffffffffffffffffffffffffffffffffffff8416600090815260106020908152604080832054601c9092529091205460ff1680612ede575081612edb85836141b4565b11155b612ee757600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526010602052604090205483811015612f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f52656661726d4361706974616c3a207472616e7366657220616d6f756e74206560448201527f7863656564732062616c616e63650000000000000000000000000000000000006064820152608401610c51565b30600090815260106020526040902054600a54600c54479183101590610100900460ff168015612fcc5750805b8015612fdb5750600e5460ff16155b801561300d575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16155b8015613034575060165473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b801561305b575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613082575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b156130f957600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff166130c257600a5492505b6130cc8383613645565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60175460009073ffffffffffffffffffffffffffffffffffffffff8b81169116148061313f575060175473ffffffffffffffffffffffffffffffffffffffff8a81169116145b15613148575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526012602052604090205460ff16806131a1575073ffffffffffffffffffffffffffffffffffffffff891660009081526012602052604090205460ff165b156131aa575060005b600e5460ff16806131c45750600c5462010000900460ff16155b156131cd575060005b801561320b5760006127106009548a6131e69190614232565b6131f0919061426f565b90506131fc818a614167565b98506132098b308361395f565b505b6132168a8a8a61395f565b60155473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6132618173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b1580156132cc57600080fd5b505af11580156132e0573d6000803e3d6000fd5b505060155473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6133318173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561339c57600080fd5b505af11580156133b0573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f52656661726d4361706974616c3a206175746f6d61746564206d61726b65742060448201527f6d616b6572207061697220697320616c72656164792073657420746f2074686160648201527f742076616c756500000000000000000000000000000000000000000000000000608482015260a401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556135fc576015546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156135e357600080fd5b505af11580156135f7573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60008211613651575050565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff1615613694576009546006546136879085614232565b613691919061426f565b90505b600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613704573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613728919061417e565b111561374b5760095460085461373e9086614232565b613748919061426f565b90505b6000816137588487614167565b6137629190614167565b9050600061377160028361426f565b9050600061377f8284614167565b905060008261378e86886141b4565b61379891906141b4565b9050476137a482613c1c565b6000886137b18347614167565b6137bb91906141b4565b90506000836137ca8a84614232565b6137d4919061426f565b90506000846137e38a85614232565b6137ed919061426f565b90506000816137fc8486614167565b6138069190614167565b9050821561385b57600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613859573d6000803e3d6000fd5b505b6138658782613d99565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a181156139505760155460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d8060008114613906576040519150601f19603f3d011682016040523d82523d6000602084013e61390b565b606091505b5050905080156133b057604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316613a02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f52656661726d4361706974616c3a207472616e736665722066726f6d2074686560448201527f207a65726f2061646472657373000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff8216613aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f52656661726d4361706974616c3a207472616e7366657220746f20746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610c51565b73ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090205481811015613b5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f52656661726d4361706974616c3a207472616e7366657220616d6f756e74206560448201527f7863656564732062616c616e63650000000000000000000000000000000000006064820152608401610c51565b613b658282614167565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601060205260408082209390935590851681529081208054849290613ba89084906141b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c0e91815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613c5157613c516142aa565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613cd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cf491906141cc565b81600181518110613d0757613d076142aa565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601654613d3a9130911684612909565b6016546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610cb69085906000908690309042906004016142d9565b601654613dbe90309073ffffffffffffffffffffffffffffffffffffffff1684612909565b601654600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015613e54573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e799190614364565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461112d57600080fd5b801515811461112d57600080fd5b60008060408385031215613ec357600080fd5b8235613ece81613e80565b91506020830135613ede81613ea2565b809150509250929050565b600060208083528351808285015260005b81811015613f1657858101830151858201604001528201613efa565b81811115613f28576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215613f6f57600080fd5b8235613f7a81613e80565b946020939093013593505050565b600080600060608486031215613f9d57600080fd5b8335613fa881613e80565b92506020840135613fb881613e80565b929592945050506040919091013590565b600060208284031215613fdb57600080fd5b8135613fe681613e80565b9392505050565b60008060006060848603121561400257600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561402e57600080fd5b833561403981613ea2565b925060208401359150604084013561405081613ea2565b809150509250925092565b60006020828403121561406d57600080fd5b5035919050565b6000806040838503121561408757600080fd5b823591506020830135613ede81613e80565b6000602082840312156140ab57600080fd5b8135613fe681613ea2565b600080604083850312156140c957600080fd5b82356140d481613e80565b91506020830135613ede81613e80565b600181811c908216806140f857607f821691505b60208210811415614132577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561417957614179614138565b500390565b60006020828403121561419057600080fd5b5051919050565b6000602082840312156141a957600080fd5b8151613fe681613ea2565b600082198211156141c7576141c7614138565b500190565b6000602082840312156141de57600080fd5b8151613fe681613e80565b600080600080600060a0868803121561420157600080fd5b855161420c81613e80565b602087015160408801516060890151608090990151929a91995097965090945092505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426a5761426a614138565b500290565b6000826142a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561433657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614304565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561437957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220574732915201d441e7aabee2e0ac7b560c8e525e2530b9fd669c4b95d9a6a4f164736f6c634300080a0033

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

0000000000000000000000006b8adc4fd538073a2a9314b8ce5fc6490bd0091900000000000000000000000000d1f6d4513b75e8fb95509ad7683a354f2000d10000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d1f6d4513b75e8fb95509ad7683a354f2000d1

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x6B8adc4Fd538073a2A9314b8CE5fc6490Bd00919
Arg [1] : _liquidityWallet (address): 0x00D1f6D4513B75E8fb95509ad7683a354F2000D1
Arg [2] : whitelistAddress (address[]): 0x00D1f6D4513B75E8fb95509ad7683a354F2000D1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000006b8adc4fd538073a2a9314b8ce5fc6490bd00919
Arg [1] : 00000000000000000000000000d1f6d4513b75e8fb95509ad7683a354f2000d1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 00000000000000000000000000d1f6d4513b75e8fb95509ad7683a354f2000d1


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.