ETH Price: $2,459.06 (-4.59%)

Token

The Art Of Meme (AOM)
 

Overview

Max Total Supply

1,000,000 AOM

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.014983508215667691 AOM

Value
$0.00
0xc0fbc08dfae399736b2A9Ceb20A7C7cD29B3D59d
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:
TheArtOfMeme

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

“The supreme Art Of Meme is to subdue the enemy without fighting.”

https://twitter.com/artofmemeeth
https://medium.com/@artofmeme

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma experimental ABIEncoderV2;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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

    mapping (address => bool) public bots;

    bool private swapping;

    address public devWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("The Art Of Meme", "AOM") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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


        uint256 _buyDevFee = 5;
        uint256 _buyLiquidityFee = 5;

        uint256 _sellDevFee = 20;
        uint256 _sellLiquidityFee = 20;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 20 / 1000; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0xD287F35288756b26AD600A0bFeC251D45A7212a4);

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(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;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external returns (bool) {
        require(msg.sender == owner() || msg.sender == devWallet, "Not authorised");
        limitsInEffect = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external {
        require(msg.sender == owner() || msg.sender == devWallet, "Not authorised");
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 6, "Must keep fees at 6% or less");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external {
        require(msg.sender == owner() || msg.sender == devWallet, "Not authorised");
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 6, "Must keep fees at 6% or less");
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


    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");
        require(!bots[from] && !bots[to]);

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                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 &&
            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;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

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

            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] = WETH;

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

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

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

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

        swapTokensForETH(contractBalance);
    }

    function addBots(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function delBots(address[] memory notbot) public {
        require(msg.sender == owner() || msg.sender == devWallet, "Not authorised");
        for (uint i = 0; i < notbot.length; i++) {
            bots[notbot[i]] = false;
        }
    }

}

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":"devWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","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"}]

