ETH Price: $2,521.65 (-0.11%)

Token

Dynomic (Dynomic)
 

Overview

Max Total Supply

5,000,000,000 Dynomic

Holders

146

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,016,000.859098279147058942 Dynomic

Value
$0.00
0xf36699e6f15295e1549576aea00986c06996466e
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:
DynomicDaoToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : DynomicDaoToken.sol
/**
 * Dynomic Dao Token is the main token of Dynomic Dao ecosystem
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';

import './utils/TeamRole.sol';
import './interfaces/IDynoStrategy.sol';

contract DynomicDaoToken is ERC20, TeamRole {
    address public deadAddress = address(0xdead);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    mapping(address => bool) public automatedMarketMakerPairs;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool private swapping;

    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) private _isExcludedFromFees;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    address public dynoStrategy;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor() ERC20('Dynomic', 'Dynomic') {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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

        uint256 _totalSupply = 5_000_000_000 * 1e18;
        maxTransactionAmount = _totalSupply * 2 / 100;
        maxWallet = _totalSupply * 2 / 100;
        swapTokensAtAmount = _totalSupply * 5 / 1000;

        _mint(msg.sender, _totalSupply);

        excludeFromFees(msg.sender, true);
        excludeFromFees(dynoStrategy, true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);

        excludeFromMaxTransaction(msg.sender, true);
        excludeFromMaxTransaction(dynoStrategy, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
    }

    receive() external payable {}

    function launch() external isTeam {
        tradingActive = true;
        swapEnabled = true;
    }

    function getCirculatingSupply() public view returns (uint256) {
        return totalSupply() - balanceOf(deadAddress);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        isTeam
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function addPool(address _pool) external isTeam {
        _isExcludedFromFees[_pool] = true;
        _isExcludedMaxTransactionAmount[_pool] = true;
    }

    function updateStrategy(address _dynoStrategy, address _pool) external isTeam {
        _isExcludedFromFees[_dynoStrategy] = true;
        _isExcludedMaxTransactionAmount[_dynoStrategy] = true;
        addTeam(_dynoStrategy);
        _approve(_pool, _dynoStrategy, totalSupply());
        dynoStrategy = _dynoStrategy;
    }

    function removeLimits() external isTeam returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external isTeam {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external isTeam {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external isTeam {
        swapEnabled = enabled;
    }

    function updateSwapTokensAtAmount(uint256 _amount) external isTeam {
        swapTokensAtAmount = _amount;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        isTeam
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    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 (limitsInEffect) {
            if (
                !_isTeam(from) &&
                !_isTeam(to) &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }
            }

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_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;


        if (takeFee) {
            (uint256 buyTax, uint256 sellTax) = IDynoStrategy(dynoStrategy).feeStrategy();

            if (automatedMarketMakerPairs[to] && sellTax > 0) {
                fees = amount * sellTax / 100;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTax > 0) {
                fees = amount * buyTax / 100;
            }

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

            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);
    }

    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,
            dynoStrategy,
            block.timestamp
        );
    }
}

File 2 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

File 3 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
}

File 4 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 6 of 12 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 7 of 12 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 8 of 12 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 12 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 12 : IDynoStrategy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

interface IDynoStrategy {
    function distributeFee() external;
    function feeStrategy() external view returns (uint256, uint256);
}

File 11 of 12 : Roles.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0;
/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
	struct Role {
		mapping (address => bool) bearer;
	}

	/**
	* @dev Give an account access to this role.
	*/
	function add(Role storage role, address account) internal {
		require(!has(role, account), "Roles: account already has role");
		role.bearer[account] = true;
	}

	/**
	* @dev Remove an account's access to this role.
	*/
	function remove(Role storage role, address account) internal {
		require(has(role, account), "Roles: account does not have role");
		role.bearer[account] = false;
	}

	/**
	* @dev Check if an account has this role.
	* @return bool
	*/
	function has(Role storage role, address account) internal view returns (bool) {
		require(account != address(0), "Roles: account is the zero address");
		return role.bearer[account];
	}
}

File 12 of 12 : TeamRole.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

