ETH Price: $2,888.99 (-4.66%)
Gas: 1 Gwei

Token

Woke (WOKE)
 

Overview

Max Total Supply

444,444,444,444 WOKE

Holders

413

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
sweepor.eth
Balance
344,306,109.639572883952489166 WOKE

Value
$0.00
0x957291eae3d53b5a7c0a6bf2c0f08de5d87b14f6
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:
Woke

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-25
*/

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

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

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

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

    function WETH() external pure returns (address);

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

contract Woke is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;
    address public marketingWallet;

    uint256 public swapTokensAtAmount;
    bool public tradingActive = false;

    uint256 public marketingFeeSell;

    /******************/

    // exlcude from fees 
    mapping(address => bool) private _isExcludedFromFees;
    


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Woke", "WOKE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Router = _uniswapV2Router;

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

        uint256 totalSupply = 444_444_444_444 * 1e18;

        swapTokensAtAmount = 1000 * 1e18; //swap tax for eth when collected tokens are 1000 or more

        marketingFeeSell = 20;

        marketingWallet = address(0x092094AF22c6Cba8487DE73D987c102E426Cccd9); // marketing wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
    }


    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= 1000 * 1e18,
            "Swap amount cannot be lower than 1000 tokens."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateFees(
        uint256 _marketingFeeSell
    ) external onlyOwner {
        marketingFeeSell = _marketingFeeSell;
        require(marketingFeeSell <= 20, "Sell tax too high");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

            }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && marketingFeeSell > 0) {
                fees = amount.mul(marketingFeeSell).div(100);
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        swapTokensForETH(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526008805460ff191690553480156200001b57600080fd5b5060405180604001604052806004815260200163576f6b6560e01b81525060405180604001604052806004815260200163574f4b4560e01b815250816003908162000067919062000555565b50600462000076828262000555565b505050620000936200008d620002b260201b60201c565b620002b6565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa158015620000ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000110919062000621565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200015e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000184919062000621565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f8919062000621565b6001600160a01b031660a052683635c9adc5dea000006007556014600955600680546001600160a01b03191673092094af22c6cba8487de73d987c102e426cccd91790556c059c13d3eac3d0188a0af0000062000269620002616005546001600160a01b031690565b600162000308565b60065462000282906001600160a01b0316600162000308565b6200028f30600162000308565b6200029e61dead600162000308565b620002aa3382620003c7565b50506200067b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382166000818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200041f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200035f565b806002600082825462000433919062000653565b90915550506001600160a01b038216600090815260208190526040812080548392906200046290849062000653565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004dc57607f821691505b602082108103620004fd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004ac57600081815260208120601f850160051c810160208610156200052c5750805b601f850160051c820191505b818110156200054d5782815560010162000538565b505050505050565b81516001600160401b03811115620005715762000571620004b1565b6200058981620005828454620004c7565b8462000503565b602080601f831160018114620005c15760008415620005a85750858301515b600019600386901b1c1916600185901b1785556200054d565b600085815260208120601f198616915b82811015620005f257888601518255948401946001909101908401620005d1565b5085821015620006115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200063457600080fd5b81516001600160a01b03811681146200064c57600080fd5b9392505050565b808201808211156200067557634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611605620006c4600039600081816102ba01528181610cf40152610e01015260008181610207015281816110dd0152818161119601526111d501526116056000f3fe60806040526004361061016a5760003560e01c806375f0a874116100d1578063aacebbe31161008a578063d257b34f11610064578063d257b34f14610464578063dd62ed3e14610484578063e2f45605146104ca578063f2fde38b146104e057600080fd5b8063aacebbe31461040a578063bbc0c7421461042a578063c02466681461044457600080fd5b806375f0a8741461036257806378dacee1146103825780638a8c523c146103a25780638da5cb5b146103b757806395d89b41146103d5578063a9059cbb146103ea57600080fd5b806327c8f8351161012357806327c8f83514610276578063313ce5671461028c57806349bd5a5e146102a85780634fbee193146102dc57806370a0823114610315578063715018a61461034b57600080fd5b806306fdde0314610176578063095ea7b3146101a157806313374e7a146101d15780631694505e146101f557806318160ddd1461024157806323b872dd1461025657600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b610500565b604051610198919061124d565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc3660046112b0565b610592565b6040519015158152602001610198565b3480156101dd57600080fd5b506101e760095481565b604051908152602001610198565b34801561020157600080fd5b506102297f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610198565b34801561024d57600080fd5b506002546101e7565b34801561026257600080fd5b506101c16102713660046112dc565b6105a9565b34801561028257600080fd5b5061022961dead81565b34801561029857600080fd5b5060405160128152602001610198565b3480156102b457600080fd5b506102297f000000000000000000000000000000000000000000000000000000000000000081565b3480156102e857600080fd5b506101c16102f736600461131d565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561032157600080fd5b506101e761033036600461131d565b6001600160a01b031660009081526020819052604090205490565b34801561035757600080fd5b50610360610658565b005b34801561036e57600080fd5b50600654610229906001600160a01b031681565b34801561038e57600080fd5b5061036061039d36600461133a565b61068e565b3480156103ae57600080fd5b50610360610705565b3480156103c357600080fd5b506005546001600160a01b0316610229565b3480156103e157600080fd5b5061018b61073e565b3480156103f657600080fd5b506101c16104053660046112b0565b61074d565b34801561041657600080fd5b5061036061042536600461131d565b61075a565b34801561043657600080fd5b506008546101c19060ff1681565b34801561045057600080fd5b5061036061045f366004611353565b6107e1565b34801561047057600080fd5b506101c161047f36600461133a565b61086a565b34801561049057600080fd5b506101e761049f366004611391565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104d657600080fd5b506101e760075481565b3480156104ec57600080fd5b506103606104fb36600461131d565b61099c565b60606003805461050f906113bf565b80601f016020809104026020016040519081016040528092919081815260200182805461053b906113bf565b80156105885780601f1061055d57610100808354040283529160200191610588565b820191906000526020600020905b81548152906001019060200180831161056b57829003601f168201915b5050505050905090565b600061059f338484610a34565b5060015b92915050565b60006105b6848484610b58565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106405760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61064d8533858403610a34565b506001949350505050565b6005546001600160a01b031633146106825760405162461bcd60e51b8152600401610637906113f9565b61068c6000610e9c565b565b6005546001600160a01b031633146106b85760405162461bcd60e51b8152600401610637906113f9565b600981905560148111156107025760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610637565b50565b6005546001600160a01b0316331461072f5760405162461bcd60e51b8152600401610637906113f9565b6008805460ff19166001179055565b60606004805461050f906113bf565b600061059f338484610b58565b6005546001600160a01b031633146107845760405162461bcd60e51b8152600401610637906113f9565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461080b5760405162461bcd60e51b8152600401610637906113f9565b6001600160a01b0382166000818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b031633146108975760405162461bcd60e51b8152600401610637906113f9565b683635c9adc5dea000008210156109065760405162461bcd60e51b815260206004820152602d60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201526c1018981818103a37b5b2b7399760991b6064820152608401610637565b6103e861091260025490565b61091d906005611444565b610927919061145b565b8211156109935760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610637565b50600755600190565b6005546001600160a01b031633146109c65760405162461bcd60e51b8152600401610637906113f9565b6001600160a01b038116610a2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610637565b61070281610e9c565b6001600160a01b038316610a965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610637565b6001600160a01b038216610af75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610637565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b7e5760405162461bcd60e51b81526004016106379061147d565b6001600160a01b038216610ba45760405162461bcd60e51b8152600401610637906114c2565b80600003610bbd57610bb883836000610eee565b505050565b6005546001600160a01b03848116911614801590610be957506005546001600160a01b03838116911614155b8015610bfd57506001600160a01b03821615155b8015610c1457506001600160a01b03821661dead14155b8015610c2a5750600554600160a01b900460ff16155b15610cbd5760085460ff16610cbd576001600160a01b0383166000908152600a602052604090205460ff1680610c7857506001600160a01b0382166000908152600a602052604090205460ff165b610cbd5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610637565b3060009081526020819052604090205460075481108015908190610ceb5750600554600160a01b900460ff16155b8015610d2857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b8015610d4d57506001600160a01b0385166000908152600a602052604090205460ff16155b8015610d7257506001600160a01b0384166000908152600a602052604090205460ff16155b15610da0576005805460ff60a01b1916600160a01b179055610d92611043565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600a602052604090205460ff600160a01b909204821615911680610dee57506001600160a01b0385166000908152600a602052604090205460ff165b15610df7575060005b60008115610e88577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316148015610e4257506000600954115b15610e6a57610e676064610e616009548861106790919063ffffffff16565b9061107a565b90505b8015610e7b57610e7b873083610eee565b610e858186611505565b94505b610e93878787610eee565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f145760405162461bcd60e51b81526004016106379061147d565b6001600160a01b038216610f3a5760405162461bcd60e51b8152600401610637906114c2565b6001600160a01b03831660009081526020819052604090205481811015610fb25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610637565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610fe9908490611518565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103591815260200190565b60405180910390a350505050565b306000908152602081905260408120549081900361105e5750565b61070281611086565b60006110738284611444565b9392505050565b6000611073828461145b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110bb576110bb61152b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611139573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115d9190611541565b816001815181106111705761117061152b565b60200260200101906001600160a01b031690816001600160a01b0316815250506111bb307f000000000000000000000000000000000000000000000000000000000000000084610a34565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac9479261121792879260009288929190911690429060040161155e565b600060405180830381600087803b15801561123157600080fd5b505af1158015611245573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561127a5785810183015185820160400152820161125e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461070257600080fd5b600080604083850312156112c357600080fd5b82356112ce8161129b565b946020939093013593505050565b6000806000606084860312156112f157600080fd5b83356112fc8161129b565b9250602084013561130c8161129b565b929592945050506040919091013590565b60006020828403121561132f57600080fd5b81356110738161129b565b60006020828403121561134c57600080fd5b5035919050565b6000806040838503121561136657600080fd5b82356113718161129b565b91506020830135801515811461138657600080fd5b809150509250929050565b600080604083850312156113a457600080fd5b82356113af8161129b565b915060208301356113868161129b565b600181811c908216806113d357607f821691505b6020821081036113f357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105a3576105a361142e565b60008261147857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156105a3576105a361142e565b808201808211156105a3576105a361142e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561155357600080fd5b81516110738161129b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115ae5784516001600160a01b031683529383019391830191600101611589565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209b637fe95ecb32ee12b2add794fe53af4c6147db571e6c435632a001b7964a3e64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806375f0a874116100d1578063aacebbe31161008a578063d257b34f11610064578063d257b34f14610464578063dd62ed3e14610484578063e2f45605146104ca578063f2fde38b146104e057600080fd5b8063aacebbe31461040a578063bbc0c7421461042a578063c02466681461044457600080fd5b806375f0a8741461036257806378dacee1146103825780638a8c523c146103a25780638da5cb5b146103b757806395d89b41146103d5578063a9059cbb146103ea57600080fd5b806327c8f8351161012357806327c8f83514610276578063313ce5671461028c57806349bd5a5e146102a85780634fbee193146102dc57806370a0823114610315578063715018a61461034b57600080fd5b806306fdde0314610176578063095ea7b3146101a157806313374e7a146101d15780631694505e146101f557806318160ddd1461024157806323b872dd1461025657600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b610500565b604051610198919061124d565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc3660046112b0565b610592565b6040519015158152602001610198565b3480156101dd57600080fd5b506101e760095481565b604051908152602001610198565b34801561020157600080fd5b506102297f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610198565b34801561024d57600080fd5b506002546101e7565b34801561026257600080fd5b506101c16102713660046112dc565b6105a9565b34801561028257600080fd5b5061022961dead81565b34801561029857600080fd5b5060405160128152602001610198565b3480156102b457600080fd5b506102297f0000000000000000000000001ceea4cf2896aac4872bee61fda06d831f3519d981565b3480156102e857600080fd5b506101c16102f736600461131d565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561032157600080fd5b506101e761033036600461131d565b6001600160a01b031660009081526020819052604090205490565b34801561035757600080fd5b50610360610658565b005b34801561036e57600080fd5b50600654610229906001600160a01b031681565b34801561038e57600080fd5b5061036061039d36600461133a565b61068e565b3480156103ae57600080fd5b50610360610705565b3480156103c357600080fd5b506005546001600160a01b0316610229565b3480156103e157600080fd5b5061018b61073e565b3480156103f657600080fd5b506101c16104053660046112b0565b61074d565b34801561041657600080fd5b5061036061042536600461131d565b61075a565b34801561043657600080fd5b506008546101c19060ff1681565b34801561045057600080fd5b5061036061045f366004611353565b6107e1565b34801561047057600080fd5b506101c161047f36600461133a565b61086a565b34801561049057600080fd5b506101e761049f366004611391565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104d657600080fd5b506101e760075481565b3480156104ec57600080fd5b506103606104fb36600461131d565b61099c565b60606003805461050f906113bf565b80601f016020809104026020016040519081016040528092919081815260200182805461053b906113bf565b80156105885780601f1061055d57610100808354040283529160200191610588565b820191906000526020600020905b81548152906001019060200180831161056b57829003601f168201915b5050505050905090565b600061059f338484610a34565b5060015b92915050565b60006105b6848484610b58565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106405760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61064d8533858403610a34565b506001949350505050565b6005546001600160a01b031633146106825760405162461bcd60e51b8152600401610637906113f9565b61068c6000610e9c565b565b6005546001600160a01b031633146106b85760405162461bcd60e51b8152600401610637906113f9565b600981905560148111156107025760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610637565b50565b6005546001600160a01b0316331461072f5760405162461bcd60e51b8152600401610637906113f9565b6008805460ff19166001179055565b60606004805461050f906113bf565b600061059f338484610b58565b6005546001600160a01b031633146107845760405162461bcd60e51b8152600401610637906113f9565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461080b5760405162461bcd60e51b8152600401610637906113f9565b6001600160a01b0382166000818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b031633146108975760405162461bcd60e51b8152600401610637906113f9565b683635c9adc5dea000008210156109065760405162461bcd60e51b815260206004820152602d60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201526c1018981818103a37b5b2b7399760991b6064820152608401610637565b6103e861091260025490565b61091d906005611444565b610927919061145b565b8211156109935760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610637565b50600755600190565b6005546001600160a01b031633146109c65760405162461bcd60e51b8152600401610637906113f9565b6001600160a01b038116610a2b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610637565b61070281610e9c565b6001600160a01b038316610a965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610637565b6001600160a01b038216610af75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610637565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b7e5760405162461bcd60e51b81526004016106379061147d565b6001600160a01b038216610ba45760405162461bcd60e51b8152600401610637906114c2565b80600003610bbd57610bb883836000610eee565b505050565b6005546001600160a01b03848116911614801590610be957506005546001600160a01b03838116911614155b8015610bfd57506001600160a01b03821615155b8015610c1457506001600160a01b03821661dead14155b8015610c2a5750600554600160a01b900460ff16155b15610cbd5760085460ff16610cbd576001600160a01b0383166000908152600a602052604090205460ff1680610c7857506001600160a01b0382166000908152600a602052604090205460ff165b610cbd5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610637565b3060009081526020819052604090205460075481108015908190610ceb5750600554600160a01b900460ff16155b8015610d2857507f0000000000000000000000001ceea4cf2896aac4872bee61fda06d831f3519d96001600160a01b0316846001600160a01b0316145b8015610d4d57506001600160a01b0385166000908152600a602052604090205460ff16155b8015610d7257506001600160a01b0384166000908152600a602052604090205460ff16155b15610da0576005805460ff60a01b1916600160a01b179055610d92611043565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600a602052604090205460ff600160a01b909204821615911680610dee57506001600160a01b0385166000908152600a602052604090205460ff165b15610df7575060005b60008115610e88577f0000000000000000000000001ceea4cf2896aac4872bee61fda06d831f3519d96001600160a01b0316866001600160a01b0316148015610e4257506000600954115b15610e6a57610e676064610e616009548861106790919063ffffffff16565b9061107a565b90505b8015610e7b57610e7b873083610eee565b610e858186611505565b94505b610e93878787610eee565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f145760405162461bcd60e51b81526004016106379061147d565b6001600160a01b038216610f3a5760405162461bcd60e51b8152600401610637906114c2565b6001600160a01b03831660009081526020819052604090205481811015610fb25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610637565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610fe9908490611518565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103591815260200190565b60405180910390a350505050565b306000908152602081905260408120549081900361105e5750565b61070281611086565b60006110738284611444565b9392505050565b6000611073828461145b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110bb576110bb61152b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611139573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115d9190611541565b816001815181106111705761117061152b565b60200260200101906001600160a01b031690816001600160a01b0316815250506111bb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a34565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac9479261121792879260009288929190911690429060040161155e565b600060405180830381600087803b15801561123157600080fd5b505af1158015611245573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561127a5785810183015185820160400152820161125e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461070257600080fd5b600080604083850312156112c357600080fd5b82356112ce8161129b565b946020939093013593505050565b6000806000606084860312156112f157600080fd5b83356112fc8161129b565b9250602084013561130c8161129b565b929592945050506040919091013590565b60006020828403121561132f57600080fd5b81356110738161129b565b60006020828403121561134c57600080fd5b5035919050565b6000806040838503121561136657600080fd5b82356113718161129b565b91506020830135801515811461138657600080fd5b809150509250929050565b600080604083850312156113a457600080fd5b82356113af8161129b565b915060208301356113868161129b565b600181811c908216806113d357607f821691505b6020821081036113f357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105a3576105a361142e565b60008261147857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156105a3576105a361142e565b808201808211156105a3576105a361142e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561155357600080fd5b81516110738161129b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115ae5784516001600160a01b031683529383019391830191600101611589565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209b637fe95ecb32ee12b2add794fe53af4c6147db571e6c435632a001b7964a3e64736f6c63430008130033

Deployed Bytecode Sourcemap

24728:6194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:169;;;;;;;;;;-1:-1:-1;11698:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11698:169:0;1023:187:1;25116:31:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;25116:31:0;1215:177:1;24802:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;24802:51:0;1397:229:1;10651:108:0;;;;;;;;;;-1:-1:-1;10739:12:0;;10651:108;;12349:492;;;;;;;;;;-1:-1:-1;12349:492:0;;;;;:::i;:::-;;:::i;24905:53::-;;;;;;;;;;;;24951:6;24905:53;;10493:93;;;;;;;;;;-1:-1:-1;10493:93:0;;10576:2;2442:36:1;;2430:2;2415:18;10493:93:0;2300:184:1;24860:38:0;;;;;;;;;;;;;;;27944:126;;;;;;;;;;-1:-1:-1;27944:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;28034:28:0;28010:4;28034:28;;;:19;:28;;;;;;;;;27944:126;10822:127;;;;;;;;;;-1:-1:-1;10822:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10923:18:0;10896:7;10923:18;;;;;;;;;;;;10822:127;2766:103;;;;;;;;;;;;;:::i;:::-;;24995:30;;;;;;;;;;-1:-1:-1;24995:30:0;;;;-1:-1:-1;;;;;24995:30:0;;;27307:200;;;;;;;;;;-1:-1:-1;27307:200:0;;;;;:::i;:::-;;:::i;26672:83::-;;;;;;;;;;;;;:::i;2115:87::-;;;;;;;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;2188:6:0;2115:87;;9750:104;;;;;;;;;;;;;:::i;11162:175::-;;;;;;;;;;-1:-1:-1;11162:175:0;;;;;:::i;:::-;;:::i;27705:231::-;;;;;;;;;;-1:-1:-1;27705:231:0;;;;;:::i;:::-;;:::i;25074:33::-;;;;;;;;;;-1:-1:-1;25074:33:0;;;;;;;;27515:182;;;;;;;;;;-1:-1:-1;27515:182:0;;;;;:::i;:::-;;:::i;26827:472::-;;;;;;;;;;-1:-1:-1;26827:472:0;;;;;:::i;:::-;;:::i;11400:151::-;;;;;;;;;;-1:-1:-1;11400:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11516:18:0;;;11489:7;11516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11400:151;25034:33;;;;;;;;;;;;;;;;3024:201;;;;;;;;;;-1:-1:-1;3024:201:0;;;;;:::i;:::-;;:::i;9531:100::-;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11698:169::-;11781:4;11798:39;868:10;11821:7;11830:6;11798:8;:39::i;:::-;-1:-1:-1;11855:4:0;11698:169;;;;;:::o;12349:492::-;12489:4;12506:36;12516:6;12524:9;12535:6;12506:9;:36::i;:::-;-1:-1:-1;;;;;12582:19:0;;12555:24;12582:19;;;:11;:19;;;;;;;;868:10;12582:33;;;;;;;;12634:26;;;;12626:79;;;;-1:-1:-1;;;12626:79:0;;4327:2:1;12626:79:0;;;4309:21:1;4366:2;4346:18;;;4339:30;4405:34;4385:18;;;4378:62;-1:-1:-1;;;4456:18:1;;;4449:38;4504:19;;12626:79:0;;;;;;;;;12741:57;12750:6;868:10;12791:6;12772:16;:25;12741:8;:57::i;:::-;-1:-1:-1;12829:4:0;;12349:492;-1:-1:-1;;;;12349:492:0:o;2766:103::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;27307:200::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;27400:16:::1;:36:::0;;;27475:2:::1;27455:22:::0;::::1;;27447:52;;;::::0;-1:-1:-1;;;27447:52:0;;5097:2:1;27447:52:0::1;::::0;::::1;5079:21:1::0;5136:2;5116:18;;;5109:30;-1:-1:-1;;;5155:18:1;;;5148:47;5212:18;;27447:52:0::1;4895:341:1::0;27447:52:0::1;27307:200:::0;:::o;26672:83::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;26727:13:::1;:20:::0;;-1:-1:-1;;26727:20:0::1;26743:4;26727:20;::::0;;26672:83::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;11162:175::-;11248:4;11265:42;868:10;11289:9;11300:6;11265:9;:42::i;27705:231::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;27865:15:::1;::::0;27822:59:::1;::::0;-1:-1:-1;;;;;27865:15:0;;::::1;::::0;27822:59;::::1;::::0;::::1;::::0;27865:15:::1;::::0;27822:59:::1;27892:15;:36:::0;;-1:-1:-1;;;;;;27892:36:0::1;-1:-1:-1::0;;;;;27892:36:0;;;::::1;::::0;;;::::1;::::0;;27705:231::o;27515:182::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27600:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;27600:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;27655:34;;1163:41:1;;;27655:34:0::1;::::0;1136:18:1;27655:34:0::1;;;;;;;27515:182:::0;;:::o;26827:472::-;2188:6;;26935:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;26992:11:::1;26979:9;:24;;26957:119;;;::::0;-1:-1:-1;;;26957:119:0;;5443:2:1;26957:119:0::1;::::0;::::1;5425:21:1::0;5482:2;5462:18;;;5455:30;5521:34;5501:18;;;5494:62;-1:-1:-1;;;5572:18:1;;;5565:43;5625:19;;26957:119:0::1;5241:409:1::0;26957:119:0::1;27144:4;27123:13;10739:12:::0;;;10651:108;27123:13:::1;:17;::::0;27139:1:::1;27123:17;:::i;:::-;27122:26;;;;:::i;:::-;27109:9;:39;;27087:141;;;::::0;-1:-1:-1;;;27087:141:0;;6384:2:1;27087:141:0::1;::::0;::::1;6366:21:1::0;6423:2;6403:18;;;6396:30;6462:34;6442:18;;;6435:62;-1:-1:-1;;;6513:18:1;;;6506:50;6573:19;;27087:141:0::1;6182:416:1::0;27087:141:0::1;-1:-1:-1::0;27239:18:0::1;:30:::0;27287:4:::1;::::0;26827:472::o;3024:201::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3113:22:0;::::1;3105:73;;;::::0;-1:-1:-1;;;3105:73:0;;6805:2:1;3105:73:0::1;::::0;::::1;6787:21:1::0;6844:2;6824:18;;;6817:30;6883:34;6863:18;;;6856:62;-1:-1:-1;;;6934:18:1;;;6927:36;6980:19;;3105:73:0::1;6603:402:1::0;3105:73:0::1;3189:28;3208:8;3189:18;:28::i;15190:380::-:0;-1:-1:-1;;;;;15326:19:0;;15318:68;;;;-1:-1:-1;;;15318:68:0;;7212:2:1;15318:68:0;;;7194:21:1;7251:2;7231:18;;;7224:30;7290:34;7270:18;;;7263:62;-1:-1:-1;;;7341:18:1;;;7334:34;7385:19;;15318:68:0;7010:400:1;15318:68:0;-1:-1:-1;;;;;15405:21:0;;15397:68;;;;-1:-1:-1;;;15397:68:0;;7617:2:1;15397:68:0;;;7599:21:1;7656:2;7636:18;;;7629:30;7695:34;7675:18;;;7668:62;-1:-1:-1;;;7746:18:1;;;7739:32;7788:19;;15397:68:0;7415:398:1;15397:68:0;-1:-1:-1;;;;;15478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15530:32;;1361:25:1;;;15530:32:0;;1334:18:1;15530:32:0;;;;;;;15190:380;;;:::o;28078:2020::-;-1:-1:-1;;;;;28210:18:0;;28202:68;;;;-1:-1:-1;;;28202:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28289:16:0;;28281:64;;;;-1:-1:-1;;;28281:64:0;;;;;;;:::i;:::-;28362:6;28372:1;28362:11;28358:93;;28390:28;28406:4;28412:2;28416:1;28390:15;:28::i;:::-;28078:2020;;;:::o;28358:93::-;2188:6;;-1:-1:-1;;;;;28499:15:0;;;2188:6;;28499:15;;;;:49;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;28535:13:0;;;2188:6;;28535:13;;28499:49;:86;;;;-1:-1:-1;;;;;;28569:16:0;;;;28499:86;:128;;;;-1:-1:-1;;;;;;28606:21:0;;28620:6;28606:21;;28499:128;:158;;;;-1:-1:-1;28649:8:0;;-1:-1:-1;;;28649:8:0;;;;28648:9;28499:158;28477:455;;;28697:13;;;;28692:223;;-1:-1:-1;;;;;28769:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28798:23:0;;;;;;:19;:23;;;;;;;;28769:52;28735:160;;;;-1:-1:-1;;;28735:160:0;;8830:2:1;28735:160:0;;;8812:21:1;8869:2;8849:18;;;8842:30;-1:-1:-1;;;8888:18:1;;;8881:52;8950:18;;28735:160:0;8628:346:1;28735:160:0;28995:4;28946:28;10923:18;;;;;;;;;;;29053;;29029:42;;;;;;;29102:33;;-1:-1:-1;29127:8:0;;-1:-1:-1;;;29127:8:0;;;;29126:9;29102:33;:69;;;;;29158:13;-1:-1:-1;;;;;29152:19:0;:2;-1:-1:-1;;;;;29152:19:0;;29102:69;:112;;;;-1:-1:-1;;;;;;29189:25:0;;;;;;:19;:25;;;;;;;;29188:26;29102:112;:153;;;;-1:-1:-1;;;;;;29232:23:0;;;;;;:19;:23;;;;;;;;29231:24;29102:153;29084:285;;;29282:8;:15;;-1:-1:-1;;;;29282:15:0;-1:-1:-1;;;29282:15:0;;;29314:10;:8;:10::i;:::-;29341:8;:16;;-1:-1:-1;;;;29341:16:0;;;29084:285;29397:8;;-1:-1:-1;;;;;29507:25:0;;29381:12;29507:25;;;:19;:25;;;;;;29397:8;-1:-1:-1;;;29397:8:0;;;;;29396:9;;29507:25;;:52;;-1:-1:-1;;;;;;29536:23:0;;;;;;:19;:23;;;;;;;;29507:52;29503:100;;;-1:-1:-1;29586:5:0;29503:100;29615:12;29720:7;29716:329;;;29778:13;-1:-1:-1;;;;;29772:19:0;:2;-1:-1:-1;;;;;29772:19:0;;:43;;;;;29814:1;29795:16;;:20;29772:43;29768:128;;;29843:37;29876:3;29843:28;29854:16;;29843:6;:10;;:28;;;;:::i;:::-;:32;;:37::i;:::-;29836:44;;29768:128;29916:8;;29912:91;;29945:42;29961:4;29975;29982;29945:15;:42::i;:::-;30019:14;30029:4;30019:14;;:::i;:::-;;;29716:329;30057:33;30073:4;30079:2;30083:6;30057:15;:33::i;:::-;28191:1907;;;;28078:2020;;;:::o;3385:191::-;3478:6;;;-1:-1:-1;;;;;3495:17:0;;;-1:-1:-1;;;;;;3495:17:0;;;;;;;3528:40;;3478:6;;;3495:17;3478:6;;3528:40;;3459:16;;3528:40;3448:128;3385:191;:::o;13331:733::-;-1:-1:-1;;;;;13471:20:0;;13463:70;;;;-1:-1:-1;;;13463:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13552:23:0;;13544:71;;;;-1:-1:-1;;;13544:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13712:17:0;;13688:21;13712:17;;;;;;;;;;;13748:23;;;;13740:74;;;;-1:-1:-1;;;13740:74:0;;9314:2:1;13740:74:0;;;9296:21:1;9353:2;9333:18;;;9326:30;9392:34;9372:18;;;9365:62;-1:-1:-1;;;9443:18:1;;;9436:36;9489:19;;13740:74:0;9112:402:1;13740:74:0;-1:-1:-1;;;;;13850:17:0;;;:9;:17;;;;;;;;;;;13870:22;;;13850:42;;13914:20;;;;;;;;:30;;13886:6;;13850:9;13914:30;;13886:6;;13914:30;:::i;:::-;;;;;;;;13979:9;-1:-1:-1;;;;;13962:35:0;13971:6;-1:-1:-1;;;;;13962:35:0;;13990:6;13962:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;13962:35:0;;;;;;;;13452:612;13331:733;;;:::o;30705:212::-;30788:4;30744:23;10923:18;;;;;;;;;;;;30809:20;;;30805:59;;30846:7;30705:212::o;30805:59::-;30876:33;30893:15;30876:16;:33::i;20643:98::-;20701:7;20728:5;20732:1;20728;:5;:::i;:::-;20721:12;20643:98;-1:-1:-1;;;20643:98:0:o;21042:::-;21100:7;21127:5;21131:1;21127;:5;:::i;30106:591::-;30256:16;;;30270:1;30256:16;;;;;;;;30232:21;;30256:16;;;;;;;;;;-1:-1:-1;30256:16:0;30232:40;;30301:4;30283;30288:1;30283:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;30283:23:0;;;-1:-1:-1;;;;;30283:23:0;;;;;30327:15;-1:-1:-1;;;;;30327:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30317:4;30322:1;30317:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;30317:32:0;;;-1:-1:-1;;;;;30317:32:0;;;;;30362:62;30379:4;30394:15;30412:11;30362:8;:62::i;:::-;30633:15;;30463:226;;-1:-1:-1;;;30463:226:0;;-1:-1:-1;;;;;30463:15:0;:66;;;;;:226;;30544:11;;30570:1;;30614:4;;30633:15;;;;;30663;;30463:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30161:536;30106:591;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;2741:180::-;2800:6;2853:2;2841:9;2832:7;2828:23;2824:32;2821:52;;;2869:1;2866;2859:12;2821:52;-1:-1:-1;2892:23:1;;2741:180;-1:-1:-1;2741:180:1:o;2926:416::-;2991:6;2999;3052:2;3040:9;3031:7;3027:23;3023:32;3020:52;;;3068:1;3065;3058:12;3020:52;3107:9;3094:23;3126:31;3151:5;3126:31;:::i;:::-;3176:5;-1:-1:-1;3233:2:1;3218:18;;3205:32;3275:15;;3268:23;3256:36;;3246:64;;3306:1;3303;3296:12;3246:64;3329:7;3319:17;;;2926:416;;;;;:::o;3347:388::-;3415:6;3423;3476:2;3464:9;3455:7;3451:23;3447:32;3444:52;;;3492:1;3489;3482:12;3444:52;3531:9;3518:23;3550:31;3575:5;3550:31;:::i;:::-;3600:5;-1:-1:-1;3657:2:1;3642:18;;3629:32;3670:33;3629:32;3670:33;:::i;3740:380::-;3819:1;3815:12;;;;3862;;;3883:61;;3937:4;3929:6;3925:17;3915:27;;3883:61;3990:2;3982:6;3979:14;3959:18;3956:38;3953:161;;4036:10;4031:3;4027:20;4024:1;4017:31;4071:4;4068:1;4061:15;4099:4;4096:1;4089:15;3953:161;;3740:380;;;:::o;4534:356::-;4736:2;4718:21;;;4755:18;;;4748:30;4814:34;4809:2;4794:18;;4787:62;4881:2;4866:18;;4534:356::o;5655:127::-;5716:10;5711:3;5707:20;5704:1;5697:31;5747:4;5744:1;5737:15;5771:4;5768:1;5761:15;5787:168;5860:9;;;5891;;5908:15;;;5902:22;;5888:37;5878:71;;5929:18;;:::i;5960:217::-;6000:1;6026;6016:132;;6070:10;6065:3;6061:20;6058:1;6051:31;6105:4;6102:1;6095:15;6133:4;6130:1;6123:15;6016:132;-1:-1:-1;6162:9:1;;5960:217::o;7818:401::-;8020:2;8002:21;;;8059:2;8039:18;;;8032:30;8098:34;8093:2;8078:18;;8071:62;-1:-1:-1;;;8164:2:1;8149:18;;8142:35;8209:3;8194:19;;7818:401::o;8224:399::-;8426:2;8408:21;;;8465:2;8445:18;;;8438:30;8504:34;8499:2;8484:18;;8477:62;-1:-1:-1;;;8570:2:1;8555:18;;8548:33;8613:3;8598:19;;8224:399::o;8979:128::-;9046:9;;;9067:11;;;9064:37;;;9081:18;;:::i;9519:125::-;9584:9;;;9605:10;;;9602:36;;;9618:18;;:::i;9781:127::-;9842:10;9837:3;9833:20;9830:1;9823:31;9873:4;9870:1;9863:15;9897:4;9894:1;9887:15;9913:251;9983:6;10036:2;10024:9;10015:7;10011:23;10007:32;10004:52;;;10052:1;10049;10042:12;10004:52;10084:9;10078:16;10103:31;10128:5;10103:31;:::i;10169:980::-;10431:4;10479:3;10468:9;10464:19;10510:6;10499:9;10492:25;10536:2;10574:6;10569:2;10558:9;10554:18;10547:34;10617:3;10612:2;10601:9;10597:18;10590:31;10641:6;10676;10670:13;10707:6;10699;10692:22;10745:3;10734:9;10730:19;10723:26;;10784:2;10776:6;10772:15;10758:29;;10805:1;10815:195;10829:6;10826:1;10823:13;10815:195;;;10894:13;;-1:-1:-1;;;;;10890:39:1;10878:52;;10985:15;;;;10950:12;;;;10926:1;10844:9;10815:195;;;-1:-1:-1;;;;;;;11066:32:1;;;;11061:2;11046:18;;11039:60;-1:-1:-1;;;11130:3:1;11115:19;11108:35;11027:3;10169:980;-1:-1:-1;;;10169:980:1:o

Swarm Source

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