60c0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055600c805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280600f81526020016e54686520417274204f66204d656d6560881b81525060405180604001604052806003815260200162414f4d60e81b81525081600390816200009c919062000687565b506004620000ab828262000687565b505050620000c8620000c26200037f60201b60201c565b62000383565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ea816001620003d5565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000135573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015b919062000753565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d3919062000753565b6001600160a01b031660a0819052620001ee906001620003d5565b60058060148069d3c21bcecceda10000006103e86200020e82846200079b565b6200021a9190620007bb565b6009556103e86200022d8260146200079b565b620002399190620007bb565b600b556127106200024c8260056200079b565b620002589190620007bb565b600a55600e859055600f849055620002718486620007de565b600d55601183905560128290556200028a8284620007de565b60105560088054610100600160a81b03191674d287f35288756b26ad600a0bfec251d45a7212a400179055620002d4620002cc6005546001600160a01b031690565b60016200044f565b600854620002f29061010090046001600160a01b031660016200044f565b620002ff3060016200044f565b6200030e61dead60016200044f565b6200032d620003256005546001600160a01b031690565b6001620003d5565b6008546200034b9061010090046001600160a01b03166001620003d5565b62000358306001620003d5565b6200036761dead6001620003d5565b620003733382620004f9565b505050505050620007f4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004245760405162461bcd60e51b8152602060048201819052602482015260008051602062002acb83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200049a5760405162461bcd60e51b8152602060048201819052602482015260008051602062002acb83398151915260448201526064016200041b565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005515760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200041b565b8060026000828254620005659190620007de565b90915550506001600160a01b0382166000908152602081905260408120805483929062000594908490620007de565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060e57607f821691505b6020821081036200062f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005de57600081815260208120601f850160051c810160208610156200065e5750805b601f850160051c820191505b818110156200067f578281556001016200066a565b505050505050565b81516001600160401b03811115620006a357620006a3620005e3565b620006bb81620006b48454620005f9565b8462000635565b602080601f831160018114620006f35760008415620006da5750858301515b600019600386901b1c1916600185901b1785556200067f565b600085815260208120601f198616915b82811015620007245788860151825594840194600190910190840162000703565b5085821015620007435787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076657600080fd5b81516001600160a01b03811681146200077e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007b557620007b562000785565b92915050565b600082620007d957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007b557620007b562000785565b60805160a0516122806200084b6000396000818161045e015281816115850152818161178f0152818161188f0152818161193801526119f201526000818161034101528181611cd60152611d1501526122806000f3fe6080604052600436106102765760003560e01c80638a8c523c1161014f578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e1461079d578063e2f45605146107e3578063f11a24d3146107f9578063f2fde38b1461080f578063f63743421461082f578063f8b45b051461084557600080fd5b8063c0246668146106f1578063c18bc19514610711578063c8c8ebe414610731578063d257b34f14610747578063d34628cc14610767578063d85ba0631461078757600080fd5b80639c3b4fdc116101135780639c3b4fdc14610636578063a0d82dc51461064c578063a9059cbb14610662578063ad5c464814610682578063bbc0c742146106a2578063bfd79284146106c157600080fd5b80638a8c523c146105a95780638da5cb5b146105be5780638ea5220f146105dc578063924de9b71461060157806395d89b411461062157600080fd5b806331c2d847116101e85780636a486a8e116101ac5780636a486a8e146104f35780636ddd17131461050957806370a0823114610529578063715018a61461055f578063751039fc146105745780637571336a1461058957600080fd5b806331c2d8471461042c57806349bd5a5e1461044c5780634a62bb65146104805780634fbee1931461049a57806366ca9b83146104d357600080fd5b806318160ddd1161023a57806318160ddd1461037b5780631816467f1461039a578063203e727e146103ba57806323b872dd146103da57806327c8f835146103fa578063313ce5671461041057600080fd5b806302dbd8f81461028257806306fdde03146102a4578063095ea7b3146102cf57806310d5de53146102ff5780631694505e1461032f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004611d92565b61085b565b005b3480156102b057600080fd5b506102b9610915565b6040516102c69190611db4565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004611e19565b6109a7565b60405190151581526020016102c6565b34801561030b57600080fd5b506102ef61031a366004611e43565b60146020526000908152604090205460ff1681565b34801561033b57600080fd5b506103637f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c6565b34801561038757600080fd5b506002545b6040519081526020016102c6565b3480156103a657600080fd5b506102a26103b5366004611e43565b6109be565b3480156103c657600080fd5b506102a26103d5366004611e5e565b610a50565b3480156103e657600080fd5b506102ef6103f5366004611e77565b610b2d565b34801561040657600080fd5b5061036361dead81565b34801561041c57600080fd5b50604051601281526020016102c6565b34801561043857600080fd5b506102a2610447366004611ec9565b610bd7565b34801561045857600080fd5b506103637f000000000000000000000000000000000000000000000000000000000000000081565b34801561048c57600080fd5b50600c546102ef9060ff1681565b3480156104a657600080fd5b506102ef6104b5366004611e43565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104df57600080fd5b506102a26104ee366004611d92565b610c83565b3480156104ff57600080fd5b5061038c60105481565b34801561051557600080fd5b50600c546102ef9062010000900460ff1681565b34801561053557600080fd5b5061038c610544366004611e43565b6001600160a01b031660009081526020819052604090205490565b34801561056b57600080fd5b506102a2610d30565b34801561058057600080fd5b506102ef610d66565b34801561059557600080fd5b506102a26105a4366004611f9e565b610dd4565b3480156105b557600080fd5b506102a2610e29565b3480156105ca57600080fd5b506005546001600160a01b0316610363565b3480156105e857600080fd5b506008546103639061010090046001600160a01b031681565b34801561060d57600080fd5b506102a261061c366004611fd1565b610e66565b34801561062d57600080fd5b506102b9610eac565b34801561064257600080fd5b5061038c600e5481565b34801561065857600080fd5b5061038c60115481565b34801561066e57600080fd5b506102ef61067d366004611e19565b610ebb565b34801561068e57600080fd5b50600654610363906001600160a01b031681565b3480156106ae57600080fd5b50600c546102ef90610100900460ff1681565b3480156106cd57600080fd5b506102ef6106dc366004611e43565b60076020526000908152604090205460ff1681565b3480156106fd57600080fd5b506102a261070c366004611f9e565b610ec8565b34801561071d57600080fd5b506102a261072c366004611e5e565b610f51565b34801561073d57600080fd5b5061038c60095481565b34801561075357600080fd5b506102ef610762366004611e5e565b611022565b34801561077357600080fd5b506102a2610782366004611ec9565b611179565b34801561079357600080fd5b5061038c600d5481565b3480156107a957600080fd5b5061038c6107b8366004611fec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107ef57600080fd5b5061038c600a5481565b34801561080557600080fd5b5061038c600f5481565b34801561081b57600080fd5b506102a261082a366004611e43565b61120b565b34801561083b57600080fd5b5061038c60125481565b34801561085157600080fd5b5061038c600b5481565b6005546001600160a01b0316331480610883575060085461010090046001600160a01b031633145b6108a85760405162461bcd60e51b815260040161089f90612016565b60405180910390fd5b601182905560128190556108bc8183612054565b6010819055600610156109115760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161089f565b5050565b60606003805461092490612067565b80601f016020809104026020016040519081016040528092919081815260200182805461095090612067565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b43384846112a6565b5060015b92915050565b6005546001600160a01b031633146109e85760405162461bcd60e51b815260040161089f906120a1565b6008546040516001600160a01b036101009092048216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610a7a5760405162461bcd60e51b815260040161089f906120a1565b670de0b6b3a76400006103e8610a8f60025490565b610a9a9060016120d6565b610aa491906120ed565b610aae91906120ed565b811015610b155760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161089f565b610b2781670de0b6b3a76400006120d6565b60095550565b6000610b3a8484846113ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bbf5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161089f565b610bcc85338584036112a6565b506001949350505050565b6005546001600160a01b0316331480610bff575060085461010090046001600160a01b031633145b610c1b5760405162461bcd60e51b815260040161089f90612016565b60005b815181101561091157600060076000848481518110610c3f57610c3f61210f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c7b81612125565b915050610c1e565b6005546001600160a01b0316331480610cab575060085461010090046001600160a01b031633145b610cc75760405162461bcd60e51b815260040161089f90612016565b600e829055600f819055610cdb8183612054565b600d819055600610156109115760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161089f565b6005546001600160a01b03163314610d5a5760405162461bcd60e51b815260040161089f906120a1565b610d646000611a3a565b565b6000610d7a6005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161480610da8575060085461010090046001600160a01b031633145b610dc45760405162461bcd60e51b815260040161089f90612016565b50600c805460ff19169055600190565b6005546001600160a01b03163314610dfe5760405162461bcd60e51b815260040161089f906120a1565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e535760405162461bcd60e51b815260040161089f906120a1565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610e905760405162461bcd60e51b815260040161089f906120a1565b600c8054911515620100000262ff000019909216919091179055565b60606004805461092490612067565b60006109b43384846113ca565b6005546001600160a01b03163314610ef25760405162461bcd60e51b815260040161089f906120a1565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f7b5760405162461bcd60e51b815260040161089f906120a1565b670de0b6b3a76400006103e8610f9060025490565b610f9b9060056120d6565b610fa591906120ed565b610faf91906120ed565b81101561100a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161089f565b61101c81670de0b6b3a76400006120d6565b600b5550565b6005546000906001600160a01b0316331461104f5760405162461bcd60e51b815260040161089f906120a1565b620186a061105c60025490565b6110679060016120d6565b61107191906120ed565b8210156110de5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161089f565b6103e86110ea60025490565b6110f59060056120d6565b6110ff91906120ed565b82111561116b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161089f565b50600a81905560015b919050565b6005546001600160a01b031633146111a35760405162461bcd60e51b815260040161089f906120a1565b60005b8151811015610911576001600760008484815181106111c7576111c761210f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061120381612125565b9150506111a6565b6005546001600160a01b031633146112355760405162461bcd60e51b815260040161089f906120a1565b6001600160a01b03811661129a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089f565b6112a381611a3a565b50565b6001600160a01b0383166113085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161089f565b6001600160a01b0382166113695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161089f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113f05760405162461bcd60e51b815260040161089f9061213e565b6001600160a01b0382166114165760405162461bcd60e51b815260040161089f90612183565b6001600160a01b03831660009081526007602052604090205460ff1615801561145857506001600160a01b03821660009081526007602052604090205460ff16155b61146157600080fd5b8060000361147a5761147583836000611a8c565b505050565b600c5460ff161561174b576005546001600160a01b038481169116148015906114b157506005546001600160a01b03838116911614155b80156114c557506001600160a01b03821615155b80156114dc57506001600160a01b03821661dead14155b80156114eb575060085460ff16155b1561174b57600c54610100900460ff16611583576001600160a01b03831660009081526013602052604090205460ff168061153e57506001600160a01b03821660009081526013602052604090205460ff165b6115835760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161089f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156115dd57506001600160a01b03821660009081526014602052604090205460ff16155b156116c1576009548111156116525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161089f565b600b546001600160a01b0383166000908152602081905260409020546116789083612054565b11156116bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161089f565b61174b565b6001600160a01b03821660009081526014602052604090205460ff1661174b57600b546001600160a01b0383166000908152602081905260409020546117079083612054565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161089f565b30600090815260208190526040902054600a54811080159081906117775750600c5462010000900460ff165b8015611786575060085460ff16155b80156117c357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156117e857506001600160a01b03851660009081526013602052604090205460ff16155b801561180d57506001600160a01b03841660009081526013602052604090205460ff16155b15611832576008805460ff19166001179055611827611be1565b6008805460ff191690555b6008546001600160a01b03861660009081526013602052604090205460ff9182161591168061187957506001600160a01b03851660009081526013602052604090205460ff165b15611882575060005b60008060008315611a24577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156118d057506000601054115b15611936576118f560646118ef6010548a611c2b90919063ffffffff16565b90611c3e565b92506010546012548461190891906120d6565b61191291906120ed565b91506010546011548461192591906120d6565b61192f91906120ed565b90506119d5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561197957506000600d54115b156119d55761199860646118ef600d548a611c2b90919063ffffffff16565b9250600d54600f54846119ab91906120d6565b6119b591906120ed565b9150600d54600e54846119c891906120d6565b6119d291906120ed565b90505b82156119e6576119e6893085611a8c565b8115611a1757611a17307f000000000000000000000000000000000000000000000000000000000000000084611a8c565b611a2183886121c6565b96505b611a2f898989611a8c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611ab25760405162461bcd60e51b815260040161089f9061213e565b6001600160a01b038216611ad85760405162461bcd60e51b815260040161089f90612183565b6001600160a01b03831660009081526020819052604090205481811015611b505760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161089f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b87908490612054565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bd391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611bfc5750565b600a54611c0a9060146120d6565b811115611c2257600a54611c1f9060146120d6565b90505b6112a381611c4a565b6000611c3782846120d6565b9392505050565b6000611c3782846120ed565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c7f57611c7f61210f565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611cb057611cb061210f565b60200260200101906001600160a01b031690816001600160a01b031681525050611cfb307f0000000000000000000000000000000000000000000000000000000000000000846112a6565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611d5c92879260009288926101009092049091169042906004016121d9565b600060405180830381600087803b158015611d7657600080fd5b505af1158015611d8a573d6000803e3d6000fd5b505050505050565b60008060408385031215611da557600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611de157858101830151858201604001528201611dc5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461117457600080fd5b60008060408385031215611e2c57600080fd5b611e3583611e02565b946020939093013593505050565b600060208284031215611e5557600080fd5b611c3782611e02565b600060208284031215611e7057600080fd5b5035919050565b600080600060608486031215611e8c57600080fd5b611e9584611e02565b9250611ea360208501611e02565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611edc57600080fd5b823567ffffffffffffffff80821115611ef457600080fd5b818501915085601f830112611f0857600080fd5b813581811115611f1a57611f1a611eb3565b8060051b604051601f19603f83011681018181108582111715611f3f57611f3f611eb3565b604052918252848201925083810185019188831115611f5d57600080fd5b938501935b82851015611f8257611f7385611e02565b84529385019392850192611f62565b98975050505050505050565b8035801515811461117457600080fd5b60008060408385031215611fb157600080fd5b611fba83611e02565b9150611fc860208401611f8e565b90509250929050565b600060208284031215611fe357600080fd5b611c3782611f8e565b60008060408385031215611fff57600080fd5b61200883611e02565b9150611fc860208401611e02565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5cd95960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109b8576109b861203e565b600181811c9082168061207b57607f821691505b60208210810361209b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176109b8576109b861203e565b60008261210a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016121375761213761203e565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109b8576109b861203e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122295784516001600160a01b031683529383019391830191600101612204565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206a73f570b32f4c502073c4e2393ae658777399ef852c786b0b6a7ddb8a7a5cb864736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102765760003560e01c80638a8c523c1161014f578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e1461079d578063e2f45605146107e3578063f11a24d3146107f9578063f2fde38b1461080f578063f63743421461082f578063f8b45b051461084557600080fd5b8063c0246668146106f1578063c18bc19514610711578063c8c8ebe414610731578063d257b34f14610747578063d34628cc14610767578063d85ba0631461078757600080fd5b80639c3b4fdc116101135780639c3b4fdc14610636578063a0d82dc51461064c578063a9059cbb14610662578063ad5c464814610682578063bbc0c742146106a2578063bfd79284146106c157600080fd5b80638a8c523c146105a95780638da5cb5b146105be5780638ea5220f146105dc578063924de9b71461060157806395d89b411461062157600080fd5b806331c2d847116101e85780636a486a8e116101ac5780636a486a8e146104f35780636ddd17131461050957806370a0823114610529578063715018a61461055f578063751039fc146105745780637571336a1461058957600080fd5b806331c2d8471461042c57806349bd5a5e1461044c5780634a62bb65146104805780634fbee1931461049a57806366ca9b83146104d357600080fd5b806318160ddd1161023a57806318160ddd1461037b5780631816467f1461039a578063203e727e146103ba57806323b872dd146103da57806327c8f835146103fa578063313ce5671461041057600080fd5b806302dbd8f81461028257806306fdde03146102a4578063095ea7b3146102cf57806310d5de53146102ff5780631694505e1461032f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d366004611d92565b61085b565b005b3480156102b057600080fd5b506102b9610915565b6040516102c69190611db4565b60405180910390f35b3480156102db57600080fd5b506102ef6102ea366004611e19565b6109a7565b60405190151581526020016102c6565b34801561030b57600080fd5b506102ef61031a366004611e43565b60146020526000908152604090205460ff1681565b34801561033b57600080fd5b506103637f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c6565b34801561038757600080fd5b506002545b6040519081526020016102c6565b3480156103a657600080fd5b506102a26103b5366004611e43565b6109be565b3480156103c657600080fd5b506102a26103d5366004611e5e565b610a50565b3480156103e657600080fd5b506102ef6103f5366004611e77565b610b2d565b34801561040657600080fd5b5061036361dead81565b34801561041c57600080fd5b50604051601281526020016102c6565b34801561043857600080fd5b506102a2610447366004611ec9565b610bd7565b34801561045857600080fd5b506103637f00000000000000000000000015ed0181360de06bdf16daf09e58f523192c81ea81565b34801561048c57600080fd5b50600c546102ef9060ff1681565b3480156104a657600080fd5b506102ef6104b5366004611e43565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104df57600080fd5b506102a26104ee366004611d92565b610c83565b3480156104ff57600080fd5b5061038c60105481565b34801561051557600080fd5b50600c546102ef9062010000900460ff1681565b34801561053557600080fd5b5061038c610544366004611e43565b6001600160a01b031660009081526020819052604090205490565b34801561056b57600080fd5b506102a2610d30565b34801561058057600080fd5b506102ef610d66565b34801561059557600080fd5b506102a26105a4366004611f9e565b610dd4565b3480156105b557600080fd5b506102a2610e29565b3480156105ca57600080fd5b506005546001600160a01b0316610363565b3480156105e857600080fd5b506008546103639061010090046001600160a01b031681565b34801561060d57600080fd5b506102a261061c366004611fd1565b610e66565b34801561062d57600080fd5b506102b9610eac565b34801561064257600080fd5b5061038c600e5481565b34801561065857600080fd5b5061038c60115481565b34801561066e57600080fd5b506102ef61067d366004611e19565b610ebb565b34801561068e57600080fd5b50600654610363906001600160a01b031681565b3480156106ae57600080fd5b50600c546102ef90610100900460ff1681565b3480156106cd57600080fd5b506102ef6106dc366004611e43565b60076020526000908152604090205460ff1681565b3480156106fd57600080fd5b506102a261070c366004611f9e565b610ec8565b34801561071d57600080fd5b506102a261072c366004611e5e565b610f51565b34801561073d57600080fd5b5061038c60095481565b34801561075357600080fd5b506102ef610762366004611e5e565b611022565b34801561077357600080fd5b506102a2610782366004611ec9565b611179565b34801561079357600080fd5b5061038c600d5481565b3480156107a957600080fd5b5061038c6107b8366004611fec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107ef57600080fd5b5061038c600a5481565b34801561080557600080fd5b5061038c600f5481565b34801561081b57600080fd5b506102a261082a366004611e43565b61120b565b34801561083b57600080fd5b5061038c60125481565b34801561085157600080fd5b5061038c600b5481565b6005546001600160a01b0316331480610883575060085461010090046001600160a01b031633145b6108a85760405162461bcd60e51b815260040161089f90612016565b60405180910390fd5b601182905560128190556108bc8183612054565b6010819055600610156109115760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161089f565b5050565b60606003805461092490612067565b80601f016020809104026020016040519081016040528092919081815260200182805461095090612067565b801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b5050505050905090565b60006109b43384846112a6565b5060015b92915050565b6005546001600160a01b031633146109e85760405162461bcd60e51b815260040161089f906120a1565b6008546040516001600160a01b036101009092048216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610a7a5760405162461bcd60e51b815260040161089f906120a1565b670de0b6b3a76400006103e8610a8f60025490565b610a9a9060016120d6565b610aa491906120ed565b610aae91906120ed565b811015610b155760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161089f565b610b2781670de0b6b3a76400006120d6565b60095550565b6000610b3a8484846113ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bbf5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161089f565b610bcc85338584036112a6565b506001949350505050565b6005546001600160a01b0316331480610bff575060085461010090046001600160a01b031633145b610c1b5760405162461bcd60e51b815260040161089f90612016565b60005b815181101561091157600060076000848481518110610c3f57610c3f61210f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c7b81612125565b915050610c1e565b6005546001600160a01b0316331480610cab575060085461010090046001600160a01b031633145b610cc75760405162461bcd60e51b815260040161089f90612016565b600e829055600f819055610cdb8183612054565b600d819055600610156109115760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c65737300000000604482015260640161089f565b6005546001600160a01b03163314610d5a5760405162461bcd60e51b815260040161089f906120a1565b610d646000611a3a565b565b6000610d7a6005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161480610da8575060085461010090046001600160a01b031633145b610dc45760405162461bcd60e51b815260040161089f90612016565b50600c805460ff19169055600190565b6005546001600160a01b03163314610dfe5760405162461bcd60e51b815260040161089f906120a1565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e535760405162461bcd60e51b815260040161089f906120a1565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610e905760405162461bcd60e51b815260040161089f906120a1565b600c8054911515620100000262ff000019909216919091179055565b60606004805461092490612067565b60006109b43384846113ca565b6005546001600160a01b03163314610ef25760405162461bcd60e51b815260040161089f906120a1565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f7b5760405162461bcd60e51b815260040161089f906120a1565b670de0b6b3a76400006103e8610f9060025490565b610f9b9060056120d6565b610fa591906120ed565b610faf91906120ed565b81101561100a5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161089f565b61101c81670de0b6b3a76400006120d6565b600b5550565b6005546000906001600160a01b0316331461104f5760405162461bcd60e51b815260040161089f906120a1565b620186a061105c60025490565b6110679060016120d6565b61107191906120ed565b8210156110de5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161089f565b6103e86110ea60025490565b6110f59060056120d6565b6110ff91906120ed565b82111561116b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161089f565b50600a81905560015b919050565b6005546001600160a01b031633146111a35760405162461bcd60e51b815260040161089f906120a1565b60005b8151811015610911576001600760008484815181106111c7576111c761210f565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061120381612125565b9150506111a6565b6005546001600160a01b031633146112355760405162461bcd60e51b815260040161089f906120a1565b6001600160a01b03811661129a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089f565b6112a381611a3a565b50565b6001600160a01b0383166113085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161089f565b6001600160a01b0382166113695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161089f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113f05760405162461bcd60e51b815260040161089f9061213e565b6001600160a01b0382166114165760405162461bcd60e51b815260040161089f90612183565b6001600160a01b03831660009081526007602052604090205460ff1615801561145857506001600160a01b03821660009081526007602052604090205460ff16155b61146157600080fd5b8060000361147a5761147583836000611a8c565b505050565b600c5460ff161561174b576005546001600160a01b038481169116148015906114b157506005546001600160a01b03838116911614155b80156114c557506001600160a01b03821615155b80156114dc57506001600160a01b03821661dead14155b80156114eb575060085460ff16155b1561174b57600c54610100900460ff16611583576001600160a01b03831660009081526013602052604090205460ff168061153e57506001600160a01b03821660009081526013602052604090205460ff165b6115835760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161089f565b7f00000000000000000000000015ed0181360de06bdf16daf09e58f523192c81ea6001600160a01b0316836001600160a01b03161480156115dd57506001600160a01b03821660009081526014602052604090205460ff16155b156116c1576009548111156116525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161089f565b600b546001600160a01b0383166000908152602081905260409020546116789083612054565b11156116bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161089f565b61174b565b6001600160a01b03821660009081526014602052604090205460ff1661174b57600b546001600160a01b0383166000908152602081905260409020546117079083612054565b111561174b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161089f565b30600090815260208190526040902054600a54811080159081906117775750600c5462010000900460ff165b8015611786575060085460ff16155b80156117c357507f00000000000000000000000015ed0181360de06bdf16daf09e58f523192c81ea6001600160a01b0316846001600160a01b0316145b80156117e857506001600160a01b03851660009081526013602052604090205460ff16155b801561180d57506001600160a01b03841660009081526013602052604090205460ff16155b15611832576008805460ff19166001179055611827611be1565b6008805460ff191690555b6008546001600160a01b03861660009081526013602052604090205460ff9182161591168061187957506001600160a01b03851660009081526013602052604090205460ff165b15611882575060005b60008060008315611a24577f00000000000000000000000015ed0181360de06bdf16daf09e58f523192c81ea6001600160a01b0316886001600160a01b03161480156118d057506000601054115b15611936576118f560646118ef6010548a611c2b90919063ffffffff16565b90611c3e565b92506010546012548461190891906120d6565b61191291906120ed565b91506010546011548461192591906120d6565b61192f91906120ed565b90506119d5565b7f00000000000000000000000015ed0181360de06bdf16daf09e58f523192c81ea6001600160a01b0316896001600160a01b031614801561197957506000600d54115b156119d55761199860646118ef600d548a611c2b90919063ffffffff16565b9250600d54600f54846119ab91906120d6565b6119b591906120ed565b9150600d54600e54846119c891906120d6565b6119d291906120ed565b90505b82156119e6576119e6893085611a8c565b8115611a1757611a17307f00000000000000000000000015ed0181360de06bdf16daf09e58f523192c81ea84611a8c565b611a2183886121c6565b96505b611a2f898989611a8c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611ab25760405162461bcd60e51b815260040161089f9061213e565b6001600160a01b038216611ad85760405162461bcd60e51b815260040161089f90612183565b6001600160a01b03831660009081526020819052604090205481811015611b505760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161089f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b87908490612054565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bd391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611bfc5750565b600a54611c0a9060146120d6565b811115611c2257600a54611c1f9060146120d6565b90505b6112a381611c4a565b6000611c3782846120d6565b9392505050565b6000611c3782846120ed565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c7f57611c7f61210f565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611cb057611cb061210f565b60200260200101906001600160a01b031690816001600160a01b031681525050611cfb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112a6565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611d5c92879260009288926101009092049091169042906004016121d9565b600060405180830381600087803b158015611d7657600080fd5b505af1158015611d8a573d6000803e3d6000fd5b505050505050565b60008060408385031215611da557600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611de157858101830151858201604001528201611dc5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461117457600080fd5b60008060408385031215611e2c57600080fd5b611e3583611e02565b946020939093013593505050565b600060208284031215611e5557600080fd5b611c3782611e02565b600060208284031215611e7057600080fd5b5035919050565b600080600060608486031215611e8c57600080fd5b611e9584611e02565b9250611ea360208501611e02565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611edc57600080fd5b823567ffffffffffffffff80821115611ef457600080fd5b818501915085601f830112611f0857600080fd5b813581811115611f1a57611f1a611eb3565b8060051b604051601f19603f83011681018181108582111715611f3f57611f3f611eb3565b604052918252848201925083810185019188831115611f5d57600080fd5b938501935b82851015611f8257611f7385611e02565b84529385019392850192611f62565b98975050505050505050565b8035801515811461117457600080fd5b60008060408385031215611fb157600080fd5b611fba83611e02565b9150611fc860208401611f8e565b90509250929050565b600060208284031215611fe357600080fd5b611c3782611f8e565b60008060408385031215611fff57600080fd5b61200883611e02565b9150611fc860208401611e02565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5cd95960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109b8576109b861203e565b600181811c9082168061207b57607f821691505b60208210810361209b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176109b8576109b861203e565b60008261210a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016121375761213761203e565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109b8576109b861203e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122295784516001600160a01b031683529383019391830191600101612204565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206a73f570b32f4c502073c4e2393ae658777399ef852c786b0b6a7ddb8a7a5cb864736f6c63430008110033

