ETH Price: $2,360.99 (+0.35%)

Token

STRAWHAT_DividendTracker (STRAWHAT_DividendTracker)
 

Overview

Max Total Supply

14,293,614,135,046.163939001332243565 STRAWHAT_DividendTracker

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
209,561,469,717.975405747290858354 STRAWHAT_DividendTracker

Value
$0.00
0x690f17d83f73b6a510fb0b4aa39e6d1a3fb9cabd
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:
DividendTracker

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-28
*/

// SPDX-License-Identifier: MIT

/**
“Being alone is more painful that getting hurt”

-Monkey D. Luffy

https://t.me/strawhatdao
https://strawhatdao.xyz
https://twitter.com/strawhatdao_xyz

4/4 Tax - 2% treasury / 1% liquidity / 1% dividend
2% Max Wallet
1% Max Txn
*/
pragma solidity =0.8.17 >=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/STRAWHAT.sol
/**

Straw Hat DAO

*/

/* 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 STRAWHAT is Ownable, IERC20 {
    address UNISWAPROUTER = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    address ZERO = 0x0000000000000000000000000000000000000000;

    string private _name = "Straw Hat DAO";
    string private _symbol = "STRAWHAT";

    uint256 public treasuryFeeBPS = 200;
    uint256 public liquidityFeeBPS = 100;
    uint256 public dividendFeeBPS = 100;
    uint256 public totalFeeBPS = 400;

    uint256 public swapTokensAtAmount = 100000000000 * (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;
    mapping(address => bool) isBlacklisted;

    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);
    event BlacklistEnabled(bool enabled);

    DividendTracker public dividendTracker;
    IUniswapV2Router02 public uniswapV2Router;

    address public uniswapV2Pair;

    uint256 public maxTxBPS = 101;
    uint256 public maxWalletBPS = 201;

    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(), 100000000000000 * (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,
            "STRAWHAT: 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,
            "STRAWHAT: 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(!isBlacklisted[sender], "STRAWHAT: Sender is blacklisted");
        require(!isBlacklisted[recipient], "STRAWHAT: Recipient is blacklisted");

        require(sender != address(0), "STRAWHAT: transfer from the zero address");
        require(recipient != address(0), "STRAWHAT: 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,
            "STRAWHAT: 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), "STRAWHAT: transfer from the zero address");
        require(recipient != address(0), "STRAWHAT: transfer to the zero address");
        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "STRAWHAT: 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), "STRAWHAT: approve from the zero address");
        require(spender != address(0), "STRAWHAT: 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), "STRAWHAT: 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), "STRAWHAT: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "STRAWHAT: 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,
            "STRAWHAT: 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, "STRAWHAT: 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,
            "STRAWHAT: 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),
            "STRAWHAT: 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, "STRAWHAT: 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);
    }

    function blackList(address _user) public onlyOwner {
        require(!isBlacklisted[_user], "user already blacklisted");
        isBlacklisted[_user] = true;
        // events?
    }

    function removeFromBlacklist(address _user) public onlyOwner {
        require(isBlacklisted[_user], "user already whitelisted");
        isBlacklisted[_user] = false;
        //events?
    }

    function blackListMany(address[] memory _users) public onlyOwner {
        for (uint8 i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = true;
        }
    }

    function unBlackListMany(address[] memory _users) public onlyOwner {
        for (uint8 i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = false;
        }
    }
}

contract DividendTracker is Ownable, IERC20 {
    address UNISWAPROUTER;

    string private _name = "STRAWHAT_DividendTracker";
    string private _symbol = "STRAWHAT_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 = 10000 * (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,
            "STRAWHAT_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),
            "STRAWHAT_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),
            "STRAWHAT_DividendTracker: burn from the zero address"
        );
        uint256 accountBalance = _balances[account];
        require(
            accountBalance >= amount,
            "STRAWHAT_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("STRAWHAT_DividendTracker: method not implemented");
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_uniswapRouter","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Compound","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFromDividends","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"compoundAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"distributeDividends","outputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"excludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"account","type":"address"}],"name":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastProcessedIndex","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":"minTokenBalanceForDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"processAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsWithdrawn","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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","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"}]

60e0604052601860a09081527f53545241574841545f4469766964656e64547261636b6572000000000000000060c0526002906200003e9082620001f3565b5060408051808201909152601881527f53545241574841545f4469766964656e64547261636b657200000000000000006020820152600390620000829082620001f3565b503480156200009057600080fd5b5060405162001e4f38038062001e4f833981016040819052620000b391620002dc565b620000be33620000fe565b69021e19e0c9bab2400000608052600a80546001600160a01b039384166001600160a01b0319918216179091556001805492909316911617905562000314565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017957607f821691505b6020821081036200019a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ee57600081815260208120601f850160051c81016020861015620001c95750805b601f850160051c820191505b81811015620001ea57828155600101620001d5565b5050505b505050565b81516001600160401b038111156200020f576200020f6200014e565b620002278162000220845462000164565b84620001a0565b602080601f8311600181146200025f5760008415620002465750858301515b600019600386901b1c1916600185901b178555620001ea565b600085815260208120601f198616915b8281101562000290578886015182559484019460019091019084016200026f565b5085821015620002af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80516001600160a01b0381168114620002d757600080fd5b919050565b60008060408385031215620002f057600080fd5b620002fb83620002bf565b91506200030b60208401620002bf565b90509250929050565b608051611b116200033e60003960008181610552015281816108120152610d220152611b116000f3fe6080604052600436106101d15760003560e01c806385a6b3ae116100f7578063a8b9d24011610095578063c705c56911610064578063c705c56914610574578063dd62ed3e146105ad578063e30443bc146105c8578063f2fde38b146105e857600080fd5b8063a8b9d240146104ea578063a9059cbb14610238578063aafd847a1461050a578063c49af5f01461054057600080fd5b806395d89b41116100d157806395d89b41146104695780639d76ea581461047e5780639e1e06611461049e578063a680e0bc146104b457600080fd5b806385a6b3ae146104015780638da5cb5b146104175780638e1269441461044957600080fd5b80633009a6091161016f57806370a082311161013e57806370a0823114610344578063715018a61461037a5780637b510fe81461038f578063807ab4f7146103e157600080fd5b80633009a609146102c2578063313ce567146102d85780634e7b827f146102f45780636de1a5a91461032457600080fd5b8063095ea7b3116101ab578063095ea7b31461023857806318160ddd1461026857806323b872dd1461028757806327ce0147146102a257600080fd5b806303c83302146101e55780630483f7a0146101ed57806306fdde031461020d57600080fd5b366101e0576101de610608565b005b600080fd5b6101de610608565b3480156101f957600080fd5b506101de6102083660046116a8565b610697565b34801561021957600080fd5b5061022261089c565b60405161022f91906116e6565b60405180910390f35b34801561024457600080fd5b50610258610253366004611734565b61092e565b604051901515815260200161022f565b34801561027457600080fd5b506005545b60405190815260200161022f565b34801561029357600080fd5b50610258610253366004611760565b3480156102ae57600080fd5b506102796102bd3660046117a1565b610992565b3480156102ce57600080fd5b5061027960045481565b3480156102e457600080fd5b506040516012815260200161022f565b34801561030057600080fd5b5061025861030f3660046117a1565b600b6020526000908152604090205460ff1681565b34801561033057600080fd5b5061025861033f3660046117a1565b6109f6565b34801561035057600080fd5b5061027961035f3660046117a1565b6001600160a01b031660009081526006602052604090205490565b34801561038657600080fd5b506101de610aa1565b34801561039b57600080fd5b506103af6103aa3660046117a1565b610ad5565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a00161022f565b3480156103ed57600080fd5b506102586103fc3660046117a1565b610b7d565b34801561040d57600080fd5b5061027960085481565b34801561042357600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161022f565b34801561045557600080fd5b506101de6104643660046117c5565b610c22565b34801561047557600080fd5b50610222610c95565b34801561048a57600080fd5b50600a54610431906001600160a01b031681565b3480156104aa57600080fd5b5061027960095481565b3480156104c057600080fd5b506102796104cf3660046117a1565b6001600160a01b03166000908152600e602052604090205490565b3480156104f657600080fd5b506102796105053660046117a1565b610ca4565b34801561051657600080fd5b506102796105253660046117a1565b6001600160a01b03166000908152600d602052604090205490565b34801561054c57600080fd5b506102797f000000000000000000000000000000000000000000000000000000000000000081565b34801561058057600080fd5b5061025861058f3660046117a1565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156105b957600080fd5b506102796102533660046117ea565b3480156105d457600080fd5b506101de6105e3366004611734565b610cd6565b3480156105f457600080fd5b506101de6106033660046117a1565b610d60565b60006005541161061757600080fd5b34156106955760055461062e600160801b3461182e565b6106389190611845565b6007546106459190611867565b60075560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2346008600082825461068f9190611867565b90915550505b565b6000546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c19061187a565b60405180910390fd5b6001600160a01b0382166000908152600b602052604090205481151560ff909116151503610762576040805162461bcd60e51b81526020600482015260248101919091527f53545241574841545f4469766964656e64547261636b65723a206163636f756e60448201527f7420616c72656164792073657420746f2072657175657374656420737461746560648201526084016106c1565b6001600160a01b0382166000908152600b60205260409020805460ff1916821580159190911790915561079f5761079a826000610dfb565b610853565b600a546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa1580156107ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080e91906118af565b90507f00000000000000000000000000000000000000000000000000000000000000008110610846576108418382610dfb565b610851565b610851836000610dfb565b505b816001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610890911515815260200190565b60405180910390a25050565b6060600280546108ab906118c8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d7906118c8565b80156109245780601f106108f957610100808354040283529160200191610924565b820191906000526020600020905b81548152906001019060200180831161090757829003601f168201915b5050505050905090565b60405162461bcd60e51b815260206004820152603060248201527f53545241574841545f4469766964656e64547261636b65723a206d6574686f6460448201526f081b9bdd081a5b5c1b195b595b9d195960821b60648201526000906084016106c1565b6001600160a01b03811660009081526006602052604081205460075482916109b99161182e565b6001600160a01b0384166000908152600c6020526040902054909150600160801b6109e48284611902565b6109ee9190611845565b949350505050565b600080546001600160a01b03163314610a215760405162461bcd60e51b81526004016106c19061187a565b600080610a2d84610e59565b90925090508115610a97576001600160a01b0384166000818152600e602090815260409182902042905581518581529081018490527f0e311a2c6dbfb0153ec3a8a5bdca09070b3e5f60768fdc10a20453f38d186873910160405180910390a25060019392505050565b5060009392505050565b6000546001600160a01b03163314610acb5760405162461bcd60e51b81526004016106c19061187a565b61069560006111e3565b6000806000806000610b11604051806080016040528060006001600160a01b031681526020016000815260200160008152602001600081525090565b6001600160a01b0387168152610b2687610ca4565b6020820152610b3487610992565b60408281019182526001600160a01b03989098166000908152600e6020908152989020546060830181905282519890920151905160095498999198909750919550909350915050565b600080546001600160a01b03163314610ba85760405162461bcd60e51b81526004016106c19061187a565b6000610bb383611233565b90508015610c19576001600160a01b0383166000818152600e602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610c089084815260200190565b60405180910390a250600192915050565b50600092915050565b6000546001600160a01b03163314610c4c5760405162461bcd60e51b81526004016106c19061187a565b476001600160a01b0382166108fc84610c655782610c67565b845b6040518115909202916000818181858888f19350505050158015610c8f573d6000803e3d6000fd5b50505050565b6060600380546108ab906118c8565b6001600160a01b0381166000908152600d6020526040812054610cc683610992565b610cd0919061192a565b92915050565b6000546001600160a01b03163314610d005760405162461bcd60e51b81526004016106c19061187a565b6001600160a01b0382166000908152600b602052604090205460ff16610d51577f00000000000000000000000000000000000000000000000000000000000000008110610d5557610d518282610dfb565b5050565b610d51826000610dfb565b6000546001600160a01b03163314610d8a5760405162461bcd60e51b81526004016106c19061187a565b6001600160a01b038116610def5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610df8816111e3565b50565b6001600160a01b03821660009081526006602052604090205480821115610e34576000610e28828461192a565b9050610c8f8482611382565b80821015610e54576000610e48838361192a565b9050610c8f84826114c9565b505050565b6000806000610e6784610ca4565b905080156111d7576001600160a01b0384166000908152600d602052604081208054839290610e97908490611867565b925050819055508060096000828254610eb09190611867565b90915550506040518181526001600160a01b038516907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a26001546040805160028082526060820183526001600160a01b0390931692600092602083019080368337019050509050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f85919061193d565b81600081518110610f9857610f9861195a565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110610fc957610fc961195a565b6001600160a01b039283166020918202929092010152600a546040516370a0823160e01b81528883166004820152600092839283929116906370a0823190602401602060405180830381865afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b91906118af565b9050846001600160a01b031663b6f9de95876000878d426040518663ffffffff1660e01b81526004016110819493929190611970565b6000604051808303818588803b15801561109a57600080fd5b505af1935050505080156110ac575060015b6110ed576110b86119da565b806308c379a0036110e157506110cc611a31565b806110d757506110e3565b600093505061116c565b505b3d6000803e3d6000fd5b600a546040516370a0823160e01b81526001600160a01b038b8116600483015260019550839216906370a0823190602401602060405180830381865afa15801561113b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115f91906118af565b611169919061192a565b91505b826111c8576001600160a01b0389166000908152600d60205260408120805488929061119990849061192a565b9250508190555085600960008282546111b2919061192a565b9091555060009a8b9a5098505050505050505050565b50939793965092945050505050565b50600093849350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061123f83610ca4565b90508015610c19576001600160a01b0383166000908152600d60205260408120805483929061126f908490611867565b9250508190555080600960008282546112889190611867565b90915550506040518181526001600160a01b038416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d806000811461131d576040519150601f19603f3d011682016040523d82523d6000602084013e611322565b606091505b505090508061137b576001600160a01b0384166000908152600d60205260408120805484929061135390849061192a565b92505081905550816009600082825461136c919061192a565b90915550600095945050505050565b5092915050565b6001600160a01b0382166113f35760405162461bcd60e51b815260206004820152603260248201527f53545241574841545f4469766964656e64547261636b65723a206d696e7420746044820152716f20746865207a65726f206164647265737360701b60648201526084016106c1565b80600560008282546114059190611867565b90915550506001600160a01b03821660009081526006602052604081208054839290611432908490611867565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380600754611486919061182e565b6001600160a01b0383166000908152600c60205260409020546114a99190611abb565b6001600160a01b039092166000908152600c602052604090209190915550565b6001600160a01b03821661153c5760405162461bcd60e51b815260206004820152603460248201527f53545241574841545f4469766964656e64547261636b65723a206275726e2066604482015273726f6d20746865207a65726f206164647265737360601b60648201526084016106c1565b6001600160a01b038216600090815260066020526040902054818110156115c35760405162461bcd60e51b815260206004820152603560248201527f53545241574841545f4469766964656e64547261636b65723a206275726e20616044820152746d6f756e7420657863656564732062616c616e636560581b60648201526084016106c1565b6115cd828261192a565b6001600160a01b038416600090815260066020526040812091909155600580548492906115fb90849061192a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38160075461164f919061182e565b6001600160a01b0384166000908152600c60205260409020546116729190611902565b6001600160a01b039093166000908152600c60205260409020929092555050565b6001600160a01b0381168114610df857600080fd5b600080604083850312156116bb57600080fd5b82356116c681611693565b9150602083013580151581146116db57600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611713578581018301518582016040015282016116f7565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561174757600080fd5b823561175281611693565b946020939093013593505050565b60008060006060848603121561177557600080fd5b833561178081611693565b9250602084013561179081611693565b929592945050506040919091013590565b6000602082840312156117b357600080fd5b81356117be81611693565b9392505050565b600080604083850312156117d857600080fd5b8235915060208301356116db81611693565b600080604083850312156117fd57600080fd5b823561180881611693565b915060208301356116db81611693565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610cd057610cd0611818565b60008261186257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610cd057610cd0611818565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156118c157600080fd5b5051919050565b600181811c908216806118dc57607f821691505b6020821081036118fc57634e487b7160e01b600052602260045260246000fd5b50919050565b808201828112600083128015821682158216171561192257611922611818565b505092915050565b81810381811115610cd057610cd0611818565b60006020828403121561194f57600080fd5b81516117be81611693565b634e487b7160e01b600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156119ba5784516001600160a01b031683529383019391830191600101611995565b50506001600160a01b039690961660408501525050506060015292915050565b600060033d11156119f35760046000803e5060005160e01c5b90565b601f8201601f1916810167ffffffffffffffff81118282101715611a2a57634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d1015611a3f5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611a6f57505050505090565b8285019150815181811115611a875750505050505090565b843d8701016020828501011115611aa15750505050505090565b611ab0602082860101876119f6565b509095945050505050565b818103600083128015838313168383128216171561137b5761137b61181856fea26469706673582212209216be9b6f4b8e4a38ecb49d717c880a90cd1a1bcc588403df35ce149874729e64736f6c63430008110033000000000000000000000000dacae21c76330d56170b8eb9d3a6b302d74013ea0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106101d15760003560e01c806385a6b3ae116100f7578063a8b9d24011610095578063c705c56911610064578063c705c56914610574578063dd62ed3e146105ad578063e30443bc146105c8578063f2fde38b146105e857600080fd5b8063a8b9d240146104ea578063a9059cbb14610238578063aafd847a1461050a578063c49af5f01461054057600080fd5b806395d89b41116100d157806395d89b41146104695780639d76ea581461047e5780639e1e06611461049e578063a680e0bc146104b457600080fd5b806385a6b3ae146104015780638da5cb5b146104175780638e1269441461044957600080fd5b80633009a6091161016f57806370a082311161013e57806370a0823114610344578063715018a61461037a5780637b510fe81461038f578063807ab4f7146103e157600080fd5b80633009a609146102c2578063313ce567146102d85780634e7b827f146102f45780636de1a5a91461032457600080fd5b8063095ea7b3116101ab578063095ea7b31461023857806318160ddd1461026857806323b872dd1461028757806327ce0147146102a257600080fd5b806303c83302146101e55780630483f7a0146101ed57806306fdde031461020d57600080fd5b366101e0576101de610608565b005b600080fd5b6101de610608565b3480156101f957600080fd5b506101de6102083660046116a8565b610697565b34801561021957600080fd5b5061022261089c565b60405161022f91906116e6565b60405180910390f35b34801561024457600080fd5b50610258610253366004611734565b61092e565b604051901515815260200161022f565b34801561027457600080fd5b506005545b60405190815260200161022f565b34801561029357600080fd5b50610258610253366004611760565b3480156102ae57600080fd5b506102796102bd3660046117a1565b610992565b3480156102ce57600080fd5b5061027960045481565b3480156102e457600080fd5b506040516012815260200161022f565b34801561030057600080fd5b5061025861030f3660046117a1565b600b6020526000908152604090205460ff1681565b34801561033057600080fd5b5061025861033f3660046117a1565b6109f6565b34801561035057600080fd5b5061027961035f3660046117a1565b6001600160a01b031660009081526006602052604090205490565b34801561038657600080fd5b506101de610aa1565b34801561039b57600080fd5b506103af6103aa3660046117a1565b610ad5565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a00161022f565b3480156103ed57600080fd5b506102586103fc3660046117a1565b610b7d565b34801561040d57600080fd5b5061027960085481565b34801561042357600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161022f565b34801561045557600080fd5b506101de6104643660046117c5565b610c22565b34801561047557600080fd5b50610222610c95565b34801561048a57600080fd5b50600a54610431906001600160a01b031681565b3480156104aa57600080fd5b5061027960095481565b3480156104c057600080fd5b506102796104cf3660046117a1565b6001600160a01b03166000908152600e602052604090205490565b3480156104f657600080fd5b506102796105053660046117a1565b610ca4565b34801561051657600080fd5b506102796105253660046117a1565b6001600160a01b03166000908152600d602052604090205490565b34801561054c57600080fd5b506102797f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b34801561058057600080fd5b5061025861058f3660046117a1565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156105b957600080fd5b506102796102533660046117ea565b3480156105d457600080fd5b506101de6105e3366004611734565b610cd6565b3480156105f457600080fd5b506101de6106033660046117a1565b610d60565b60006005541161061757600080fd5b34156106955760055461062e600160801b3461182e565b6106389190611845565b6007546106459190611867565b60075560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2346008600082825461068f9190611867565b90915550505b565b6000546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c19061187a565b60405180910390fd5b6001600160a01b0382166000908152600b602052604090205481151560ff909116151503610762576040805162461bcd60e51b81526020600482015260248101919091527f53545241574841545f4469766964656e64547261636b65723a206163636f756e60448201527f7420616c72656164792073657420746f2072657175657374656420737461746560648201526084016106c1565b6001600160a01b0382166000908152600b60205260409020805460ff1916821580159190911790915561079f5761079a826000610dfb565b610853565b600a546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa1580156107ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080e91906118af565b90507f00000000000000000000000000000000000000000000021e19e0c9bab24000008110610846576108418382610dfb565b610851565b610851836000610dfb565b505b816001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be82604051610890911515815260200190565b60405180910390a25050565b6060600280546108ab906118c8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d7906118c8565b80156109245780601f106108f957610100808354040283529160200191610924565b820191906000526020600020905b81548152906001019060200180831161090757829003601f168201915b5050505050905090565b60405162461bcd60e51b815260206004820152603060248201527f53545241574841545f4469766964656e64547261636b65723a206d6574686f6460448201526f081b9bdd081a5b5c1b195b595b9d195960821b60648201526000906084016106c1565b6001600160a01b03811660009081526006602052604081205460075482916109b99161182e565b6001600160a01b0384166000908152600c6020526040902054909150600160801b6109e48284611902565b6109ee9190611845565b949350505050565b600080546001600160a01b03163314610a215760405162461bcd60e51b81526004016106c19061187a565b600080610a2d84610e59565b90925090508115610a97576001600160a01b0384166000818152600e602090815260409182902042905581518581529081018490527f0e311a2c6dbfb0153ec3a8a5bdca09070b3e5f60768fdc10a20453f38d186873910160405180910390a25060019392505050565b5060009392505050565b6000546001600160a01b03163314610acb5760405162461bcd60e51b81526004016106c19061187a565b61069560006111e3565b6000806000806000610b11604051806080016040528060006001600160a01b031681526020016000815260200160008152602001600081525090565b6001600160a01b0387168152610b2687610ca4565b6020820152610b3487610992565b60408281019182526001600160a01b03989098166000908152600e6020908152989020546060830181905282519890920151905160095498999198909750919550909350915050565b600080546001600160a01b03163314610ba85760405162461bcd60e51b81526004016106c19061187a565b6000610bb383611233565b90508015610c19576001600160a01b0383166000818152600e602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610c089084815260200190565b60405180910390a250600192915050565b50600092915050565b6000546001600160a01b03163314610c4c5760405162461bcd60e51b81526004016106c19061187a565b476001600160a01b0382166108fc84610c655782610c67565b845b6040518115909202916000818181858888f19350505050158015610c8f573d6000803e3d6000fd5b50505050565b6060600380546108ab906118c8565b6001600160a01b0381166000908152600d6020526040812054610cc683610992565b610cd0919061192a565b92915050565b6000546001600160a01b03163314610d005760405162461bcd60e51b81526004016106c19061187a565b6001600160a01b0382166000908152600b602052604090205460ff16610d51577f00000000000000000000000000000000000000000000021e19e0c9bab24000008110610d5557610d518282610dfb565b5050565b610d51826000610dfb565b6000546001600160a01b03163314610d8a5760405162461bcd60e51b81526004016106c19061187a565b6001600160a01b038116610def5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610df8816111e3565b50565b6001600160a01b03821660009081526006602052604090205480821115610e34576000610e28828461192a565b9050610c8f8482611382565b80821015610e54576000610e48838361192a565b9050610c8f84826114c9565b505050565b6000806000610e6784610ca4565b905080156111d7576001600160a01b0384166000908152600d602052604081208054839290610e97908490611867565b925050819055508060096000828254610eb09190611867565b90915550506040518181526001600160a01b038516907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a26001546040805160028082526060820183526001600160a01b0390931692600092602083019080368337019050509050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f85919061193d565b81600081518110610f9857610f9861195a565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110610fc957610fc961195a565b6001600160a01b039283166020918202929092010152600a546040516370a0823160e01b81528883166004820152600092839283929116906370a0823190602401602060405180830381865afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b91906118af565b9050846001600160a01b031663b6f9de95876000878d426040518663ffffffff1660e01b81526004016110819493929190611970565b6000604051808303818588803b15801561109a57600080fd5b505af1935050505080156110ac575060015b6110ed576110b86119da565b806308c379a0036110e157506110cc611a31565b806110d757506110e3565b600093505061116c565b505b3d6000803e3d6000fd5b600a546040516370a0823160e01b81526001600160a01b038b8116600483015260019550839216906370a0823190602401602060405180830381865afa15801561113b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115f91906118af565b611169919061192a565b91505b826111c8576001600160a01b0389166000908152600d60205260408120805488929061119990849061192a565b9250508190555085600960008282546111b2919061192a565b9091555060009a8b9a5098505050505050505050565b50939793965092945050505050565b50600093849350915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061123f83610ca4565b90508015610c19576001600160a01b0383166000908152600d60205260408120805483929061126f908490611867565b9250508190555080600960008282546112889190611867565b90915550506040518181526001600160a01b038416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d806000811461131d576040519150601f19603f3d011682016040523d82523d6000602084013e611322565b606091505b505090508061137b576001600160a01b0384166000908152600d60205260408120805484929061135390849061192a565b92505081905550816009600082825461136c919061192a565b90915550600095945050505050565b5092915050565b6001600160a01b0382166113f35760405162461bcd60e51b815260206004820152603260248201527f53545241574841545f4469766964656e64547261636b65723a206d696e7420746044820152716f20746865207a65726f206164647265737360701b60648201526084016106c1565b80600560008282546114059190611867565b90915550506001600160a01b03821660009081526006602052604081208054839290611432908490611867565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380600754611486919061182e565b6001600160a01b0383166000908152600c60205260409020546114a99190611abb565b6001600160a01b039092166000908152600c602052604090209190915550565b6001600160a01b03821661153c5760405162461bcd60e51b815260206004820152603460248201527f53545241574841545f4469766964656e64547261636b65723a206275726e2066604482015273726f6d20746865207a65726f206164647265737360601b60648201526084016106c1565b6001600160a01b038216600090815260066020526040902054818110156115c35760405162461bcd60e51b815260206004820152603560248201527f53545241574841545f4469766964656e64547261636b65723a206275726e20616044820152746d6f756e7420657863656564732062616c616e636560581b60648201526084016106c1565b6115cd828261192a565b6001600160a01b038416600090815260066020526040812091909155600580548492906115fb90849061192a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a38160075461164f919061182e565b6001600160a01b0384166000908152600c60205260409020546116729190611902565b6001600160a01b039093166000908152600c60205260409020929092555050565b6001600160a01b0381168114610df857600080fd5b600080604083850312156116bb57600080fd5b82356116c681611693565b9150602083013580151581146116db57600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611713578581018301518582016040015282016116f7565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561174757600080fd5b823561175281611693565b946020939093013593505050565b60008060006060848603121561177557600080fd5b833561178081611693565b9250602084013561179081611693565b929592945050506040919091013590565b6000602082840312156117b357600080fd5b81356117be81611693565b9392505050565b600080604083850312156117d857600080fd5b8235915060208301356116db81611693565b600080604083850312156117fd57600080fd5b823561180881611693565b915060208301356116db81611693565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610cd057610cd0611818565b60008261186257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610cd057610cd0611818565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156118c157600080fd5b5051919050565b600181811c908216806118dc57607f821691505b6020821081036118fc57634e487b7160e01b600052602260045260246000fd5b50919050565b808201828112600083128015821682158216171561192257611922611818565b505092915050565b81810381811115610cd057610cd0611818565b60006020828403121561194f57600080fd5b81516117be81611693565b634e487b7160e01b600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156119ba5784516001600160a01b031683529383019391830191600101611995565b50506001600160a01b039690961660408501525050506060015292915050565b600060033d11156119f35760046000803e5060005160e01c5b90565b601f8201601f1916810167ffffffffffffffff81118282101715611a2a57634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d1015611a3f5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611a6f57505050505090565b8285019150815181811115611a875750505050505090565b843d8701016020828501011115611aa15750505050505090565b611ab0602082860101876119f6565b509095945050505050565b818103600083128015838313168383128216171561137b5761137b61181856fea26469706673582212209216be9b6f4b8e4a38ecb49d717c880a90cd1a1bcc588403df35ce149874729e64736f6c63430008110033

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

000000000000000000000000dacae21c76330d56170b8eb9d3a6b302d74013ea0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0xDACAe21c76330D56170B8EB9D3a6b302D74013EA
Arg [1] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000dacae21c76330d56170b8eb9d3a6b302d74013ea
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

62719:11318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64355:21;:19;:21::i;:::-;62719:11318;;;;;64392:392;;;:::i;65166:745::-;;;;;;;;;;-1:-1:-1;65166:745:0;;;;;:::i;:::-;;:::i;72818:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73682:148;;;;;;;;;;-1:-1:-1;73682:148:0;;;;;:::i;:::-;;:::i;:::-;;;1609:14:1;;1602:22;1584:41;;1572:2;1557:18;73682:148:0;1444:187:1;73088:100:0;;;;;;;;;;-1:-1:-1;73168:12:0;;73088:100;;;1782:25:1;;;1770:2;1755:18;73088:100:0;1636:177:1;73838:196:0;;;;;;;;;;-1:-1:-1;73838:196:0;;;;;:::i;71653:337::-;;;;;;;;;;-1:-1:-1;71653:337:0;;;;;:::i;:::-;;:::i;62916:33::-;;;;;;;;;;;;;;;;73004:76;;;;;;;;;;-1:-1:-1;73004:76:0;;73070:2;2673:36:1;;2661:2;2646:18;73004:76:0;2531:184:1;63334:53:0;;;;;;;;;;-1:-1:-1;63334:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;69215:396;;;;;;;;;;-1:-1:-1;69215:396:0;;;;;:::i;:::-;;:::i;73196:119::-;;;;;;;;;;-1:-1:-1;73196:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;73289:18:0;73262:7;73289:18;;;:9;:18;;;;;;;73196:119;3036:103;;;;;;;;;;;;;:::i;71998:682::-;;;;;;;;;;-1:-1:-1;71998:682:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3257:32:1;;;3239:51;;3321:2;3306:18;;3299:34;;;;3349:18;;;3342:34;;;;3407:2;3392:18;;3385:34;3450:3;3435:19;;3428:35;3226:3;3211:19;71998:682:0;2980:489:1;67981:366:0;;;;;;;;;;-1:-1:-1;67981:366:0;;;;;:::i;:::-;;:::i;63204:40::-;;;;;;;;;;;;;;;;2385:87;;;;;;;;;;-1:-1:-1;2431:7:0;2458:6;-1:-1:-1;;;;;2458:6:0;2385:87;;;-1:-1:-1;;;;;3638:32:1;;;3620:51;;3608:2;3593:18;2385:87:0;3474:203:1;66092:248:0;;;;;;;;;;-1:-1:-1;66092:248:0;;;;;:::i;:::-;;:::i;72909:87::-;;;;;;;;;;;;;:::i;63298:27::-;;;;;;;;;;-1:-1:-1;63298:27:0;;;;-1:-1:-1;;;;;63298:27:0;;;63251:38;;;;;;;;;;;;;;;;72688:122;;;;;;;;;;-1:-1:-1;72688:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;72779:23:0;72752:7;72779:23;;;:14;:23;;;;;;;72688:122;71278:198;;;;;;;;;;-1:-1:-1;71278:198:0;;;;;:::i;:::-;;:::i;71484:161::-;;;;;;;;;;-1:-1:-1;71484:161:0;;;;;:::i;:::-;-1:-1:-1;;;;;71610:27:0;71578:7;71610:27;;;:18;:27;;;;;;;71484:161;63097:52;;;;;;;;;;;;;;;65919:165;;;;;;;;;;-1:-1:-1;65919:165:0;;;;;:::i;:::-;-1:-1:-1;;;;;66046:30:0;66017:4;66046:30;;;:21;:30;;;;;;;;;65919:165;73480:194;;;;;;;;;;-1:-1:-1;73480:194:0;;;;;:::i;64792:366::-;;;;;;;;;;-1:-1:-1;64792:366:0;;;;;:::i;:::-;;:::i;3294:201::-;;;;;;;;;;-1:-1:-1;3294:201:0;;;;;:::i;:::-;;:::i;64392:392::-;64472:1;64457:12;;:16;64449:25;;;;;;64489:9;:13;64485:292;;64636:12;;64611:21;-1:-1:-1;;;64611:9:0;:21;:::i;:::-;64610:38;;;;:::i;:::-;64564:25;;:85;;;;:::i;:::-;64519:25;:130;64669:43;;64702:9;1782:25:1;;64690:10:0;;64669:43;;1770:2:1;1755:18;64669:43:0;;;;;;;64756:9;64727:25;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;;64485:292:0;64392:392::o;65166:745::-;2431:7;2458:6;-1:-1:-1;;;;;2458:6:0;1138:10;2605:23;2597:68;;;;-1:-1:-1;;;2597:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;65303:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;:42;::::1;;:30;::::0;;::::1;:42;;::::0;65281:156:::1;;;::::0;;-1:-1:-1;;;65281:156:0;;5943:2:1;65281:156:0::1;::::0;::::1;5925:21:1::0;5962:18;;;5955:30;;;;6021:34;6001:18;;;5994:62;6092:34;6072:18;;;6065:62;6144:19;;65281:156:0::1;5741:428:1::0;65281:156:0::1;-1:-1:-1::0;;;;;65448:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;:41;;-1:-1:-1;;65448:41:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;65500:349:::1;;65529:23;65541:7;65550:1;65529:11;:23::i;:::-;65500:349;;;65613:12;::::0;65606:39:::1;::::0;-1:-1:-1;;;65606:39:0;;-1:-1:-1;;;;;3638:32:1;;;65606:39:0::1;::::0;::::1;3620:51:1::0;65585:18:0::1;::::0;65613:12:::1;::::0;65606:30:::1;::::0;3593:18:1;;65606:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65585:60;;65678:27;65664:10;:41;65660:178;;65726:32;65738:7;65747:10;65726:11;:32::i;:::-;65660:178;;;65799:23;65811:7;65820:1;65799:11;:23::i;:::-;65570:279;65500:349;65885:7;-1:-1:-1::0;;;;;65864:39:0::1;;65894:8;65864:39;;;;1609:14:1::0;1602:22;1584:41;;1572:2;1557:18;;1444:187;65864:39:0::1;;;;;;;;65166:745:::0;;:::o;72818:83::-;72855:13;72888:5;72881:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72818:83;:::o;73682:148::-;73764:58;;-1:-1:-1;;;73764:58:0;;6950:2:1;73764:58:0;;;6932:21:1;6989:2;6969:18;;;6962:30;7028:34;7008:18;;;7001:62;-1:-1:-1;;;7079:18:1;;;7072:46;73747:4:0;;7135:19:1;;73764:58:0;6748:412:1;71653:337:0;-1:-1:-1;;;;;73289:18:0;;71750:7;73289:18;;;:9;:18;;;;;;71793:25;;71750:7;;71793:46;;;:::i;:::-;-1:-1:-1;;;;;71862:37:0;;71851:8;71862:37;;;:28;:37;;;;;;71775:65;;-1:-1:-1;;;;71964:5:0;71862:37;71775:65;71964:5;:::i;:::-;71956:26;;;;:::i;:::-;71949:33;71653:337;-1:-1:-1;;;;71653:337:0:o;69215:396::-;69318:4;2458:6;;-1:-1:-1;;;;;2458:6:0;1138:10;2605:23;2597:68;;;;-1:-1:-1;;;2597:68:0;;;;;;;:::i;:::-;69341:14:::1;69357::::0;69375:32:::1;69399:7;69375:23;:32::i;:::-;69340:67:::0;;-1:-1:-1;69340:67:0;-1:-1:-1;69422:10:0;;69418:163:::1;;-1:-1:-1::0;;;;;69449:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;69475:15:::1;69449:41:::0;;69510:33;;7560:25:1;;;7601:18;;;7594:34;;;69510:33:0::1;::::0;7533:18:1;69510:33:0::1;;;;;;;-1:-1:-1::0;69565:4:0::1;::::0;69215:396;-1:-1:-1;;;69215:396:0:o;69418:163::-:1;-1:-1:-1::0;69598:5:0::1;::::0;69215:396;-1:-1:-1;;;69215:396:0:o;3036:103::-;2431:7;2458:6;-1:-1:-1;;;;;2458:6:0;1138:10;2605:23;2597:68;;;;-1:-1:-1;;;2597:68:0;;;;;;;:::i;:::-;3101:30:::1;3128:1;3101:18;:30::i;71998:682::-:0;72101:7;72123;72145;72167;72189;72224:23;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72224:23:0;-1:-1:-1;;;;;72258:22:0;;;;72320:31;72273:7;72320:22;:31::i;:::-;72291:26;;;:60;72384:31;72407:7;72384:22;:31::i;:::-;72362:19;;;;:53;;;-1:-1:-1;;;;;72447:23:0;;;;;;;;:14;:23;;;;;;;;72426:18;;;:44;;;72503:12;;72530:26;;;;;72571:19;;72638:23;;72503:12;;72530:26;;72571:19;;-1:-1:-1;72447:23:0;;-1:-1:-1;72638:23:0;;-1:-1:-1;71998:682:0;-1:-1:-1;;71998:682:0:o;67981:366::-;68083:4;2458:6;;-1:-1:-1;;;;;2458:6:0;1138:10;2605:23;2597:68;;;;-1:-1:-1;;;2597:68:0;;;;;;;:::i;:::-;68105:14:::1;68122:32;68146:7;68122:23;:32::i;:::-;68105:49:::0;-1:-1:-1;68169:10:0;;68165:152:::1;;-1:-1:-1::0;;;;;68196:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;68222:15:::1;68196:41:::0;;68257:22;::::1;::::0;::::1;::::0;68272:6;1782:25:1;;1770:2;1755:18;;1636:177;68257:22:0::1;;;;;;;;-1:-1:-1::0;68301:4:0::1;::::0;69215:396;-1:-1:-1;;69215:396:0:o;68165:152::-:1;-1:-1:-1::0;68334:5:0::1;::::0;67981:366;-1:-1:-1;;67981:366:0:o;66092:248::-;2431:7;2458:6;-1:-1:-1;;;;;2458:6:0;1138:10;2605:23;2597:68;;;;-1:-1:-1;;;2597:68:0;;;;;;;:::i;:::-;66234:21:::1;-1:-1:-1::0;;;;;66266:24:0;::::1;:66;66291:10:::0;:40:::1;;66313:18;66291:40;;;66304:6;66291:40;66266:66;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;66194:146;66092:248:::0;;:::o;72909:87::-;72948:13;72981:7;72974:14;;;;;:::i;71278:198::-;-1:-1:-1;;;;;71441:27:0;;71375:7;71441:27;;;:18;:27;;;;;;71407:31;71460:7;71407:22;:31::i;:::-;:61;;;;:::i;:::-;71400:68;71278:198;-1:-1:-1;;71278:198:0:o;64792:366::-;2431:7;2458:6;-1:-1:-1;;;;;2458:6:0;1138:10;2605:23;2597:68;;;;-1:-1:-1;;;2597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64914:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;64961:7;64910:69;65007:27;64993:10;:41;64989:162;;65051:32;65063:7;65072:10;65051:11;:32::i;:::-;64792:366:::0;;:::o;64989:162::-:1;65116:23;65128:7;65137:1;65116:11;:23::i;3294:201::-:0;2431:7;2458:6;-1:-1:-1;;;;;2458:6:0;1138:10;2605:23;2597:68;;;;-1:-1:-1;;;2597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3383:22:0;::::1;3375:73;;;::::0;-1:-1:-1;;;3375:73:0;;7974:2:1;3375:73:0::1;::::0;::::1;7956:21:1::0;8013:2;7993:18;;;7986:30;8052:34;8032:18;;;8025:62;-1:-1:-1;;;8103:18:1;;;8096:36;8149:19;;3375:73:0::1;7772:402:1::0;3375:73:0::1;3459:28;3478:8;3459:18;:28::i;:::-;3294:201:::0;:::o;66348:439::-;-1:-1:-1;;;;;66451:18:0;;66426:22;66451:18;;;:9;:18;;;;;;66484:27;;;66480:300;;;66528:17;66548:27;66561:14;66548:10;:27;:::i;:::-;66528:47;;66590:25;66596:7;66605:9;66590:5;:25::i;66480:300::-;66650:14;66637:10;:27;66633:147;;;66681:17;66701:27;66718:10;66701:14;:27;:::i;:::-;66681:47;;66743:25;66749:7;66758:9;66743:5;:25::i;66633:147::-;66415:372;66348:439;;:::o;69619:1651::-;69712:7;69721;69746:29;69778:31;69801:7;69778:22;:31::i;:::-;69746:63;-1:-1:-1;69824:25:0;;69820:1419;;-1:-1:-1;;;;;69866:27:0;;;;;;:18;:27;;;;;:52;;69897:21;;69866:27;:52;;69897:21;;69866:52;:::i;:::-;;;;;;;;69960:21;69933:23;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;70001:49:0;;1782:25:1;;;-1:-1:-1;;;;;70001:49:0;;;;;1770:2:1;1755:18;70001:49:0;;;;;;;70141:13;;70210:16;;;70224:1;70210:16;;;;;;;;-1:-1:-1;;;;;70141:13:0;;;;70067:34;;70210:16;;;;;;;;;;-1:-1:-1;70210:16:0;70186:40;;70251:15;-1:-1:-1;;;;;70251:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70241:4;70246:1;70241:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;70241:32:0;;;:7;;;;;;;;;:32;70306:12;;70288:7;;70306:12;;;70288:4;;70306:12;;70288:7;;;;;;:::i;:::-;-1:-1:-1;;;;;70288:31:0;;;:7;;;;;;;;;:31;70424:12;;70417:39;;-1:-1:-1;;;70417:39:0;;3638:32:1;;;70417:39:0;;;3620:51:1;70336:12:0;;;;;;70424;;;70417:30;;3593:18:1;;70417:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70394:62;;70492:15;-1:-1:-1;;;;;70492:88:0;;70610:21;70651:1;70654:4;70668:7;70678:15;70492:202;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70471:486;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;70936:5;70926:15;;70840:117;70471:486;;;;;;;;;;;;;70776:12;;70769:39;;-1:-1:-1;;;70769:39:0;;-1:-1:-1;;;;;3638:32:1;;;70769:39:0;;;3620:51:1;70737:4:0;;-1:-1:-1;70811:12:0;;70776;;70769:30;;3593:18:1;;70769:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;;;;:::i;:::-;70760:63;;70471:486;70978:7;70973:200;;-1:-1:-1;;;;;71006:27:0;;;;;;:18;:27;;;;;:52;;71037:21;;71006:27;:52;;71037:21;;71006:52;:::i;:::-;;;;;;;;71104:21;71077:23;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;71152:1:0;;;;-1:-1:-1;69619:1651:0;-1:-1:-1;;;;;;;;;69619:1651:0:o;70973:200::-;-1:-1:-1;71197:21:0;;71220:6;;-1:-1:-1;69619:1651:0;;-1:-1:-1;;;;;69619:1651:0:o;69820:1419::-;-1:-1:-1;71257:1:0;;;;-1:-1:-1;69619:1651:0;-1:-1:-1;;69619:1651:0:o;3655:191::-;3729:16;3748:6;;-1:-1:-1;;;;;3765:17:0;;;-1:-1:-1;;;;;;3765:17:0;;;;;;3798:40;;3748:6;;;;;;;3798:40;;3729:16;3798:40;3718:128;3655:191;:::o;68355:852::-;68448:7;68473:29;68505:31;68528:7;68505:22;:31::i;:::-;68473:63;-1:-1:-1;68551:25:0;;68547:634;;-1:-1:-1;;;;;68593:27:0;;;;;;:18;:27;;;;;:52;;68624:21;;68593:27;:52;;68624:21;;68593:52;:::i;:::-;;;;;;;;68687:21;68660:23;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;68728:49:0;;1782:25:1;;;-1:-1:-1;;;;;68728:49:0;;;;;1770:2:1;1755:18;68728:49:0;;;;;;;68793:12;68811:7;-1:-1:-1;;;;;68811:12:0;68849:21;68894:4;68811:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68792:125;;;68937:7;68932:195;;-1:-1:-1;;;;;68965:27:0;;;;;;:18;:27;;;;;:52;;68996:21;;68965:27;:52;;68996:21;;68965:52;:::i;:::-;;;;;;;;69063:21;69036:23;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;69110:1:0;;68355:852;-1:-1:-1;;;;;68355:852:0:o;68932:195::-;-1:-1:-1;69148:21:0;68355:852;-1:-1:-1;;68355:852:0:o;66795:480::-;-1:-1:-1;;;;;66884:21:0;;66862:121;;;;-1:-1:-1;;;66862:121:0;;11451:2:1;66862:121:0;;;11433:21:1;11490:2;11470:18;;;11463:30;11529:34;11509:18;;;11502:62;-1:-1:-1;;;11580:18:1;;;11573:48;11638:19;;66862:121:0;11249:414:1;66862:121:0;67010:6;66994:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;67027:18:0;;;;;;:9;:18;;;;;:28;;67049:6;;67027:18;:28;;67049:6;;67027:28;:::i;:::-;;;;-1:-1:-1;;67071:37:0;;1782:25:1;;;-1:-1:-1;;;;;67071:37:0;;;67088:1;;67071:37;;1770:2:1;1755:18;67071:37:0;;;;;;;67260:6;67232:25;;:34;;;;:::i;:::-;-1:-1:-1;;;;;67172:37:0;;;;;;:28;:37;;;;;;:95;;;;:::i;:::-;-1:-1:-1;;;;;67119:37:0;;;;;;;:28;:37;;;;;:148;;;;-1:-1:-1;66795:480:0:o;67283:690::-;-1:-1:-1;;;;;67372:21:0;;67350:123;;;;-1:-1:-1;;;67350:123:0;;12075:2:1;67350:123:0;;;12057:21:1;12114:2;12094:18;;;12087:30;12153:34;12133:18;;;12126:62;-1:-1:-1;;;12204:18:1;;;12197:50;12264:19;;67350:123:0;11873:416:1;67350:123:0;-1:-1:-1;;;;;67509:18:0;;67484:22;67509:18;;;:9;:18;;;;;;67560:24;;;;67538:127;;;;-1:-1:-1;;;67538:127:0;;12496:2:1;67538:127:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;-1:-1:-1;;;12625:18:1;;;12618:51;12686:19;;67538:127:0;12294:417:1;67538:127:0;67697:23;67714:6;67697:14;:23;:::i;:::-;-1:-1:-1;;;;;67676:18:0;;;;;;:9;:18;;;;;:44;;;;67731:12;:22;;67747:6;;67676:18;67731:22;;67747:6;;67731:22;:::i;:::-;;;;-1:-1:-1;;67769:37:0;;1782:25:1;;;67795:1:0;;-1:-1:-1;;;;;67769:37:0;;;;;1770:2:1;1755:18;67769:37:0;;;;;;;67958:6;67930:25;;:34;;;;:::i;:::-;-1:-1:-1;;;;;67870:37:0;;;;;;:28;:37;;;;;;:95;;;;:::i;:::-;-1:-1:-1;;;;;67817:37:0;;;;;;;:28;:37;;;;;:148;;;;-1:-1:-1;;67283:690:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:416;215:6;223;276:2;264:9;255:7;251:23;247:32;244:52;;;292:1;289;282:12;244:52;331:9;318:23;350:31;375:5;350:31;:::i;:::-;400:5;-1:-1:-1;457:2:1;442:18;;429:32;499:15;;492:23;480:36;;470:64;;530:1;527;520:12;470:64;553:7;543:17;;;150:416;;;;;:::o;571:548::-;683:4;712:2;741;730:9;723:21;773:6;767:13;816:6;811:2;800:9;796:18;789:34;841:1;851:140;865:6;862:1;859:13;851:140;;;960:14;;;956:23;;950:30;926:17;;;945:2;922:26;915:66;880:10;;851:140;;;855:3;1040:1;1035:2;1026:6;1015:9;1011:22;1007:31;1000:42;1110:2;1103;1099:7;1094:2;1086:6;1082:15;1078:29;1067:9;1063:45;1059:54;1051:62;;;;571:548;;;;:::o;1124:315::-;1192:6;1200;1253:2;1241:9;1232:7;1228:23;1224:32;1221:52;;;1269:1;1266;1259:12;1221:52;1308:9;1295:23;1327:31;1352:5;1327:31;:::i;:::-;1377:5;1429:2;1414:18;;;;1401:32;;-1:-1:-1;;;1124:315:1:o;1818:456::-;1895:6;1903;1911;1964:2;1952:9;1943:7;1939:23;1935:32;1932:52;;;1980:1;1977;1970:12;1932:52;2019:9;2006:23;2038:31;2063:5;2038:31;:::i;:::-;2088:5;-1:-1:-1;2145:2:1;2130:18;;2117:32;2158:33;2117:32;2158:33;:::i;:::-;1818:456;;2210:7;;-1:-1:-1;;;2264:2:1;2249:18;;;;2236:32;;1818:456::o;2279:247::-;2338:6;2391:2;2379:9;2370:7;2366:23;2362:32;2359:52;;;2407:1;2404;2397:12;2359:52;2446:9;2433:23;2465:31;2490:5;2465:31;:::i;:::-;2515:5;2279:247;-1:-1:-1;;;2279:247:1:o;3682:315::-;3750:6;3758;3811:2;3799:9;3790:7;3786:23;3782:32;3779:52;;;3827:1;3824;3817:12;3779:52;3863:9;3850:23;3840:33;;3923:2;3912:9;3908:18;3895:32;3936:31;3961:5;3936:31;:::i;4002:388::-;4070:6;4078;4131:2;4119:9;4110:7;4106:23;4102:32;4099:52;;;4147:1;4144;4137:12;4099:52;4186:9;4173:23;4205:31;4230:5;4205:31;:::i;:::-;4255:5;-1:-1:-1;4312:2:1;4297:18;;4284:32;4325:33;4284:32;4325:33;:::i;4723:127::-;4784:10;4779:3;4775:20;4772:1;4765:31;4815:4;4812:1;4805:15;4839:4;4836:1;4829:15;4855:168;4928:9;;;4959;;4976:15;;;4970:22;;4956:37;4946:71;;4997:18;;:::i;5028:217::-;5068:1;5094;5084:132;;5138:10;5133:3;5129:20;5126:1;5119:31;5173:4;5170:1;5163:15;5201:4;5198:1;5191:15;5084:132;-1:-1:-1;5230:9:1;;5028:217::o;5250:125::-;5315:9;;;5336:10;;;5333:36;;;5349:18;;:::i;5380:356::-;5582:2;5564:21;;;5601:18;;;5594:30;5660:34;5655:2;5640:18;;5633:62;5727:2;5712:18;;5380:356::o;6174:184::-;6244:6;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;-1:-1:-1;6336:16:1;;6174:184;-1:-1:-1;6174:184:1:o;6363:380::-;6442:1;6438:12;;;;6485;;;6506:61;;6560:4;6552:6;6548:17;6538:27;;6506:61;6613:2;6605:6;6602:14;6582:18;6579:38;6576:161;;6659:10;6654:3;6650:20;6647:1;6640:31;6694:4;6691:1;6684:15;6722:4;6719:1;6712:15;6576:161;;6363:380;;;:::o;7165:216::-;7229:9;;;7257:11;;;7204:3;7287:9;;7315:10;;7311:19;;7340:10;;7332:19;;7308:44;7305:70;;;7355:18;;:::i;:::-;7305:70;;7165:216;;;;:::o;7639:128::-;7706:9;;;7727:11;;;7724:37;;;7741:18;;:::i;8311:251::-;8381:6;8434:2;8422:9;8413:7;8409:23;8405:32;8402:52;;;8450:1;8447;8440:12;8402:52;8482:9;8476:16;8501:31;8526:5;8501:31;:::i;8567:127::-;8628:10;8623:3;8619:20;8616:1;8609:31;8659:4;8656:1;8649:15;8683:4;8680:1;8673:15;8915:908;9149:4;9197:3;9186:9;9182:19;9228:6;9217:9;9210:25;9254:2;9292:3;9287:2;9276:9;9272:18;9265:31;9316:6;9351;9345:13;9382:6;9374;9367:22;9420:3;9409:9;9405:19;9398:26;;9459:2;9451:6;9447:15;9433:29;;9480:1;9490:195;9504:6;9501:1;9498:13;9490:195;;;9569:13;;-1:-1:-1;;;;;9565:39:1;9553:52;;9660:15;;;;9625:12;;;;9601:1;9519:9;9490:195;;;-1:-1:-1;;;;;;;9741:32:1;;;;9736:2;9721:18;;9714:60;-1:-1:-1;;;9805:2:1;9790:18;9783:34;9702:3;8915:908;-1:-1:-1;;8915:908:1:o;9828:179::-;9863:3;9905:1;9887:16;9884:23;9881:120;;;9951:1;9948;9945;9930:23;-1:-1:-1;9988:1:1;9982:8;9977:3;9973:18;9881:120;9828:179;:::o;10012:346::-;10122:2;10103:13;;-1:-1:-1;;10099:27:1;10087:40;;10157:18;10142:34;;10178:22;;;10139:62;10136:185;;;10243:10;10238:3;10234:20;10231:1;10224:31;10278:4;10275:1;10268:15;10306:4;10303:1;10296:15;10136:185;10337:2;10330:22;-1:-1:-1;;10012:346:1:o;10363:671::-;10402:3;10444:4;10426:16;10423:26;10420:39;;;10363:671;:::o;10420:39::-;10486:2;10480:9;-1:-1:-1;;10551:16:1;10547:25;;10544:1;10480:9;10523:50;10602:4;10596:11;10626:16;10661:18;10732:2;10725:4;10717:6;10713:17;10710:25;10705:2;10697:6;10694:14;10691:45;10688:58;;;10739:5;;;;;10363:671;:::o;10688:58::-;10776:6;10770:4;10766:17;10755:28;;10812:3;10806:10;10839:2;10831:6;10828:14;10825:27;;;10845:5;;;;;;10363:671;:::o;10825:27::-;10929:2;10910:16;10904:4;10900:27;10896:36;10889:4;10880:6;10875:3;10871:16;10867:27;10864:69;10861:82;;;10936:5;;;;;;10363:671;:::o;10861:82::-;10952:57;11003:4;10994:6;10986;10982:19;10978:30;10972:4;10952:57;:::i;:::-;-1:-1:-1;11025:3:1;;10363:671;-1:-1:-1;;;;;10363:671:1:o;11668:200::-;11734:9;;;11707:4;11762:9;;11790:10;;11802:12;;;11786:29;11825:12;;;11817:21;;11783:56;11780:82;;;11842:18;;:::i

Swarm Source

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