import './Roles.sol';

contract TeamRole is Context {
	using Roles for Roles.Role;

	event TeamAdded(address indexed account);
	event TeamRemoved(address indexed account);

	Roles.Role private _teams;

	constructor() public {
		_addTeam(_msgSender());
	}

	modifier isTeam() {
		require(_isTeam(_msgSender()), 'AdminRole: caller does not have the Minter role');
		_;
	}

	function _isTeam(address account) public view returns (bool) {
		return _teams.has(account);
	}

	function addTeam(address account) public virtual isTeam {
		_addTeam(account);
	}

	function renounceTeamMembership() public {
		_removeTeam(_msgSender());
	}

	function _addTeam(address account) internal  {
		_teams.add(account);
		emit TeamAdded(account);
	}

	function _removeTeam(address account) internal {
		_teams.remove(account);
		emit TeamRemoved(account);
	}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TeamAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TeamRemoved","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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"_isTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dynoStrategy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTeamMembership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dynoStrategy","type":"address"},{"internalType":"address","name":"_pool","type":"address"}],"name":"updateStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191661dead179055600e805462ffffff191660011790553480156200003457600080fd5b5060408051808201825260078082526644796e6f6d696360c81b6020808401829052845180860190955291845290830152906003620000748382620007f4565b506004620000838282620007f4565b505050620000a06200009a6200036860201b60201c565b6200036c565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c2816001620003be565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001339190620008c0565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000181573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a79190620008c0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021b9190620008c0565b6001600160a01b031660a081905262000236906001620003be565b60a051620002469060016200044d565b6b1027e72f1f1281308800000060646200026282600262000908565b6200026e919062000922565b60085560646200028082600262000908565b6200028c919062000922565b600a556103e86200029f82600562000908565b620002ab919062000922565b600955620002ba3382620004a1565b620002c733600162000564565b600e54620002e790630100000090046001600160a01b0316600162000564565b620002f430600162000564565b6006546200030d906001600160a01b0316600162000564565b6200031a336001620003be565b600e546200033a90630100000090046001600160a01b03166001620003be565b62000347306001620003be565b60065462000360906001600160a01b03166001620003be565b50506200095b565b3390565b620003878160056200062360201b62000e931790919060201c565b6040516001600160a01b038216907f3f5f1db80208f0d453083a86e16909cecc1e95e2618d5d927c93ace22b8200fc90600090a250565b620003c933620006a3565b620004225760405162461bcd60e51b815260206004820152602f6024820152600080516020620029c583398151915260448201526e746865204d696e74657220726f6c6560881b60648201526084015b60405180910390fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260076020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620004f95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000419565b80600260008282546200050d919062000945565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200056f33620006a3565b620005c45760405162461bcd60e51b815260206004820152602f6024820152600080516020620029c583398151915260448201526e746865204d696e74657220726f6c6560881b606482015260840162000419565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200062f8282620006cb565b156200067e5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015260640162000419565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000620006c0826005620006cb60201b62000f0f1790919060201c565b92915050565b505050565b60006001600160a01b038216620007305760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b606482015260840162000419565b506001600160a01b03166000908152602091909152604090205460ff1690565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200077b57607f821691505b6020821081036200079c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006c657600081815260208120601f850160051c81016020861015620007cb5750805b601f850160051c820191505b81811015620007ec57828155600101620007d7565b505050505050565b81516001600160401b0381111562000810576200081062000750565b620008288162000821845462000766565b84620007a2565b602080601f831160018114620008605760008415620008475750858301515b600019600386901b1c1916600185901b178555620007ec565b600085815260208120601f198616915b82811015620008915788860151825594840194600190910190840162000870565b5085821015620008b05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008d357600080fd5b81516001600160a01b0381168114620008eb57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006c057620006c0620008f2565b6000826200094057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006c057620006c0620008f2565b60805160a0516120286200099d600039600081816104450152610b200152600081816102e901528181611a8201528181611b3b0152611b7a01526120286000f3fe6080604052600436106102295760003560e01c8063751039fc11610123578063b62496f5116100ab578063d257b34f1161006f578063d257b34f146106a2578063d914cd4b146106c2578063dd62ed3e146106e2578063e2f4560514610702578063f8b45b051461071857600080fd5b8063b62496f5146105fd578063bbc0c7421461062d578063c02466681461064c578063c18bc1951461066c578063c8c8ebe41461068c57600080fd5b806395d89b41116100f257806395d89b41146105685780639a7a23d61461057d578063a457c2d71461059d578063a9059cbb146105bd578063b463a75c146105dd57600080fd5b8063751039fc146104ec5780637571336a146105015780637fcef4d714610521578063924de9b71461054857600080fd5b806329f88ace116101b157806349bd5a5e1161017557806349bd5a5e146104335780634a62bb65146104675780636ddd17131461048157806370a08231146104a15780637491cea2146104d757600080fd5b806329f88ace146103a25780632b112e49146103c2578063313ce567146103d757806339509351146103f3578063402b86511461041357600080fd5b80631694505e116101f85780631694505e146102d757806318160ddd14610323578063203e727e1461034257806323b872dd1461036257806327c8f8351461038257600080fd5b806301339c211461023557806306fdde031461024c578063095ea7b31461027757806310d5de53146102a757600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a61072e565b005b34801561025857600080fd5b5061026161076f565b60405161026e9190611bf9565b60405180910390f35b34801561028357600080fd5b50610297610292366004611c5c565b610801565b604051901515815260200161026e565b3480156102b357600080fd5b506102976102c2366004611c88565b600c6020526000908152604090205460ff1681565b3480156102e357600080fd5b5061030b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026e565b34801561032f57600080fd5b506002545b60405190815260200161026e565b34801561034e57600080fd5b5061024a61035d366004611cac565b61081b565b34801561036e57600080fd5b5061029761037d366004611cc5565b6108f3565b34801561038e57600080fd5b5060065461030b906001600160a01b031681565b3480156103ae57600080fd5b5061024a6103bd366004611d06565b610917565b3480156103ce57600080fd5b506103346109c0565b3480156103e357600080fd5b506040516012815260200161026e565b3480156103ff57600080fd5b5061029761040e366004611c5c565b6109ed565b34801561041f57600080fd5b5061029761042e366004611c88565b610a0a565b34801561043f57600080fd5b5061030b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047357600080fd5b50600e546102979060ff1681565b34801561048d57600080fd5b50600e546102979062010000900460ff1681565b3480156104ad57600080fd5b506103346104bc366004611c88565b6001600160a01b031660009081526020819052604090205490565b3480156104e357600080fd5b5061024a610a17565b3480156104f857600080fd5b50610297610a22565b34801561050d57600080fd5b5061024a61051c366004611d54565b610a59565b34801561052d57600080fd5b50600e5461030b90630100000090046001600160a01b031681565b34801561055457600080fd5b5061024a610563366004611d89565b610aa9565b34801561057457600080fd5b50610261610aea565b34801561058957600080fd5b5061024a610598366004611d54565b610af9565b3480156105a957600080fd5b506102976105b8366004611c5c565b610bd3565b3480156105c957600080fd5b506102976105d8366004611c5c565b610c4e565b3480156105e957600080fd5b5061024a6105f8366004611c88565b610c5c565b34801561060957600080fd5b50610297610618366004611c88565b60076020526000908152604090205460ff1681565b34801561063957600080fd5b50600e5461029790610100900460ff1681565b34801561065857600080fd5b5061024a610667366004611d54565b610c8d565b34801561067857600080fd5b5061024a610687366004611cac565b610d11565b34801561069857600080fd5b5061033460085481565b3480156106ae57600080fd5b5061024a6106bd366004611cac565b610ddd565b3480156106ce57600080fd5b5061024a6106dd366004611c88565b610e07565b3480156106ee57600080fd5b506103346106fd366004611d06565b610e68565b34801561070e57600080fd5b5061033460095481565b34801561072457600080fd5b50610334600a5481565b61073733610a0a565b61075c5760405162461bcd60e51b815260040161075390611da4565b60405180910390fd5b600e805462ffff00191662010100179055565b60606003805461077e90611df3565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90611df3565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b60003361080f818585610f92565b60019150505b92915050565b61082433610a0a565b6108405760405162461bcd60e51b815260040161075390611da4565b670de0b6b3a76400006103e861085560025490565b610860906001611e43565b61086a9190611e5a565b6108749190611e5a565b8110156108db5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610753565b6108ed81670de0b6b3a7640000611e43565b60085550565b6000336109018582856110b6565b61090c858585611130565b506001949350505050565b61092033610a0a565b61093c5760405162461bcd60e51b815260040161075390611da4565b6001600160a01b0382166000908152600d602090815260408083208054600160ff199182168117909255600c90935292208054909116909117905561098082610c5c565b610993818361098e60025490565b610f92565b50600e80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6006546001600160a01b03166000908152602081905260408120546002546109e89190611e7c565b905090565b60003361080f818585610a008383610e68565b61098e9190611e8f565b6000610815600583610f0f565b610a203361175d565b565b6000610a2d33610a0a565b610a495760405162461bcd60e51b815260040161075390611da4565b50600e805460ff19169055600190565b610a6233610a0a565b610a7e5760405162461bcd60e51b815260040161075390611da4565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610ab233610a0a565b610ace5760405162461bcd60e51b815260040161075390611da4565b600e8054911515620100000262ff000019909216919091179055565b60606004805461077e90611df3565b610b0233610a0a565b610b1e5760405162461bcd60e51b815260040161075390611da4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610bc55760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610753565b610bcf828261179f565b5050565b60003381610be18286610e68565b905083811015610c415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610753565b61090c8286868403610f92565b60003361080f818585611130565b610c6533610a0a565b610c815760405162461bcd60e51b815260040161075390611da4565b610c8a816117f3565b50565b610c9633610a0a565b610cb25760405162461bcd60e51b815260040161075390611da4565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d1a33610a0a565b610d365760405162461bcd60e51b815260040161075390611da4565b670de0b6b3a76400006103e8610d4b60025490565b610d56906005611e43565b610d609190611e5a565b610d6a9190611e5a565b811015610dc55760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610753565b610dd781670de0b6b3a7640000611e43565b600a5550565b610de633610a0a565b610e025760405162461bcd60e51b815260040161075390611da4565b600955565b610e1033610a0a565b610e2c5760405162461bcd60e51b815260040161075390611da4565b6001600160a01b03166000908152600d602090815260408083208054600160ff199182168117909255600c909352922080549091169091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e9d8282610f0f565b15610eea5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006044820152606401610753565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216610f725760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b6064820152608401610753565b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038316610ff45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610753565b6001600160a01b0382166110555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610753565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c28484610e68565b9050600019811461112a578181101561111d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610753565b61112a8484848403610f92565b50505050565b6001600160a01b0383166111565760405162461bcd60e51b815260040161075390611ea2565b6001600160a01b03821661117c5760405162461bcd60e51b815260040161075390611ee7565b806000036111955761119083836000611835565b505050565b600e5460ff16156114f4576111a983610a0a565b1580156111bc57506111ba82610a0a565b155b80156111d057506001600160a01b03821615155b80156111e757506001600160a01b03821661dead14155b80156111f65750600b5460ff16155b1561128e57600e54610100900460ff1661128e576001600160a01b0383166000908152600d602052604090205460ff168061124957506001600160a01b0382166000908152600d602052604090205460ff165b61128e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610753565b6001600160a01b03831660009081526007602052604090205460ff1680156112cf57506001600160a01b0382166000908152600c602052604090205460ff16155b156113b3576008548111156113445760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610753565b600a546001600160a01b03831660009081526020819052604090205461136a9083611e8f565b11156113ae5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610753565b6114f4565b6001600160a01b03821660009081526007602052604090205460ff1680156113f457506001600160a01b0383166000908152600c602052604090205460ff16155b1561146a576008548111156113ae5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610753565b6001600160a01b0382166000908152600c602052604090205460ff166114f457600a546001600160a01b0383166000908152602081905260409020546114b09083611e8f565b11156114f45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610753565b30600090815260208190526040902054600954811080159081906115205750600e5462010000900460ff165b801561152f5750600b5460ff16155b801561155457506001600160a01b03851660009081526007602052604090205460ff16155b801561157957506001600160a01b0385166000908152600d602052604090205460ff16155b801561159e57506001600160a01b0384166000908152600d602052604090205460ff16155b156115c357600b805460ff191660011790556115b861195f565b600b805460ff191690555b600b546001600160a01b0386166000908152600d602052604090205460ff9182161591168061160a57506001600160a01b0385166000908152600d602052604090205460ff165b15611613575060005b6000811561174957600080600e60039054906101000a90046001600160a01b03166001600160a01b031663949b22ae6040518163ffffffff1660e01b81526004016040805180830381865afa158015611670573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116949190611f2a565b6001600160a01b038a16600090815260076020526040902054919350915060ff1680156116c15750600081115b156116e35760646116d28289611e43565b6116dc9190611e5a565b9250611729565b6001600160a01b03891660009081526007602052604090205460ff16801561170b5750600082115b1561172957606461171c8389611e43565b6117269190611e5a565b92505b821561173a5761173a893085611835565b6117448388611e7c565b965050505b611754878787611835565b50505050505050565b6117686005826119a9565b6040516001600160a01b038216907f26b6063d78aefcf96f02ff06bc9822b5a623278253add7fffa5fb453db39981090600090a250565b6001600160a01b038216600081815260076020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6117fe600582610e93565b6040516001600160a01b038216907f3f5f1db80208f0d453083a86e16909cecc1e95e2618d5d927c93ace22b8200fc90600090a250565b6001600160a01b03831661185b5760405162461bcd60e51b815260040161075390611ea2565b6001600160a01b0382166118815760405162461bcd60e51b815260040161075390611ee7565b6001600160a01b038316600090815260208190526040902054818110156118f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610753565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112a565b306000908152602081905260408120549081900361197a5750565b600954611988906014611e43565b8111156119a05760095461199d906014611e43565b90505b610c8a81611a2b565b6119b38282610f0f565b611a095760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b6064820152608401610753565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a6057611a60611f4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ade573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b029190611f64565b81600181518110611b1557611b15611f4e565b60200260200101906001600160a01b031690816001600160a01b031681525050611b60307f000000000000000000000000000000000000000000000000000000000000000084610f92565b600e5460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611bc392879260009288926301000000909204909116904290600401611f81565b600060405180830381600087803b158015611bdd57600080fd5b505af1158015611bf1573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c2657858101830151858201604001528201611c0a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c8a57600080fd5b60008060408385031215611c6f57600080fd5b8235611c7a81611c47565b946020939093013593505050565b600060208284031215611c9a57600080fd5b8135611ca581611c47565b9392505050565b600060208284031215611cbe57600080fd5b5035919050565b600080600060608486031215611cda57600080fd5b8335611ce581611c47565b92506020840135611cf581611c47565b929592945050506040919091013590565b60008060408385031215611d1957600080fd5b8235611d2481611c47565b91506020830135611d3481611c47565b809150509250929050565b80358015158114611d4f57600080fd5b919050565b60008060408385031215611d6757600080fd5b8235611d7281611c47565b9150611d8060208401611d3f565b90509250929050565b600060208284031215611d9b57600080fd5b611ca582611d3f565b6020808252602f908201527f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060408201526e746865204d696e74657220726f6c6560881b606082015260800190565b600181811c90821680611e0757607f821691505b602082108103611e2757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761081557610815611e2d565b600082611e7757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561081557610815611e2d565b8082018082111561081557610815611e2d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008060408385031215611f3d57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f7657600080fd5b8151611ca581611c47565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fd15784516001600160a01b031683529383019391830191600101611fac565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203b409e42656c7c180777f716ea5bfc6cd08b32376ed613a6925e79d3c6ca3f5564736f6c6343000811003341646d696e526f6c653a2063616c6c657220646f6573206e6f74206861766520

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063751039fc11610123578063b62496f5116100ab578063d257b34f1161006f578063d257b34f146106a2578063d914cd4b146106c2578063dd62ed3e146106e2578063e2f4560514610702578063f8b45b051461071857600080fd5b8063b62496f5146105fd578063bbc0c7421461062d578063c02466681461064c578063c18bc1951461066c578063c8c8ebe41461068c57600080fd5b806395d89b41116100f257806395d89b41146105685780639a7a23d61461057d578063a457c2d71461059d578063a9059cbb146105bd578063b463a75c146105dd57600080fd5b8063751039fc146104ec5780637571336a146105015780637fcef4d714610521578063924de9b71461054857600080fd5b806329f88ace116101b157806349bd5a5e1161017557806349bd5a5e146104335780634a62bb65146104675780636ddd17131461048157806370a08231146104a15780637491cea2146104d757600080fd5b806329f88ace146103a25780632b112e49146103c2578063313ce567146103d757806339509351146103f3578063402b86511461041357600080fd5b80631694505e116101f85780631694505e146102d757806318160ddd14610323578063203e727e1461034257806323b872dd1461036257806327c8f8351461038257600080fd5b806301339c211461023557806306fdde031461024c578063095ea7b31461027757806310d5de53146102a757600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a61072e565b005b34801561025857600080fd5b5061026161076f565b60405161026e9190611bf9565b60405180910390f35b34801561028357600080fd5b50610297610292366004611c5c565b610801565b604051901515815260200161026e565b3480156102b357600080fd5b506102976102c2366004611c88565b600c6020526000908152604090205460ff1681565b3480156102e357600080fd5b5061030b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026e565b34801561032f57600080fd5b506002545b60405190815260200161026e565b34801561034e57600080fd5b5061024a61035d366004611cac565b61081b565b34801561036e57600080fd5b5061029761037d366004611cc5565b6108f3565b34801561038e57600080fd5b5060065461030b906001600160a01b031681565b3480156103ae57600080fd5b5061024a6103bd366004611d06565b610917565b3480156103ce57600080fd5b506103346109c0565b3480156103e357600080fd5b506040516012815260200161026e565b3480156103ff57600080fd5b5061029761040e366004611c5c565b6109ed565b34801561041f57600080fd5b5061029761042e366004611c88565b610a0a565b34801561043f57600080fd5b5061030b7f000000000000000000000000524a247292d7380a26efbebb5482f21dbdca257b81565b34801561047357600080fd5b50600e546102979060ff1681565b34801561048d57600080fd5b50600e546102979062010000900460ff1681565b3480156104ad57600080fd5b506103346104bc366004611c88565b6001600160a01b031660009081526020819052604090205490565b3480156104e357600080fd5b5061024a610a17565b3480156104f857600080fd5b50610297610a22565b34801561050d57600080fd5b5061024a61051c366004611d54565b610a59565b34801561052d57600080fd5b50600e5461030b90630100000090046001600160a01b031681565b34801561055457600080fd5b5061024a610563366004611d89565b610aa9565b34801561057457600080fd5b50610261610aea565b34801561058957600080fd5b5061024a610598366004611d54565b610af9565b3480156105a957600080fd5b506102976105b8366004611c5c565b610bd3565b3480156105c957600080fd5b506102976105d8366004611c5c565b610c4e565b3480156105e957600080fd5b5061024a6105f8366004611c88565b610c5c565b34801561060957600080fd5b50610297610618366004611c88565b60076020526000908152604090205460ff1681565b34801561063957600080fd5b50600e5461029790610100900460ff1681565b34801561065857600080fd5b5061024a610667366004611d54565b610c8d565b34801561067857600080fd5b5061024a610687366004611cac565b610d11565b34801561069857600080fd5b5061033460085481565b3480156106ae57600080fd5b5061024a6106bd366004611cac565b610ddd565b3480156106ce57600080fd5b5061024a6106dd366004611c88565b610e07565b3480156106ee57600080fd5b506103346106fd366004611d06565b610e68565b34801561070e57600080fd5b5061033460095481565b34801561072457600080fd5b50610334600a5481565b61073733610a0a565b61075c5760405162461bcd60e51b815260040161075390611da4565b60405180910390fd5b600e805462ffff00191662010100179055565b60606003805461077e90611df3565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90611df3565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b60003361080f818585610f92565b60019150505b92915050565b61082433610a0a565b6108405760405162461bcd60e51b815260040161075390611da4565b670de0b6b3a76400006103e861085560025490565b610860906001611e43565b61086a9190611e5a565b6108749190611e5a565b8110156108db5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610753565b6108ed81670de0b6b3a7640000611e43565b60085550565b6000336109018582856110b6565b61090c858585611130565b506001949350505050565b61092033610a0a565b61093c5760405162461bcd60e51b815260040161075390611da4565b6001600160a01b0382166000908152600d602090815260408083208054600160ff199182168117909255600c90935292208054909116909117905561098082610c5c565b610993818361098e60025490565b610f92565b50600e80546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6006546001600160a01b03166000908152602081905260408120546002546109e89190611e7c565b905090565b60003361080f818585610a008383610e68565b61098e9190611e8f565b6000610815600583610f0f565b610a203361175d565b565b6000610a2d33610a0a565b610a495760405162461bcd60e51b815260040161075390611da4565b50600e805460ff19169055600190565b610a6233610a0a565b610a7e5760405162461bcd60e51b815260040161075390611da4565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b610ab233610a0a565b610ace5760405162461bcd60e51b815260040161075390611da4565b600e8054911515620100000262ff000019909216919091179055565b60606004805461077e90611df3565b610b0233610a0a565b610b1e5760405162461bcd60e51b815260040161075390611da4565b7f000000000000000000000000524a247292d7380a26efbebb5482f21dbdca257b6001600160a01b0316826001600160a01b031603610bc55760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610753565b610bcf828261179f565b5050565b60003381610be18286610e68565b905083811015610c415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610753565b61090c8286868403610f92565b60003361080f818585611130565b610c6533610a0a565b610c815760405162461bcd60e51b815260040161075390611da4565b610c8a816117f3565b50565b610c9633610a0a565b610cb25760405162461bcd60e51b815260040161075390611da4565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d1a33610a0a565b610d365760405162461bcd60e51b815260040161075390611da4565b670de0b6b3a76400006103e8610d4b60025490565b610d56906005611e43565b610d609190611e5a565b610d6a9190611e5a565b811015610dc55760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610753565b610dd781670de0b6b3a7640000611e43565b600a5550565b610de633610a0a565b610e025760405162461bcd60e51b815260040161075390611da4565b600955565b610e1033610a0a565b610e2c5760405162461bcd60e51b815260040161075390611da4565b6001600160a01b03166000908152600d602090815260408083208054600160ff199182168117909255600c909352922080549091169091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e9d8282610f0f565b15610eea5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006044820152606401610753565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216610f725760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b6064820152608401610753565b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038316610ff45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610753565b6001600160a01b0382166110555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610753565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c28484610e68565b9050600019811461112a578181101561111d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610753565b61112a8484848403610f92565b50505050565b6001600160a01b0383166111565760405162461bcd60e51b815260040161075390611ea2565b6001600160a01b03821661117c5760405162461bcd60e51b815260040161075390611ee7565b806000036111955761119083836000611835565b505050565b600e5460ff16156114f4576111a983610a0a565b1580156111bc57506111ba82610a0a565b155b80156111d057506001600160a01b03821615155b80156111e757506001600160a01b03821661dead14155b80156111f65750600b5460ff16155b1561128e57600e54610100900460ff1661128e576001600160a01b0383166000908152600d602052604090205460ff168061124957506001600160a01b0382166000908152600d602052604090205460ff165b61128e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610753565b6001600160a01b03831660009081526007602052604090205460ff1680156112cf57506001600160a01b0382166000908152600c602052604090205460ff16155b156113b3576008548111156113445760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610753565b600a546001600160a01b03831660009081526020819052604090205461136a9083611e8f565b11156113ae5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610753565b6114f4565b6001600160a01b03821660009081526007602052604090205460ff1680156113f457506001600160a01b0383166000908152600c602052604090205460ff16155b1561146a576008548111156113ae5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610753565b6001600160a01b0382166000908152600c602052604090205460ff166114f457600a546001600160a01b0383166000908152602081905260409020546114b09083611e8f565b11156114f45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610753565b30600090815260208190526040902054600954811080159081906115205750600e5462010000900460ff165b801561152f5750600b5460ff16155b801561155457506001600160a01b03851660009081526007602052604090205460ff16155b801561157957506001600160a01b0385166000908152600d602052604090205460ff16155b801561159e57506001600160a01b0384166000908152600d602052604090205460ff16155b156115c357600b805460ff191660011790556115b861195f565b600b805460ff191690555b600b546001600160a01b0386166000908152600d602052604090205460ff9182161591168061160a57506001600160a01b0385166000908152600d602052604090205460ff165b15611613575060005b6000811561174957600080600e60039054906101000a90046001600160a01b03166001600160a01b031663949b22ae6040518163ffffffff1660e01b81526004016040805180830381865afa158015611670573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116949190611f2a565b6001600160a01b038a16600090815260076020526040902054919350915060ff1680156116c15750600081115b156116e35760646116d28289611e43565b6116dc9190611e5a565b9250611729565b6001600160a01b03891660009081526007602052604090205460ff16801561170b5750600082115b1561172957606461171c8389611e43565b6117269190611e5a565b92505b821561173a5761173a893085611835565b6117448388611e7c565b965050505b611754878787611835565b50505050505050565b6117686005826119a9565b6040516001600160a01b038216907f26b6063d78aefcf96f02ff06bc9822b5a623278253add7fffa5fb453db39981090600090a250565b6001600160a01b038216600081815260076020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6117fe600582610e93565b6040516001600160a01b038216907f3f5f1db80208f0d453083a86e16909cecc1e95e2618d5d927c93ace22b8200fc90600090a250565b6001600160a01b03831661185b5760405162461bcd60e51b815260040161075390611ea2565b6001600160a01b0382166118815760405162461bcd60e51b815260040161075390611ee7565b6001600160a01b038316600090815260208190526040902054818110156118f95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610753565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112a565b306000908152602081905260408120549081900361197a5750565b600954611988906014611e43565b8111156119a05760095461199d906014611e43565b90505b610c8a81611a2b565b6119b38282610f0f565b611a095760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b6064820152608401610753565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a6057611a60611f4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ade573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b029190611f64565b81600181518110611b1557611b15611f4e565b60200260200101906001600160a01b031690816001600160a01b031681525050611b60307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f92565b600e5460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611bc392879260009288926301000000909204909116904290600401611f81565b600060405180830381600087803b158015611bdd57600080fd5b505af1158015611bf1573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c2657858101830151858201604001528201611c0a565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c8a57600080fd5b60008060408385031215611c6f57600080fd5b8235611c7a81611c47565b946020939093013593505050565b600060208284031215611c9a57600080fd5b8135611ca581611c47565b9392505050565b600060208284031215611cbe57600080fd5b5035919050565b600080600060608486031215611cda57600080fd5b8335611ce581611c47565b92506020840135611cf581611c47565b929592945050506040919091013590565b60008060408385031215611d1957600080fd5b8235611d2481611c47565b91506020830135611d3481611c47565b809150509250929050565b80358015158114611d4f57600080fd5b919050565b60008060408385031215611d6757600080fd5b8235611d7281611c47565b9150611d8060208401611d3f565b90509250929050565b600060208284031215611d9b57600080fd5b611ca582611d3f565b6020808252602f908201527f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060408201526e746865204d696e74657220726f6c6560881b606082015260800190565b600181811c90821680611e0757607f821691505b602082108103611e2757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761081557610815611e2d565b600082611e7757634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561081557610815611e2d565b8082018082111561081557610815611e2d565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008060408385031215611f3d57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f7657600080fd5b8151611ca581611c47565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fd15784516001600160a01b031683529383019391830191600101611fac565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203b409e42656c7c180777f716ea5bfc6cd08b32376ed613a6925e79d3c6ca3f5564736f6c63430008110033

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.