Deployed Bytecode Sourcemap

23469:11562:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29031:392;;;;;;;;;;-1:-1:-1;29031:392:0;;;;;:::i;:::-;;:::i;:::-;;8325:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10492:169;;;;;;;;;;-1:-1:-1;10492:169:0;;;;;:::i;:::-;;:::i;:::-;;;1422:14:1;;1415:22;1397:41;;1385:2;1370:18;10492:169:0;1257:187:1;24482:63:0;;;;;;;;;;-1:-1:-1;24482:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23551:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1830:32:1;;;1812:51;;1800:2;1785:18;23551:51:0;1640:229:1;9445:108:0;;;;;;;;;;-1:-1:-1;9533:12:0;;9445:108;;;2020:25:1;;;2008:2;1993:18;9445:108:0;1874:177:1;29621:189:0;;;;;;;;;;-1:-1:-1;29621:189:0;;;;;:::i;:::-;;:::i;27720:275::-;;;;;;;;;;-1:-1:-1;27720:275:0;;;;;:::i;:::-;;:::i;11143:492::-;;;;;;;;;;-1:-1:-1;11143:492:0;;;;;:::i;:::-;;:::i;23654:53::-;;;;;;;;;;;;23700:6;23654:53;;9287:93;;;;;;;;;;-1:-1:-1;9287:93:0;;9370:2;2924:36:1;;2912:2;2897:18;9287:93:0;2782:184:1;34782:244:0;;;;;;;;;;-1:-1:-1;34782:244:0;;;;;:::i;:::-;;:::i;23609:38::-;;;;;;;;;;;;;;;24011:33;;;;;;;;;;-1:-1:-1;24011:33:0;;;;;;;;29820:126;;;;;;;;;;-1:-1:-1;29820:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29910:28:0;29886:4;29910:28;;;:19;:28;;;;;;;;;29820:126;28638:385;;;;;;;;;;-1:-1:-1;28638:385:0;;;;;:::i;:::-;;:::i;24235:28::-;;;;;;;;;;;;;;;;24091:31;;;;;;;;;;-1:-1:-1;24091:31:0;;;;;;;;;;;9616:127;;;;;;;;;;-1:-1:-1;9616:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9717:18:0;9690:7;9717:18;;;;;;;;;;;;9616:127;1560:103;;;;;;;;;;;;;:::i;26948:197::-;;;;;;;;;;;;;:::i;28267:167::-;;;;;;;;;;-1:-1:-1;28267:167:0;;;;;:::i;:::-;;:::i;26784:112::-;;;;;;;;;;;;;:::i;909:87::-;;;;;;;;;;-1:-1:-1;982:6:0;;-1:-1:-1;;;;;982:6:0;909:87;;23863:24;;;;;;;;;;-1:-1:-1;23863:24:0;;;;;;;-1:-1:-1;;;;;23863:24:0;;;28530:100;;;;;;;;;;-1:-1:-1;28530:100:0;;;;;:::i;:::-;;:::i;8544:104::-;;;;;;;;;;;;;:::i;24165:24::-;;;;;;;;;;;;;;;;24270:25;;;;;;;;;;;;;;;;9956:175;;;;;;;;;;-1:-1:-1;9956:175:0;;;;;:::i;:::-;;:::i;23714:64::-;;;;;;;;;;-1:-1:-1;23714:64:0;;;;-1:-1:-1;;;;;23714:64:0;;;24051:33;;;;;;;;;;-1:-1:-1;24051:33:0;;;;;;;;;;;23787:37;;;;;;;;;;-1:-1:-1;23787:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29431:182;;;;;;;;;;-1:-1:-1;29431:182:0;;;;;:::i;:::-;;:::i;28003:256::-;;;;;;;;;;-1:-1:-1;28003:256:0;;;;;:::i;:::-;;:::i;23896:35::-;;;;;;;;;;;;;;;;27215:497;;;;;;;;;;-1:-1:-1;27215:497:0;;;;;:::i;:::-;;:::i;34610:164::-;;;;;;;;;;-1:-1:-1;34610:164:0;;;;;:::i;:::-;;:::i;24131:27::-;;;;;;;;;;;;;;;;10194:151;;;;;;;;;;-1:-1:-1;10194:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10310:18:0;;;10283:7;10310:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10194:151;23938:33;;;;;;;;;;;;;;;;24196:30;;;;;;;;;;;;;;;;1818:201;;;;;;;;;;-1:-1:-1;1818:201:0;;;;;:::i;:::-;;:::i;24302:31::-;;;;;;;;;;;;;;;;23978:24;;;;;;;;;;;;;;;;29031:392;982:6;;-1:-1:-1;;;;;982:6:0;29148:10;:21;;:48;;-1:-1:-1;29187:9:0;;;;;-1:-1:-1;;;;;29187:9:0;29173:10;:23;29148:48;29140:75;;;;-1:-1:-1;;;29140:75:0;;;;;;;:::i;:::-;;;;;;;;;29226:10;:20;;;29257:16;:32;;;29316:29;29276:13;29239:7;29316:29;:::i;:::-;29300:13;:45;;;29381:1;-1:-1:-1;29364:18:0;29356:59;;;;-1:-1:-1;;;29356:59:0;;5910:2:1;29356:59:0;;;5892:21:1;5949:2;5929:18;;;5922:30;5988;5968:18;;;5961:58;6036:18;;29356:59:0;5708:352:1;29356:59:0;29031:392;;:::o;8325:100::-;8379:13;8412:5;8405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8325:100;:::o;10492:169::-;10575:4;10592:39;363:10;10615:7;10624:6;10592:8;:39::i;:::-;-1:-1:-1;10649:4:0;10492:169;;;;;:::o;29621:189::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;29757:9:::1;::::0;29726:41:::1;::::0;-1:-1:-1;;;;;29757:9:0::1;::::0;;::::1;::::0;::::1;::::0;29726:41;::::1;::::0;::::1;::::0;;;::::1;29778:9;:24:::0;;-1:-1:-1;;;;;29778:24:0;;::::1;;;-1:-1:-1::0;;;;;;29778:24:0;;::::1;::::0;;;::::1;::::0;;29621:189::o;27720:275::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;27857:4:::1;27849;27828:13;9533:12:::0;;;9445:108;27828:13:::1;:17;::::0;27844:1:::1;27828:17;:::i;:::-;27827:26;;;;:::i;:::-;27826:35;;;;:::i;:::-;27816:6;:45;;27794:142;;;::::0;-1:-1:-1;;;27794:142:0;;7408:2:1;27794:142:0::1;::::0;::::1;7390:21:1::0;7447:2;7427:18;;;7420:30;7486:34;7466:18;;;7459:62;-1:-1:-1;;;7537:18:1;;;7530:45;7592:19;;27794:142:0::1;7206:411:1::0;27794:142:0::1;27970:17;:6:::0;27980::::1;27970:17;:::i;:::-;27947:20;:40:::0;-1:-1:-1;27720:275:0:o;11143:492::-;11283:4;11300:36;11310:6;11318:9;11329:6;11300:9;:36::i;:::-;-1:-1:-1;;;;;11376:19:0;;11349:24;11376:19;;;:11;:19;;;;;;;;363:10;11376:33;;;;;;;;11428:26;;;;11420:79;;;;-1:-1:-1;;;11420:79:0;;7824:2:1;11420:79:0;;;7806:21:1;7863:2;7843:18;;;7836:30;7902:34;7882:18;;;7875:62;-1:-1:-1;;;7953:18:1;;;7946:38;8001:19;;11420:79:0;7622:404:1;11420:79:0;11535:57;11544:6;363:10;11585:6;11566:16;:25;11535:8;:57::i;:::-;-1:-1:-1;11623:4:0;;11143:492;-1:-1:-1;;;;11143:492:0:o;34782:244::-;982:6;;-1:-1:-1;;;;;982:6:0;34850:10;:21;;:48;;-1:-1:-1;34889:9:0;;;;;-1:-1:-1;;;;;34889:9:0;34875:10;:23;34850:48;34842:75;;;;-1:-1:-1;;;34842:75:0;;;;;;;:::i;:::-;34933:6;34928:91;34949:6;:13;34945:1;:17;34928:91;;;35002:5;34984:4;:15;34989:6;34996:1;34989:9;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;34984:15:0;;;;;;;;;;;-1:-1:-1;34984:15:0;:23;;-1:-1:-1;;34984:23:0;;;;;;;;;;34964:3;;;;:::i;:::-;;;;34928:91;;28638:385;982:6;;-1:-1:-1;;;;;982:6:0;28754:10;:21;;:48;;-1:-1:-1;28793:9:0;;;;;-1:-1:-1;;;;;28793:9:0;28779:10;:23;28754:48;28746:75;;;;-1:-1:-1;;;28746:75:0;;;;;;;:::i;:::-;28832:9;:19;;;28862:15;:31;;;28919:27;28880:13;28844:7;28919:27;:::i;:::-;28904:12;:42;;;28981:1;-1:-1:-1;28965:17:0;28957:58;;;;-1:-1:-1;;;28957:58:0;;5910:2:1;28957:58:0;;;5892:21:1;5949:2;5929:18;;;5922:30;5988;5968:18;;;5961:58;6036:18;;28957:58:0;5708:352:1;1560:103:0;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;1625:30:::1;1652:1;1625:18;:30::i;:::-;1560:103::o:0;26948:197::-;26990:4;27029:7;982:6;;-1:-1:-1;;;;;982:6:0;;909:87;27029:7;-1:-1:-1;;;;;27015:21:0;:10;-1:-1:-1;;;;;27015:21:0;;:48;;;-1:-1:-1;27054:9:0;;;;;-1:-1:-1;;;;;27054:9:0;27040:10;:23;27015:48;27007:75;;;;-1:-1:-1;;;27007:75:0;;;;;;;:::i;:::-;-1:-1:-1;27093:14:0;:22;;-1:-1:-1;;27093:22:0;;;;;26948:197::o;28267:167::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28380:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28380:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28267:167::o;26784:112::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;26839:13:::1;:20:::0;;-1:-1:-1;;26870:18:0;;;;;26784:112::o;28530:100::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;28601:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28601:21:0;;::::1;::::0;;;::::1;::::0;;28530:100::o;8544:104::-;8600:13;8633:7;8626:14;;;;;:::i;9956:175::-;10042:4;10059:42;363:10;10083:9;10094:6;10059:9;:42::i;29431:182::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29516:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29516:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29571:34;;1397:41:1;;;29571:34:0::1;::::0;1370:18:1;29571:34:0::1;;;;;;;29431:182:::0;;:::o;28003:256::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;28143:4:::1;28135;28114:13;9533:12:::0;;;9445:108;28114:13:::1;:17;::::0;28130:1:::1;28114:17;:::i;:::-;28113:26;;;;:::i;:::-;28112:35;;;;:::i;:::-;28102:6;:45;;28080:131;;;::::0;-1:-1:-1;;;28080:131:0;;8505:2:1;28080:131:0::1;::::0;::::1;8487:21:1::0;8544:2;8524:18;;;8517:30;8583:34;8563:18;;;8556:62;-1:-1:-1;;;8634:18:1;;;8627:34;8678:19;;28080:131:0::1;8303:400:1::0;28080:131:0::1;28234:17;:6:::0;28244::::1;28234:17;:::i;:::-;28222:9;:29:::0;-1:-1:-1;28003:256:0:o;27215:497::-;982:6;;27323:4;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;27402:6:::1;27381:13;9533:12:::0;;;9445:108;27381:13:::1;:17;::::0;27397:1:::1;27381:17;:::i;:::-;27380:28;;;;:::i;:::-;27367:9;:41;;27345:144;;;::::0;-1:-1:-1;;;27345:144:0;;8910:2:1;27345:144:0::1;::::0;::::1;8892:21:1::0;8949:2;8929:18;;;8922:30;8988:34;8968:18;;;8961:62;-1:-1:-1;;;9039:18:1;;;9032:51;9100:19;;27345:144:0::1;8708:417:1::0;27345:144:0::1;27557:4;27536:13;9533:12:::0;;;9445:108;27536:13:::1;:17;::::0;27552:1:::1;27536:17;:::i;:::-;27535:26;;;;:::i;:::-;27522:9;:39;;27500:141;;;::::0;-1:-1:-1;;;27500:141:0;;9332:2:1;27500:141:0::1;::::0;::::1;9314:21:1::0;9371:2;9351:18;;;9344:30;9410:34;9390:18;;;9383:62;-1:-1:-1;;;9461:18:1;;;9454:50;9521:19;;27500:141:0::1;9130:416:1::0;27500:141:0::1;-1:-1:-1::0;27652:18:0::1;:30:::0;;;27700:4:::1;1200:1;27215:497:::0;;;:::o;34610:164::-;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;34684:6:::1;34679:88;34700:5;:12;34696:1;:16;34679:88;;;34751:4;34734;:14;34739:5;34745:1;34739:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;34734:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;34734:14:0;:21;;-1:-1:-1;;34734:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34714:3;::::1;::::0;::::1;:::i;:::-;;;;34679:88;;1818:201:::0;982:6;;-1:-1:-1;;;;;982:6:0;363:10;1129:23;1121:68;;;;-1:-1:-1;;;1121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1907:22:0;::::1;1899:73;;;::::0;-1:-1:-1;;;1899:73:0;;9753:2:1;1899:73:0::1;::::0;::::1;9735:21:1::0;9792:2;9772:18;;;9765:30;9831:34;9811:18;;;9804:62;-1:-1:-1;;;9882:18:1;;;9875:36;9928:19;;1899:73:0::1;9551:402:1::0;1899:73:0::1;1983:28;2002:8;1983:18;:28::i;:::-;1818:201:::0;:::o;13984:380::-;-1:-1:-1;;;;;14120:19:0;;14112:68;;;;-1:-1:-1;;;14112:68:0;;10160:2:1;14112:68:0;;;10142:21:1;10199:2;10179:18;;;10172:30;10238:34;10218:18;;;10211:62;-1:-1:-1;;;10289:18:1;;;10282:34;10333:19;;14112:68:0;9958:400:1;14112:68:0;-1:-1:-1;;;;;14199:21:0;;14191:68;;;;-1:-1:-1;;;14191:68:0;;10565:2:1;14191:68:0;;;10547:21:1;10604:2;10584:18;;;10577:30;10643:34;10623:18;;;10616:62;-1:-1:-1;;;10694:18:1;;;10687:32;10736:19;;14191:68:0;10363:398:1;14191:68:0;-1:-1:-1;;;;;14272:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14324:32;;2020:25:1;;;14324:32:0;;1993:18:1;14324:32:0;;;;;;;13984:380;;;:::o;29954:3723::-;-1:-1:-1;;;;;30086:18:0;;30078:68;;;;-1:-1:-1;;;30078:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30165:16:0;;30157:64;;;;-1:-1:-1;;;30157:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30241:10:0;;;;;;:4;:10;;;;;;;;30240:11;:24;;;;-1:-1:-1;;;;;;30256:8:0;;;;;;:4;:8;;;;;;;;30255:9;30240:24;30232:33;;;;;;30282:6;30292:1;30282:11;30278:93;;30310:28;30326:4;30332:2;30336:1;30310:15;:28::i;:::-;29954:3723;;;:::o;30278:93::-;30387:14;;;;30383:1430;;;982:6;;-1:-1:-1;;;;;30440:15:0;;;982:6;;30440:15;;;;:49;;-1:-1:-1;982:6:0;;-1:-1:-1;;;;;30476:13:0;;;982:6;;30476:13;;30440:49;:86;;;;-1:-1:-1;;;;;;30510:16:0;;;;30440:86;:128;;;;-1:-1:-1;;;;;;30547:21:0;;30561:6;30547:21;;30440:128;:158;;;;-1:-1:-1;30590:8:0;;;;30589:9;30440:158;30418:1384;;;30638:13;;;;;;;30633:223;;-1:-1:-1;;;;;30710:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30739:23:0;;;;;;:19;:23;;;;;;;;30710:52;30676:160;;;;-1:-1:-1;;;30676:160:0;;11778:2:1;30676:160:0;;;11760:21:1;11817:2;11797:18;;;11790:30;-1:-1:-1;;;11836:18:1;;;11829:52;11898:18;;30676:160:0;11576:346:1;30676:160:0;31070:13;-1:-1:-1;;;;;31062:21:0;:4;-1:-1:-1;;;;;31062:21:0;;:82;;;;-1:-1:-1;;;;;;31109:35:0;;;;;;:31;:35;;;;;;;;31108:36;31062:82;31036:751;;;31231:20;;31221:6;:30;;31187:169;;;;-1:-1:-1;;;31187:169:0;;12129:2:1;31187:169:0;;;12111:21:1;12168:2;12148:18;;;12141:30;12207:34;12187:18;;;12180:62;-1:-1:-1;;;12258:18:1;;;12251:51;12319:19;;31187:169:0;11927:417:1;31187:169:0;31439:9;;-1:-1:-1;;;;;9717:18:0;;9690:7;9717:18;;;;;;;;;;;31413:22;;:6;:22;:::i;:::-;:35;;31379:140;;;;-1:-1:-1;;;31379:140:0;;12551:2:1;31379:140:0;;;12533:21:1;12590:2;12570:18;;;12563:30;-1:-1:-1;;;12609:18:1;;;12602:49;12668:18;;31379:140:0;12349:343:1;31379:140:0;31036:751;;;-1:-1:-1;;;;;31567:35:0;;;;;;:31;:35;;;;;;;;31562:225;;31687:9;;-1:-1:-1;;;;;9717:18:0;;9690:7;9717:18;;;;;;;;;;;31661:22;;:6;:22;:::i;:::-;:35;;31627:140;;;;-1:-1:-1;;;31627:140:0;;12551:2:1;31627:140:0;;;12533:21:1;12590:2;12570:18;;;12563:30;-1:-1:-1;;;12609:18:1;;;12602:49;12668:18;;31627:140:0;12349:343:1;31627:140:0;31874:4;31825:28;9717:18;;;;;;;;;;;31932;;31908:42;;;;;;;31981:35;;-1:-1:-1;32005:11:0;;;;;;;31981:35;:61;;;;-1:-1:-1;32034:8:0;;;;32033:9;31981:61;:97;;;;;32065:13;-1:-1:-1;;;;;32059:19:0;:2;-1:-1:-1;;;;;32059:19:0;;31981:97;:140;;;;-1:-1:-1;;;;;;32096:25:0;;;;;;:19;:25;;;;;;;;32095:26;31981:140;:181;;;;-1:-1:-1;;;;;;32139:23:0;;;;;;:19;:23;;;;;;;;32138:24;31981:181;31963:313;;;32189:8;:15;;-1:-1:-1;;32189:15:0;32200:4;32189:15;;;32221:10;:8;:10::i;:::-;32248:8;:16;;-1:-1:-1;;32248:16:0;;;31963:313;32304:8;;-1:-1:-1;;;;;32414:25:0;;32288:12;32414:25;;;:19;:25;;;;;;32304:8;;;;32303:9;;32414:25;;:52;;-1:-1:-1;;;;;;32443:23:0;;;;;;:19;:23;;;;;;;;32414:52;32410:100;;;-1:-1:-1;32493:5:0;32410:100;32522:12;32549:26;32590:20;32703:7;32699:925;;;32761:13;-1:-1:-1;;;;;32755:19:0;:2;-1:-1:-1;;;;;32755:19:0;;:40;;;;;32794:1;32778:13;;:17;32755:40;32751:583;;;32823:34;32853:3;32823:25;32834:13;;32823:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32816:41;;32925:13;;32905:16;;32898:4;:23;;;;:::i;:::-;32897:41;;;;:::i;:::-;32876:62;;32994:13;;32980:10;;32973:4;:17;;;;:::i;:::-;32972:35;;;;:::i;:::-;32957:50;;32751:583;;;33077:13;-1:-1:-1;;;;;33069:21:0;:4;-1:-1:-1;;;;;33069:21:0;;:41;;;;;33109:1;33094:12;;:16;33069:41;33065:269;;;33138:33;33167:3;33138:24;33149:12;;33138:6;:10;;:24;;;;:::i;:33::-;33131:40;;33238:12;;33219:15;;33212:4;:22;;;;:::i;:::-;33211:39;;;;:::i;:::-;33190:60;;33306:12;;33293:9;;33286:4;:16;;;;:::i;:::-;33285:33;;;;:::i;:::-;33270:48;;33065:269;33354:7;;33350:90;;33382:42;33398:4;33412;33419;33382:15;:42::i;:::-;33458:22;;33454:128;;33501:65;33525:4;33532:13;33547:18;33501:15;:65::i;:::-;33598:14;33608:4;33598:14;;:::i;:::-;;;32699:925;33636:33;33652:4;33658:2;33662:6;33636:15;:33::i;:::-;30067:3610;;;;;;29954:3723;;;:::o;2179:191::-;2272:6;;;-1:-1:-1;;;;;2289:17:0;;;-1:-1:-1;;;;;;2289:17:0;;;;;;;2322:40;;2272:6;;;2289:17;2272:6;;2322:40;;2253:16;;2322:40;2242:128;2179:191;:::o;12125:733::-;-1:-1:-1;;;;;12265:20:0;;12257:70;;;;-1:-1:-1;;;12257:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12346:23:0;;12338:71;;;;-1:-1:-1;;;12338:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12506:17:0;;12482:21;12506:17;;;;;;;;;;;12542:23;;;;12534:74;;;;-1:-1:-1;;;12534:74:0;;13032:2:1;12534:74:0;;;13014:21:1;13071:2;13051:18;;;13044:30;13110:34;13090:18;;;13083:62;-1:-1:-1;;;13161:18:1;;;13154:36;13207:19;;12534:74:0;12830:402:1;12534:74:0;-1:-1:-1;;;;;12644:17:0;;;:9;:17;;;;;;;;;;;12664:22;;;12644:42;;12708:20;;;;;;;;:30;;12680:6;;12644:9;12708:30;;12680:6;;12708:30;:::i;:::-;;;;;;;;12773:9;-1:-1:-1;;;;;12756:35:0;12765:6;-1:-1:-1;;;;;12756:35:0;;12784:6;12756:35;;;;2020:25:1;;2008:2;1993:18;;1874:177;12756:35:0;;;;;;;;12246:612;12125:733;;;:::o;34263:339::-;34346:4;34302:23;9717:18;;;;;;;;;;;;34367:20;;;34363:59;;34404:7;34263:339::o;34363:59::-;34456:18;;:23;;34477:2;34456:23;:::i;:::-;34438:15;:41;34434:115;;;34514:18;;:23;;34535:2;34514:23;:::i;:::-;34496:41;;34434:115;34561:33;34578:15;34561:16;:33::i;19437:98::-;19495:7;19522:5;19526:1;19522;:5;:::i;:::-;19515:12;19437:98;-1:-1:-1;;;19437:98:0:o;19836:::-;19894:7;19921:5;19925:1;19921;:5;:::i;33685:570::-;33835:16;;;33849:1;33835:16;;;;;;;;33811:21;;33835:16;;;;;;;;;;-1:-1:-1;33835:16:0;33811:40;;33880:4;33862;33867:1;33862:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33862:23:0;;;:7;;;;;;;;;:23;33906:4;;33896:7;;33906:4;;;33896;;33906;;33896:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33896:14:0;;;-1:-1:-1;;;;;33896:14:0;;;;;33923:62;33940:4;33955:15;33973:11;33923:8;:62::i;:::-;34197:9;;34024:223;;-1:-1:-1;;;34024:223:0;;-1:-1:-1;;;;;34024:15:0;:69;;;;;:223;;34108:11;;34134:1;;34178:4;;34197:9;;;;;;;;34221:15;;34024:223;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33740:515;33685:570;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:173::-;888:20;;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:254;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1166:29;1185:9;1166:29;:::i;:::-;1156:39;1242:2;1227:18;;;;1214:32;;-1:-1:-1;;;998:254:1:o;1449:186::-;1508:6;1561:2;1549:9;1540:7;1536:23;1532:32;1529:52;;;1577:1;1574;1567:12;1529:52;1600:29;1619:9;1600:29;:::i;2056:180::-;2115:6;2168:2;2156:9;2147:7;2143:23;2139:32;2136:52;;;2184:1;2181;2174:12;2136:52;-1:-1:-1;2207:23:1;;2056:180;-1:-1:-1;2056:180:1:o;2241:328::-;2318:6;2326;2334;2387:2;2375:9;2366:7;2362:23;2358:32;2355:52;;;2403:1;2400;2393:12;2355:52;2426:29;2445:9;2426:29;:::i;:::-;2416:39;;2474:38;2508:2;2497:9;2493:18;2474:38;:::i;:::-;2464:48;;2559:2;2548:9;2544:18;2531:32;2521:42;;2241:328;;;;;:::o;2971:127::-;3032:10;3027:3;3023:20;3020:1;3013:31;3063:4;3060:1;3053:15;3087:4;3084:1;3077:15;3103:1121;3187:6;3218:2;3261;3249:9;3240:7;3236:23;3232:32;3229:52;;;3277:1;3274;3267:12;3229:52;3317:9;3304:23;3346:18;3387:2;3379:6;3376:14;3373:34;;;3403:1;3400;3393:12;3373:34;3441:6;3430:9;3426:22;3416:32;;3486:7;3479:4;3475:2;3471:13;3467:27;3457:55;;3508:1;3505;3498:12;3457:55;3544:2;3531:16;3566:2;3562;3559:10;3556:36;;;3572:18;;:::i;:::-;3618:2;3615:1;3611:10;3650:2;3644:9;3713:2;3709:7;3704:2;3700;3696:11;3692:25;3684:6;3680:38;3768:6;3756:10;3753:22;3748:2;3736:10;3733:18;3730:46;3727:72;;;3779:18;;:::i;:::-;3815:2;3808:22;3865:18;;;3899:15;;;;-1:-1:-1;3941:11:1;;;3937:20;;;3969:19;;;3966:39;;;4001:1;3998;3991:12;3966:39;4025:11;;;;4045:148;4061:6;4056:3;4053:15;4045:148;;;4127:23;4146:3;4127:23;:::i;:::-;4115:36;;4078:12;;;;4171;;;;4045:148;;;4212:6;3103:1121;-1:-1:-1;;;;;;;;3103:1121:1:o;4229:160::-;4294:20;;4350:13;;4343:21;4333:32;;4323:60;;4379:1;4376;4369:12;4394:254;4459:6;4467;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4559:29;4578:9;4559:29;:::i;:::-;4549:39;;4607:35;4638:2;4627:9;4623:18;4607:35;:::i;:::-;4597:45;;4394:254;;;;;:::o;4653:180::-;4709:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4801:26;4817:9;4801:26;:::i;4838:260::-;4906:6;4914;4967:2;4955:9;4946:7;4942:23;4938:32;4935:52;;;4983:1;4980;4973:12;4935:52;5006:29;5025:9;5006:29;:::i;:::-;4996:39;;5054:38;5088:2;5077:9;5073:18;5054:38;:::i;5103:338::-;5305:2;5287:21;;;5344:2;5324:18;;;5317:30;-1:-1:-1;;;5378:2:1;5363:18;;5356:44;5432:2;5417:18;;5103:338::o;5446:127::-;5507:10;5502:3;5498:20;5495:1;5488:31;5538:4;5535:1;5528:15;5562:4;5559:1;5552:15;5578:125;5643:9;;;5664:10;;;5661:36;;;5677:18;;:::i;6065:380::-;6144:1;6140:12;;;;6187;;;6208:61;;6262:4;6254:6;6250:17;6240:27;;6208:61;6315:2;6307:6;6304:14;6284:18;6281:38;6278:161;;6361:10;6356:3;6352:20;6349:1;6342:31;6396:4;6393:1;6386:15;6424:4;6421:1;6414:15;6278:161;;6065:380;;;:::o;6450:356::-;6652:2;6634:21;;;6671:18;;;6664:30;6730:34;6725:2;6710:18;;6703:62;6797:2;6782:18;;6450:356::o;6811:168::-;6884:9;;;6915;;6932:15;;;6926:22;;6912:37;6902:71;;6953:18;;:::i;6984:217::-;7024:1;7050;7040:132;;7094:10;7089:3;7085:20;7082:1;7075:31;7129:4;7126:1;7119:15;7157:4;7154:1;7147:15;7040:132;-1:-1:-1;7186:9:1;;6984:217::o;8031:127::-;8092:10;8087:3;8083:20;8080:1;8073:31;8123:4;8120:1;8113:15;8147:4;8144:1;8137:15;8163:135;8202:3;8223:17;;;8220:43;;8243:18;;:::i;:::-;-1:-1:-1;8290:1:1;8279:13;;8163:135::o;10766:401::-;10968:2;10950:21;;;11007:2;10987:18;;;10980:30;11046:34;11041:2;11026:18;;11019:62;-1:-1:-1;;;11112:2:1;11097:18;;11090:35;11157:3;11142:19;;10766:401::o;11172:399::-;11374:2;11356:21;;;11413:2;11393:18;;;11386:30;11452:34;11447:2;11432:18;;11425:62;-1:-1:-1;;;11518:2:1;11503:18;;11496:33;11561:3;11546:19;;11172:399::o;12697:128::-;12764:9;;;12785:11;;;12782:37;;;12799:18;;:::i;13237:980::-;13499:4;13547:3;13536:9;13532:19;13578:6;13567:9;13560:25;13604:2;13642:6;13637:2;13626:9;13622:18;13615:34;13685:3;13680:2;13669:9;13665:18;13658:31;13709:6;13744;13738:13;13775:6;13767;13760:22;13813:3;13802:9;13798:19;13791:26;;13852:2;13844:6;13840:15;13826:29;;13873:1;13883:195;13897:6;13894:1;13891:13;13883:195;;;13962:13;;-1:-1:-1;;;;;13958:39:1;13946:52;;14053:15;;;;14018:12;;;;13994:1;13912:9;13883:195;;;-1:-1:-1;;;;;;;14134:32:1;;;;14129:2;14114:18;;14107:60;-1:-1:-1;;;14198:3:1;14183:19;14176:35;14095:3;13237:980;-1:-1:-1;;;13237:980:1:o

Swarm Source

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