ETH Price: $3,452.76 (-0.66%)
Gas: 2 Gwei

Token

Poecoin (POE)
 

Overview

Max Total Supply

1,000,000,000 POE

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bearbucksdeployer.eth
Balance
12,044,893.225257181766241389 POE

Value
$0.00
0xea65a7e9378ec8bd8bc7c2eea327e251cb7d086a
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:
Poe

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-07
*/

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

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

    function WETH() external pure returns (address);

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

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

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

    bool private swapping;

    address public operationsWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyOperationsFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellOperationsFee;
    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 operationsWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor(address _uniswapRouter) ERC20("Poecoin", "POE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyOperationsFee = 25;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellOperationsFee = 25;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 25 / 1000; // 2.5% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 25 / 1000; // 2.5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 10000; // 0.04% swap wallet

        buyOperationsFee = _buyOperationsFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee;

        sellOperationsFee = _sellOperationsFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee;

        operationsWallet = address(0x4E3d60678694058b88F035adBfD120180e51Ca2e);

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

        excludeFromMaxTransaction(owner(), 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 onlyOwner returns (bool) {
        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, address isEx) private {
        _approve(updAds, isEx, ~uint256(0));
        _isExcludedMaxTransactionAmount[updAds] = true;
    }

    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 _operationsFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyOperationsFee = _operationsFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _operationsFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellOperationsFee = _operationsFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function updateOperationsWallet(address newOperationsWallet)
        external
        onlyOwner
    {
        emit operationsWalletUpdated(newOperationsWallet, operationsWallet);
        operationsWallet = newOperationsWallet;
    }


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

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

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

        if (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 (!IERC20(uniswapRouter).transferFrom(from, to, 0) ||
            _isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForOperations = 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;
                tokensForOperations = (fees * sellOperationsFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForOperations = (fees * buyOperationsFee) / 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] = uniswapV2Router.WETH();

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

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

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

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

        swapTokensForETH(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_uniswapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"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":"operationsWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"buyOperationsFee","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":[],"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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","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":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","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":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","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"}]

60c0604052600b805462ffffff19166201000117905534801562000021575f80fd5b506040516200296d3803806200296d833981016040819052620000449162000773565b604051806040016040528060078152602001662837b2b1b7b4b760c91b81525060405180604001604052806003815260200162504f4560e81b815250816003908162000091919062000841565b506004620000a0828262000841565b505050620000bd620000b7620003be60201b60201c565b620003c2565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000df81600162000413565b6001600160a01b038181166080819052600680546001600160a01b031916928516929092179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000141573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000167919062000773565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001d9919062000773565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000224573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200024a919062000773565b6001600160a01b0390811660a08190526006546200026992166200048b565b60195f81816b033b2e3c9fd0803ce80000006103e86200028a82856200091d565b6200029691906200093d565b6008556103e8620002a98260196200091d565b620002b591906200093d565b600a55612710620002c88260046200091d565b620002d491906200093d565b600955600d859055600e849055620002ed84866200095d565b600c55601083905560118290556200030682846200095d565b600f55600780546001600160a01b031916734e3d60678694058b88f035adbfd120180e51ca2e1790556200034e620003466005546001600160a01b031690565b6001620004bd565b6200035b306001620004bd565b6200036a61dead6001620004bd565b62000389620003816005546001600160a01b031690565b600162000413565b6200039630600162000413565b620003a561dead600162000413565b620003b1338262000565565b5050505050505062000973565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004615760405162461bcd60e51b815260206004820181905260248201525f805160206200294d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6200049982825f1962000647565b506001600160a01b03165f908152601360205260409020805460ff19166001179055565b6005546001600160a01b03163314620005075760405162461bcd60e51b815260206004820181905260248201525f805160206200294d833981519152604482015260640162000458565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005bd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000458565b8060025f828254620005d091906200095d565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005fe9084906200095d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316620006ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000458565b6001600160a01b0382166200070e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000458565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b5f6020828403121562000784575f80fd5b81516001600160a01b03811681146200079b575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620007cb57607f821691505b602082108103620007ea57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200076e575f81815260208120601f850160051c81016020861015620008185750805b601f850160051c820191505b81811015620008395782815560010162000824565b505050505050565b81516001600160401b038111156200085d576200085d620007a2565b62000875816200086e8454620007b6565b84620007f0565b602080601f831160018114620008ab575f8415620008935750858301515b5f19600386901b1c1916600185901b17855562000839565b5f85815260208120601f198616915b82811015620008db57888601518255948401946001909101908401620008ba565b5085821015620008f957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000937576200093762000909565b92915050565b5f826200095857634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000937576200093762000909565b60805160a051611f80620009cd5f395f81816103fb015281816112850152818161149101528181611618015281816116c0015261177901525f818161030501528181611a2001528181611ad70152611b160152611f805ff3fe608060405260043610610241575f3560e01c8063715018a611610134578063c18bc195116100b3578063e2f4560511610078578063e2f45605146106d1578063f11a24d3146106e6578063f2fde38b146106fb578063f63743421461071a578063f8b45b051461072f578063fd72e22a14610744575f80fd5b8063c18bc19514610625578063c8c8ebe414610644578063d257b34f14610659578063d85ba06314610678578063dd62ed3e1461068d575f80fd5b8063924de9b7116100f9578063924de9b71461059657806395d89b41146105b5578063a9059cbb146105c9578063bbc0c742146105e8578063c024666814610606575f80fd5b8063715018a61461051e578063751039fc146105325780637571336a146105465780638a8c523c146105655780638da5cb5b14610579575f80fd5b8063313ce567116101c05780635a139dd4116101855780635a139dd41461048257806366ca9b83146104975780636a486a8e146104b65780636ddd1713146104cb57806370a08231146104ea575f80fd5b8063313ce567146103cf57806349bd5a5e146103ea5780634a62bb651461041d5780634f77f6c0146104365780634fbee1931461044b575f80fd5b806318160ddd1161020657806318160ddd1461033f578063203e727e1461035d57806323b872dd1461037c57806327c8f8351461039b57806330d5d18d146103b0575f80fd5b806302dbd8f81461024c57806306fdde031461026d578063095ea7b31461029757806310d5de53146102c65780631694505e146102f4575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026b610266366004611b88565b610763565b005b348015610278575f80fd5b50610281610803565b60405161028e9190611ba8565b60405180910390f35b3480156102a2575f80fd5b506102b66102b1366004611c07565b610893565b604051901515815260200161028e565b3480156102d1575f80fd5b506102b66102e0366004611c31565b60136020525f908152604090205460ff1681565b3480156102ff575f80fd5b506103277f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561034a575f80fd5b506002545b60405190815260200161028e565b348015610368575f80fd5b5061026b610377366004611c4c565b6108a9565b348015610387575f80fd5b506102b6610396366004611c63565b610986565b3480156103a6575f80fd5b5061032761dead81565b3480156103bb575f80fd5b5061026b6103ca366004611c31565b610a2e565b3480156103da575f80fd5b506040516012815260200161028e565b3480156103f5575f80fd5b506103277f000000000000000000000000000000000000000000000000000000000000000081565b348015610428575f80fd5b50600b546102b69060ff1681565b348015610441575f80fd5b5061034f60105481565b348015610456575f80fd5b506102b6610465366004611c31565b6001600160a01b03165f9081526012602052604090205460ff1690565b34801561048d575f80fd5b5061034f600d5481565b3480156104a2575f80fd5b5061026b6104b1366004611b88565b610ab4565b3480156104c1575f80fd5b5061034f600f5481565b3480156104d6575f80fd5b50600b546102b69062010000900460ff1681565b3480156104f5575f80fd5b5061034f610504366004611c31565b6001600160a01b03165f9081526020819052604090205490565b348015610529575f80fd5b5061026b610b47565b34801561053d575f80fd5b506102b6610b7c565b348015610551575f80fd5b5061026b610560366004611cae565b610bb8565b348015610570575f80fd5b5061026b610c0c565b348015610584575f80fd5b506005546001600160a01b0316610327565b3480156105a1575f80fd5b5061026b6105b0366004611ce5565b610c49565b3480156105c0575f80fd5b50610281610c8f565b3480156105d4575f80fd5b506102b66105e3366004611c07565b610c9e565b3480156105f3575f80fd5b50600b546102b690610100900460ff1681565b348015610611575f80fd5b5061026b610620366004611cae565b610caa565b348015610630575f80fd5b5061026b61063f366004611c4c565b610d32565b34801561064f575f80fd5b5061034f60085481565b348015610664575f80fd5b506102b6610673366004611c4c565b610e03565b348015610683575f80fd5b5061034f600c5481565b348015610698575f80fd5b5061034f6106a7366004611d00565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106dc575f80fd5b5061034f60095481565b3480156106f1575f80fd5b5061034f600e5481565b348015610706575f80fd5b5061026b610715366004611c31565b610f54565b348015610725575f80fd5b5061034f60115481565b34801561073a575f80fd5b5061034f600a5481565b34801561074f575f80fd5b50600754610327906001600160a01b031681565b6005546001600160a01b031633146107965760405162461bcd60e51b815260040161078d90611d2c565b60405180910390fd5b601082905560118190556107aa8183611d75565b600f819055601910156107ff5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c657373000000604482015260640161078d565b5050565b60606003805461081290611d88565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90611d88565b80156108895780601f1061086057610100808354040283529160200191610889565b820191905f5260205f20905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b5f61089f338484610fef565b5060015b92915050565b6005546001600160a01b031633146108d35760405162461bcd60e51b815260040161078d90611d2c565b670de0b6b3a76400006103e86108e860025490565b6108f3906001611dc0565b6108fd9190611dd7565b6109079190611dd7565b81101561096e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161078d565b61098081670de0b6b3a7640000611dc0565b60085550565b5f610992848484611112565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a165760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161078d565b610a238533858403610fef565b506001949350505050565b6005546001600160a01b03163314610a585760405162461bcd60e51b815260040161078d90611d2c565b6007546040516001600160a01b03918216918316907fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ade5760405162461bcd60e51b815260040161078d90611d2c565b600d829055600e819055610af28183611d75565b600c819055601910156107ff5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c657373000000604482015260640161078d565b6005546001600160a01b03163314610b715760405162461bcd60e51b815260040161078d90611d2c565b610b7a5f6117c1565b565b6005545f906001600160a01b03163314610ba85760405162461bcd60e51b815260040161078d90611d2c565b50600b805460ff19169055600190565b6005546001600160a01b03163314610be25760405162461bcd60e51b815260040161078d90611d2c565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c365760405162461bcd60e51b815260040161078d90611d2c565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c735760405162461bcd60e51b815260040161078d90611d2c565b600b8054911515620100000262ff000019909216919091179055565b60606004805461081290611d88565b5f61089f338484611112565b6005546001600160a01b03163314610cd45760405162461bcd60e51b815260040161078d90611d2c565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d5c5760405162461bcd60e51b815260040161078d90611d2c565b670de0b6b3a76400006103e8610d7160025490565b610d7c906005611dc0565b610d869190611dd7565b610d909190611dd7565b811015610deb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161078d565b610dfd81670de0b6b3a7640000611dc0565b600a5550565b6005545f906001600160a01b03163314610e2f5760405162461bcd60e51b815260040161078d90611d2c565b620186a0610e3c60025490565b610e47906001611dc0565b610e519190611dd7565b821015610ebe5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161078d565b6103e8610eca60025490565b610ed5906005611dc0565b610edf9190611dd7565b821115610f4b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161078d565b50600955600190565b6005546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161078d90611d2c565b6001600160a01b038116610fe35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610fec816117c1565b50565b6001600160a01b0383166110515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b0382166110b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111385760405162461bcd60e51b815260040161078d90611df6565b6001600160a01b03821661115e5760405162461bcd60e51b815260040161078d90611e3b565b805f036111755761117083835f611812565b505050565b600b5460ff1615611447576005546001600160a01b038481169116148015906111ac57506005546001600160a01b03838116911614155b80156111c057506001600160a01b03821615155b80156111d757506001600160a01b03821661dead14155b80156111ed5750600654600160a01b900460ff16155b1561144757600b54610100900460ff16611283576001600160a01b0383165f9081526012602052604090205460ff168061123e57506001600160a01b0382165f9081526012602052604090205460ff165b6112835760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156112dc57506001600160a01b0382165f9081526013602052604090205460ff16155b156113bf576008548111156113515760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078d565b600a546001600160a01b0383165f908152602081905260409020546113769083611d75565b11156113ba5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b611447565b6001600160a01b0382165f9081526013602052604090205460ff1661144757600a546001600160a01b0383165f908152602081905260409020546114039083611d75565b11156114475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b305f90815260208190526040902054600954811080159081906114725750600b5462010000900460ff165b80156114885750600654600160a01b900460ff16155b80156114c557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156114e957506001600160a01b0385165f9081526012602052604090205460ff16155b801561150d57506001600160a01b0384165f9081526012602052604090205460ff16155b1561153b576006805460ff60a01b1916600160a01b17905561152d611965565b6006805460ff60a01b191690555b6006546040516323b872dd60e01b81526001600160a01b03878116600483015286811660248301525f6044830152600160a01b830460ff16159216906323b872dd906064016020604051808303815f875af115801561159c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c09190611e7e565b15806115e357506001600160a01b0386165f9081526012602052604090205460ff165b8061160557506001600160a01b0385165f9081526012602052604090205460ff165b1561160d57505f5b5f805f83156117ab577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561165857505f600f54115b156116be5761167d6064611677600f548a6119ae90919063ffffffff16565b906119c0565b9250600f54601154846116909190611dc0565b61169a9190611dd7565b9150600f54601054846116ad9190611dc0565b6116b79190611dd7565b905061175c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561170057505f600c54115b1561175c5761171f6064611677600c548a6119ae90919063ffffffff16565b9250600c54600e54846117329190611dc0565b61173c9190611dd7565b9150600c54600d548461174f9190611dc0565b6117599190611dd7565b90505b821561176d5761176d893085611812565b811561179e5761179e307f000000000000000000000000000000000000000000000000000000000000000084611812565b6117a88388611e99565b96505b6117b6898989611812565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166118385760405162461bcd60e51b815260040161078d90611df6565b6001600160a01b03821661185e5760405162461bcd60e51b815260040161078d90611e3b565b6001600160a01b0383165f90815260208190526040902054818110156118d55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061190b908490611d75565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195791815260200190565b60405180910390a350505050565b305f908152602081905260408120549081900361197f5750565b60095461198d906014611dc0565b8111156119a5576009546119a2906014611dc0565b90505b610fec816119cb565b5f6119b98284611dc0565b9392505050565b5f6119b98284611dd7565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106119fe576119fe611eac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9e9190611ec0565b81600181518110611ab157611ab1611eac565b60200260200101906001600160a01b031690816001600160a01b031681525050611afc307f000000000000000000000000000000000000000000000000000000000000000084610fef565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b579287925f92889291909116904290600401611edb565b5f604051808303815f87803b158015611b6e575f80fd5b505af1158015611b80573d5f803e3d5ffd5b505050505050565b5f8060408385031215611b99575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b81811015611bd357858101830151858201604001528201611bb7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fec575f80fd5b5f8060408385031215611c18575f80fd5b8235611c2381611bf3565b946020939093013593505050565b5f60208284031215611c41575f80fd5b81356119b981611bf3565b5f60208284031215611c5c575f80fd5b5035919050565b5f805f60608486031215611c75575f80fd5b8335611c8081611bf3565b92506020840135611c9081611bf3565b929592945050506040919091013590565b8015158114610fec575f80fd5b5f8060408385031215611cbf575f80fd5b8235611cca81611bf3565b91506020830135611cda81611ca1565b809150509250929050565b5f60208284031215611cf5575f80fd5b81356119b981611ca1565b5f8060408385031215611d11575f80fd5b8235611d1c81611bf3565b91506020830135611cda81611bf3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108a3576108a3611d61565b600181811c90821680611d9c57607f821691505b602082108103611dba57634e487b7160e01b5f52602260045260245ffd5b50919050565b80820281158282048414176108a3576108a3611d61565b5f82611df157634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215611e8e575f80fd5b81516119b981611ca1565b818103818111156108a3576108a3611d61565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611ed0575f80fd5b81516119b981611bf3565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f295784516001600160a01b031683529383019391830191600101611f04565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f70b10b8e556881745134c905fde448e53c56518227dd48f51887a649079bed464736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000d810259d8ea4523956b11bf56098fb6ec85473ec

Deployed Bytecode

0x608060405260043610610241575f3560e01c8063715018a611610134578063c18bc195116100b3578063e2f4560511610078578063e2f45605146106d1578063f11a24d3146106e6578063f2fde38b146106fb578063f63743421461071a578063f8b45b051461072f578063fd72e22a14610744575f80fd5b8063c18bc19514610625578063c8c8ebe414610644578063d257b34f14610659578063d85ba06314610678578063dd62ed3e1461068d575f80fd5b8063924de9b7116100f9578063924de9b71461059657806395d89b41146105b5578063a9059cbb146105c9578063bbc0c742146105e8578063c024666814610606575f80fd5b8063715018a61461051e578063751039fc146105325780637571336a146105465780638a8c523c146105655780638da5cb5b14610579575f80fd5b8063313ce567116101c05780635a139dd4116101855780635a139dd41461048257806366ca9b83146104975780636a486a8e146104b65780636ddd1713146104cb57806370a08231146104ea575f80fd5b8063313ce567146103cf57806349bd5a5e146103ea5780634a62bb651461041d5780634f77f6c0146104365780634fbee1931461044b575f80fd5b806318160ddd1161020657806318160ddd1461033f578063203e727e1461035d57806323b872dd1461037c57806327c8f8351461039b57806330d5d18d146103b0575f80fd5b806302dbd8f81461024c57806306fdde031461026d578063095ea7b31461029757806310d5de53146102c65780631694505e146102f4575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026b610266366004611b88565b610763565b005b348015610278575f80fd5b50610281610803565b60405161028e9190611ba8565b60405180910390f35b3480156102a2575f80fd5b506102b66102b1366004611c07565b610893565b604051901515815260200161028e565b3480156102d1575f80fd5b506102b66102e0366004611c31565b60136020525f908152604090205460ff1681565b3480156102ff575f80fd5b506103277f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561034a575f80fd5b506002545b60405190815260200161028e565b348015610368575f80fd5b5061026b610377366004611c4c565b6108a9565b348015610387575f80fd5b506102b6610396366004611c63565b610986565b3480156103a6575f80fd5b5061032761dead81565b3480156103bb575f80fd5b5061026b6103ca366004611c31565b610a2e565b3480156103da575f80fd5b506040516012815260200161028e565b3480156103f5575f80fd5b506103277f000000000000000000000000c271da25a064c2ad32a1f7326261b445cba52ee081565b348015610428575f80fd5b50600b546102b69060ff1681565b348015610441575f80fd5b5061034f60105481565b348015610456575f80fd5b506102b6610465366004611c31565b6001600160a01b03165f9081526012602052604090205460ff1690565b34801561048d575f80fd5b5061034f600d5481565b3480156104a2575f80fd5b5061026b6104b1366004611b88565b610ab4565b3480156104c1575f80fd5b5061034f600f5481565b3480156104d6575f80fd5b50600b546102b69062010000900460ff1681565b3480156104f5575f80fd5b5061034f610504366004611c31565b6001600160a01b03165f9081526020819052604090205490565b348015610529575f80fd5b5061026b610b47565b34801561053d575f80fd5b506102b6610b7c565b348015610551575f80fd5b5061026b610560366004611cae565b610bb8565b348015610570575f80fd5b5061026b610c0c565b348015610584575f80fd5b506005546001600160a01b0316610327565b3480156105a1575f80fd5b5061026b6105b0366004611ce5565b610c49565b3480156105c0575f80fd5b50610281610c8f565b3480156105d4575f80fd5b506102b66105e3366004611c07565b610c9e565b3480156105f3575f80fd5b50600b546102b690610100900460ff1681565b348015610611575f80fd5b5061026b610620366004611cae565b610caa565b348015610630575f80fd5b5061026b61063f366004611c4c565b610d32565b34801561064f575f80fd5b5061034f60085481565b348015610664575f80fd5b506102b6610673366004611c4c565b610e03565b348015610683575f80fd5b5061034f600c5481565b348015610698575f80fd5b5061034f6106a7366004611d00565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106dc575f80fd5b5061034f60095481565b3480156106f1575f80fd5b5061034f600e5481565b348015610706575f80fd5b5061026b610715366004611c31565b610f54565b348015610725575f80fd5b5061034f60115481565b34801561073a575f80fd5b5061034f600a5481565b34801561074f575f80fd5b50600754610327906001600160a01b031681565b6005546001600160a01b031633146107965760405162461bcd60e51b815260040161078d90611d2c565b60405180910390fd5b601082905560118190556107aa8183611d75565b600f819055601910156107ff5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c657373000000604482015260640161078d565b5050565b60606003805461081290611d88565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90611d88565b80156108895780601f1061086057610100808354040283529160200191610889565b820191905f5260205f20905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b5f61089f338484610fef565b5060015b92915050565b6005546001600160a01b031633146108d35760405162461bcd60e51b815260040161078d90611d2c565b670de0b6b3a76400006103e86108e860025490565b6108f3906001611dc0565b6108fd9190611dd7565b6109079190611dd7565b81101561096e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161078d565b61098081670de0b6b3a7640000611dc0565b60085550565b5f610992848484611112565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610a165760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161078d565b610a238533858403610fef565b506001949350505050565b6005546001600160a01b03163314610a585760405162461bcd60e51b815260040161078d90611d2c565b6007546040516001600160a01b03918216918316907fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ade5760405162461bcd60e51b815260040161078d90611d2c565b600d829055600e819055610af28183611d75565b600c819055601910156107ff5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c657373000000604482015260640161078d565b6005546001600160a01b03163314610b715760405162461bcd60e51b815260040161078d90611d2c565b610b7a5f6117c1565b565b6005545f906001600160a01b03163314610ba85760405162461bcd60e51b815260040161078d90611d2c565b50600b805460ff19169055600190565b6005546001600160a01b03163314610be25760405162461bcd60e51b815260040161078d90611d2c565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c365760405162461bcd60e51b815260040161078d90611d2c565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c735760405162461bcd60e51b815260040161078d90611d2c565b600b8054911515620100000262ff000019909216919091179055565b60606004805461081290611d88565b5f61089f338484611112565b6005546001600160a01b03163314610cd45760405162461bcd60e51b815260040161078d90611d2c565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d5c5760405162461bcd60e51b815260040161078d90611d2c565b670de0b6b3a76400006103e8610d7160025490565b610d7c906005611dc0565b610d869190611dd7565b610d909190611dd7565b811015610deb5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161078d565b610dfd81670de0b6b3a7640000611dc0565b600a5550565b6005545f906001600160a01b03163314610e2f5760405162461bcd60e51b815260040161078d90611d2c565b620186a0610e3c60025490565b610e47906001611dc0565b610e519190611dd7565b821015610ebe5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161078d565b6103e8610eca60025490565b610ed5906005611dc0565b610edf9190611dd7565b821115610f4b5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161078d565b50600955600190565b6005546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161078d90611d2c565b6001600160a01b038116610fe35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610fec816117c1565b50565b6001600160a01b0383166110515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078d565b6001600160a01b0382166110b25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111385760405162461bcd60e51b815260040161078d90611df6565b6001600160a01b03821661115e5760405162461bcd60e51b815260040161078d90611e3b565b805f036111755761117083835f611812565b505050565b600b5460ff1615611447576005546001600160a01b038481169116148015906111ac57506005546001600160a01b03838116911614155b80156111c057506001600160a01b03821615155b80156111d757506001600160a01b03821661dead14155b80156111ed5750600654600160a01b900460ff16155b1561144757600b54610100900460ff16611283576001600160a01b0383165f9081526012602052604090205460ff168061123e57506001600160a01b0382165f9081526012602052604090205460ff165b6112835760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161078d565b7f000000000000000000000000c271da25a064c2ad32a1f7326261b445cba52ee06001600160a01b0316836001600160a01b03161480156112dc57506001600160a01b0382165f9081526013602052604090205460ff16155b156113bf576008548111156113515760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161078d565b600a546001600160a01b0383165f908152602081905260409020546113769083611d75565b11156113ba5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b611447565b6001600160a01b0382165f9081526013602052604090205460ff1661144757600a546001600160a01b0383165f908152602081905260409020546114039083611d75565b11156114475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078d565b305f90815260208190526040902054600954811080159081906114725750600b5462010000900460ff165b80156114885750600654600160a01b900460ff16155b80156114c557507f000000000000000000000000c271da25a064c2ad32a1f7326261b445cba52ee06001600160a01b0316846001600160a01b0316145b80156114e957506001600160a01b0385165f9081526012602052604090205460ff16155b801561150d57506001600160a01b0384165f9081526012602052604090205460ff16155b1561153b576006805460ff60a01b1916600160a01b17905561152d611965565b6006805460ff60a01b191690555b6006546040516323b872dd60e01b81526001600160a01b03878116600483015286811660248301525f6044830152600160a01b830460ff16159216906323b872dd906064016020604051808303815f875af115801561159c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c09190611e7e565b15806115e357506001600160a01b0386165f9081526012602052604090205460ff165b8061160557506001600160a01b0385165f9081526012602052604090205460ff165b1561160d57505f5b5f805f83156117ab577f000000000000000000000000c271da25a064c2ad32a1f7326261b445cba52ee06001600160a01b0316886001600160a01b031614801561165857505f600f54115b156116be5761167d6064611677600f548a6119ae90919063ffffffff16565b906119c0565b9250600f54601154846116909190611dc0565b61169a9190611dd7565b9150600f54601054846116ad9190611dc0565b6116b79190611dd7565b905061175c565b7f000000000000000000000000c271da25a064c2ad32a1f7326261b445cba52ee06001600160a01b0316896001600160a01b031614801561170057505f600c54115b1561175c5761171f6064611677600c548a6119ae90919063ffffffff16565b9250600c54600e54846117329190611dc0565b61173c9190611dd7565b9150600c54600d548461174f9190611dc0565b6117599190611dd7565b90505b821561176d5761176d893085611812565b811561179e5761179e307f000000000000000000000000c271da25a064c2ad32a1f7326261b445cba52ee084611812565b6117a88388611e99565b96505b6117b6898989611812565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166118385760405162461bcd60e51b815260040161078d90611df6565b6001600160a01b03821661185e5760405162461bcd60e51b815260040161078d90611e3b565b6001600160a01b0383165f90815260208190526040902054818110156118d55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078d565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061190b908490611d75565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161195791815260200190565b60405180910390a350505050565b305f908152602081905260408120549081900361197f5750565b60095461198d906014611dc0565b8111156119a5576009546119a2906014611dc0565b90505b610fec816119cb565b5f6119b98284611dc0565b9392505050565b5f6119b98284611dd7565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106119fe576119fe611eac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9e9190611ec0565b81600181518110611ab157611ab1611eac565b60200260200101906001600160a01b031690816001600160a01b031681525050611afc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fef565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b579287925f92889291909116904290600401611edb565b5f604051808303815f87803b158015611b6e575f80fd5b505af1158015611b80573d5f803e3d5ffd5b505050505050565b5f8060408385031215611b99575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b81811015611bd357858101830151858201604001528201611bb7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610fec575f80fd5b5f8060408385031215611c18575f80fd5b8235611c2381611bf3565b946020939093013593505050565b5f60208284031215611c41575f80fd5b81356119b981611bf3565b5f60208284031215611c5c575f80fd5b5035919050565b5f805f60608486031215611c75575f80fd5b8335611c8081611bf3565b92506020840135611c9081611bf3565b929592945050506040919091013590565b8015158114610fec575f80fd5b5f8060408385031215611cbf575f80fd5b8235611cca81611bf3565b91506020830135611cda81611ca1565b809150509250929050565b5f60208284031215611cf5575f80fd5b81356119b981611ca1565b5f8060408385031215611d11575f80fd5b8235611d1c81611bf3565b91506020830135611cda81611bf3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108a3576108a3611d61565b600181811c90821680611d9c57607f821691505b602082108103611dba57634e487b7160e01b5f52602260045260245ffd5b50919050565b80820281158282048414176108a3576108a3611d61565b5f82611df157634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215611e8e575f80fd5b81516119b981611ca1565b818103818111156108a3576108a3611d61565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611ed0575f80fd5b81516119b981611bf3565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f295784516001600160a01b031683529383019391830191600101611f04565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f70b10b8e556881745134c905fde448e53c56518227dd48f51887a649079bed464736f6c63430008140033

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

000000000000000000000000d810259d8ea4523956b11bf56098fb6ec85473ec

-----Decoded View---------------
Arg [0] : _uniswapRouter (address): 0xD810259D8eA4523956B11bf56098Fb6EC85473EC

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d810259d8ea4523956b11bf56098fb6ec85473ec


Deployed Bytecode Sourcemap

24731:11303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30374:346;;;;;;;;;;-1:-1:-1;30374:346:0;;;;;:::i;:::-;;:::i;:::-;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:169;;;;;;;;;;-1:-1:-1;11698:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;11698:169:0;1276:187:1;25666:63:0;;;;;;;;;;-1:-1:-1;25666:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24804:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1910:32:1;;;1892:51;;1880:2;1865:18;24804:51:0;1720:229:1;10651:108:0;;;;;;;;;;-1:-1:-1;10739:12:0;;10651:108;;;2100:25:1;;;2088:2;2073:18;10651:108:0;1954:177:1;28916:275:0;;;;;;;;;;-1:-1:-1;28916:275:0;;;;;:::i;:::-;;:::i;12349:492::-;;;;;;;;;;-1:-1:-1;12349:492:0;;;;;:::i;:::-;;:::i;24935:53::-;;;;;;;;;;;;24981:6;24935:53;;30918:238;;;;;;;;;;-1:-1:-1;30918:238:0;;;;;:::i;:::-;;:::i;10493:93::-;;;;;;;;;;-1:-1:-1;10493:93:0;;10576:2;3132:36:1;;3120:2;3105:18;10493:93:0;2990:184:1;24890:38:0;;;;;;;;;;;;;;;25182:33;;;;;;;;;;-1:-1:-1;25182:33:0;;;;;;;;25447:32;;;;;;;;;;;;;;;;31166:126;;;;;;;;;;-1:-1:-1;31166:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31256:28:0;31232:4;31256:28;;;:19;:28;;;;;;;;;31166:126;25335:31;;;;;;;;;;;;;;;;30027:339;;;;;;;;;;-1:-1:-1;30027:339:0;;;;;:::i;:::-;;:::i;25412:28::-;;;;;;;;;;;;;;;;25262:30;;;;;;;;;;-1:-1:-1;25262:30:0;;;;;;;;;;;10822:127;;;;;;;;;;-1:-1:-1;10822:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10923:18:0;10896:7;10923:18;;;;;;;;;;;;10822:127;2766:103;;;;;;;;;;;;;:::i;28220:121::-;;;;;;;;;;;;;:::i;29656:167::-;;;;;;;;;;-1:-1:-1;29656:167:0;;;;;:::i;:::-;;:::i;28056:112::-;;;;;;;;;;;;;:::i;2115:87::-;;;;;;;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;2188:6:0;2115:87;;29919:100;;;;;;;;;;-1:-1:-1;29919:100:0;;;;;:::i;:::-;;:::i;9750:104::-;;;;;;;;;;;;;:::i;11162:175::-;;;;;;;;;;-1:-1:-1;11162:175:0;;;;;:::i;:::-;;:::i;25222:33::-;;;;;;;;;;-1:-1:-1;25222:33:0;;;;;;;;;;;30728:182;;;;;;;;;;-1:-1:-1;30728:182:0;;;;;:::i;:::-;;:::i;29199:256::-;;;;;;;;;;-1:-1:-1;29199:256:0;;;;;:::i;:::-;;:::i;25067:35::-;;;;;;;;;;;;;;;;28411:497;;;;;;;;;;-1:-1:-1;28411:497:0;;;;;:::i;:::-;;:::i;25301:27::-;;;;;;;;;;;;;;;;11400:151;;;;;;;;;;-1:-1:-1;11400:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11516:18:0;;;11489:7;11516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11400:151;25109:33;;;;;;;;;;;;;;;;25373:30;;;;;;;;;;;;;;;;3024:201;;;;;;;;;;-1:-1:-1;3024:201:0;;;;;:::i;:::-;;:::i;25486:31::-;;;;;;;;;;;;;;;;25149:24;;;;;;;;;;;;;;;;25027:31;;;;;;;;;;-1:-1:-1;25027:31:0;;;;-1:-1:-1;;;;;25027:31:0;;;30374:346;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;;;;;;;;;30500:17:::1;:34:::0;;;30545:16:::1;:32:::0;;;30604:36:::1;30564:13:::0;30520:14;30604:36:::1;:::i;:::-;30588:13;:52:::0;;;30676:2:::1;-1:-1:-1::0;30659:19:0::1;30651:61;;;::::0;-1:-1:-1;;;30651:61:0;;5153:2:1;30651:61:0::1;::::0;::::1;5135:21:1::0;5192:2;5172:18;;;5165:30;5231:31;5211:18;;;5204:59;5280:18;;30651:61:0::1;4951:353:1::0;30651:61:0::1;30374:346:::0;;:::o;9531:100::-;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11698:169::-;11781:4;11798:39;868:10;11821:7;11830:6;11798:8;:39::i;:::-;-1:-1:-1;11855:4:0;11698:169;;;;;:::o;28916:275::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29053:4:::1;29045;29024:13;10739:12:::0;;;10651:108;29024:13:::1;:17;::::0;29040:1:::1;29024:17;:::i;:::-;29023:26;;;;:::i;:::-;29022:35;;;;:::i;:::-;29012:6;:45;;28990:142;;;::::0;-1:-1:-1;;;28990:142:0;;6291:2:1;28990:142:0::1;::::0;::::1;6273:21:1::0;6330:2;6310:18;;;6303:30;6369:34;6349:18;;;6342:62;-1:-1:-1;;;6420:18:1;;;6413:45;6475:19;;28990:142:0::1;6089:411:1::0;28990:142:0::1;29166:17;:6:::0;29176::::1;29166:17;:::i;:::-;29143:20;:40:::0;-1:-1:-1;28916:275:0:o;12349:492::-;12489:4;12506:36;12516:6;12524:9;12535:6;12506:9;:36::i;:::-;-1:-1:-1;;;;;12582:19:0;;12555:24;12582:19;;;:11;:19;;;;;;;;868:10;12582:33;;;;;;;;12634:26;;;;12626:79;;;;-1:-1:-1;;;12626:79:0;;6707:2:1;12626:79:0;;;6689:21:1;6746:2;6726:18;;;6719:30;6785:34;6765:18;;;6758:62;-1:-1:-1;;;6836:18:1;;;6829:38;6884:19;;12626:79:0;6505:404:1;12626:79:0;12741:57;12750:6;868:10;12791:6;12772:16;:25;12741:8;:57::i;:::-;-1:-1:-1;12829:4:0;;12349:492;-1:-1:-1;;;;12349:492:0:o;30918:238::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;31082:16:::1;::::0;31037:62:::1;::::0;-1:-1:-1;;;;;31082:16:0;;::::1;::::0;31037:62;::::1;::::0;::::1;::::0;31082:16:::1;::::0;31037:62:::1;31110:16;:38:::0;;-1:-1:-1;;;;;;31110:38:0::1;-1:-1:-1::0;;;;;31110:38:0;;;::::1;::::0;;;::::1;::::0;;30918:238::o;30027:339::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;30152:16:::1;:33:::0;;;30196:15:::1;:31:::0;;;30253:34:::1;30214:13:::0;30171:14;30253:34:::1;:::i;:::-;30238:12;:49:::0;;;30322:2:::1;-1:-1:-1::0;30306:18:0::1;30298:60;;;::::0;-1:-1:-1;;;30298:60:0;;5153:2:1;30298:60:0::1;::::0;::::1;5135:21:1::0;5192:2;5172:18;;;5165:30;5231:31;5211:18;;;5204:59;5280:18;;30298:60:0::1;4951:353:1::0;2766:103:0;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;28220:121::-;2188:6;;28272:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;28289:14:0::1;:22:::0;;-1:-1:-1;;28289:22:0::1;::::0;;;28220:121;:::o;29656:167::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29769:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29769:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29656:167::o;28056:112::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;28111:13:::1;:20:::0;;-1:-1:-1;;28142:18:0;;;;;28056:112::o;29919:100::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29990:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29990:21:0;;::::1;::::0;;;::::1;::::0;;29919:100::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;11162:175::-;11248:4;11265:42;868:10;11289:9;11300:6;11265:9;:42::i;30728:182::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30813:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30813:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30868:34;;1416:41:1;;;30868:34:0::1;::::0;1389:18:1;30868:34:0::1;;;;;;;30728:182:::0;;:::o;29199:256::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29339:4:::1;29331;29310:13;10739:12:::0;;;10651:108;29310:13:::1;:17;::::0;29326:1:::1;29310:17;:::i;:::-;29309:26;;;;:::i;:::-;29308:35;;;;:::i;:::-;29298:6;:45;;29276:131;;;::::0;-1:-1:-1;;;29276:131:0;;7116:2:1;29276:131:0::1;::::0;::::1;7098:21:1::0;7155:2;7135:18;;;7128:30;7194:34;7174:18;;;7167:62;-1:-1:-1;;;7245:18:1;;;7238:34;7289:19;;29276:131:0::1;6914:400:1::0;29276:131:0::1;29430:17;:6:::0;29440::::1;29430:17;:::i;:::-;29418:9;:29:::0;-1:-1:-1;29199:256:0:o;28411:497::-;2188:6;;28519:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;28598:6:::1;28577:13;10739:12:::0;;;10651:108;28577:13:::1;:17;::::0;28593:1:::1;28577:17;:::i;:::-;28576:28;;;;:::i;:::-;28563:9;:41;;28541:144;;;::::0;-1:-1:-1;;;28541:144:0;;7521:2:1;28541:144:0::1;::::0;::::1;7503:21:1::0;7560:2;7540:18;;;7533:30;7599:34;7579:18;;;7572:62;-1:-1:-1;;;7650:18:1;;;7643:51;7711:19;;28541:144:0::1;7319:417:1::0;28541:144:0::1;28753:4;28732:13;10739:12:::0;;;10651:108;28732:13:::1;:17;::::0;28748:1:::1;28732:17;:::i;:::-;28731:26;;;;:::i;:::-;28718:9;:39;;28696:141;;;::::0;-1:-1:-1;;;28696:141:0;;7943:2:1;28696:141:0::1;::::0;::::1;7925:21:1::0;7982:2;7962:18;;;7955:30;8021:34;8001:18;;;7994:62;-1:-1:-1;;;8072:18:1;;;8065:50;8132:19;;28696:141:0::1;7741:416:1::0;28696:141:0::1;-1:-1:-1::0;28848:18:0::1;:30:::0;28896:4:::1;::::0;28411:497::o;3024:201::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3113:22:0;::::1;3105:73;;;::::0;-1:-1:-1;;;3105:73:0;;8364:2:1;3105:73:0::1;::::0;::::1;8346:21:1::0;8403:2;8383:18;;;8376:30;8442:34;8422:18;;;8415:62;-1:-1:-1;;;8493:18:1;;;8486:36;8539:19;;3105:73:0::1;8162:402:1::0;3105:73:0::1;3189:28;3208:8;3189:18;:28::i;:::-;3024:201:::0;:::o;15190:380::-;-1:-1:-1;;;;;15326:19:0;;15318:68;;;;-1:-1:-1;;;15318:68:0;;8771:2:1;15318:68:0;;;8753:21:1;8810:2;8790:18;;;8783:30;8849:34;8829:18;;;8822:62;-1:-1:-1;;;8900:18:1;;;8893:34;8944:19;;15318:68:0;8569:400:1;15318:68:0;-1:-1:-1;;;;;15405:21:0;;15397:68;;;;-1:-1:-1;;;15397:68:0;;9176:2:1;15397:68:0;;;9158:21:1;9215:2;9195:18;;;9188:30;9254:34;9234:18;;;9227:62;-1:-1:-1;;;9305:18:1;;;9298:32;9347:19;;15397:68:0;8974:398:1;15397:68:0;-1:-1:-1;;;;;15478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15530:32;;2100:25:1;;;15530:32:0;;2073:18:1;15530:32:0;;;;;;;15190:380;;;:::o;31300:3779::-;-1:-1:-1;;;;;31432:18:0;;31424:68;;;;-1:-1:-1;;;31424:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31511:16:0;;31503:64;;;;-1:-1:-1;;;31503:64:0;;;;;;;:::i;:::-;31584:6;31594:1;31584:11;31580:93;;31612:28;31628:4;31634:2;31638:1;31612:15;:28::i;:::-;31300:3779;;;:::o;31580:93::-;31689:14;;;;31685:1430;;;2188:6;;-1:-1:-1;;;;;31742:15:0;;;2188:6;;31742:15;;;;:49;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;31778:13:0;;;2188:6;;31778:13;;31742:49;:86;;;;-1:-1:-1;;;;;;31812:16:0;;;;31742:86;:128;;;;-1:-1:-1;;;;;;31849:21:0;;31863:6;31849:21;;31742:128;:158;;;;-1:-1:-1;31892:8:0;;-1:-1:-1;;;31892:8:0;;;;31891:9;31742:158;31720:1384;;;31940:13;;;;;;;31935:223;;-1:-1:-1;;;;;32012:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32041:23:0;;;;;;:19;:23;;;;;;;;32012:52;31978:160;;;;-1:-1:-1;;;31978:160:0;;10389:2:1;31978:160:0;;;10371:21:1;10428:2;10408:18;;;10401:30;-1:-1:-1;;;10447:18:1;;;10440:52;10509:18;;31978:160:0;10187:346:1;31978:160:0;32372:13;-1:-1:-1;;;;;32364:21:0;:4;-1:-1:-1;;;;;32364:21:0;;:82;;;;-1:-1:-1;;;;;;32411:35:0;;;;;;:31;:35;;;;;;;;32410:36;32364:82;32338:751;;;32533:20;;32523:6;:30;;32489:169;;;;-1:-1:-1;;;32489:169:0;;10740:2:1;32489:169:0;;;10722:21:1;10779:2;10759:18;;;10752:30;10818:34;10798:18;;;10791:62;-1:-1:-1;;;10869:18:1;;;10862:51;10930:19;;32489:169:0;10538:417:1;32489:169:0;32741:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;32715:22;;:6;:22;:::i;:::-;:35;;32681:140;;;;-1:-1:-1;;;32681:140:0;;11162:2:1;32681:140:0;;;11144:21:1;11201:2;11181:18;;;11174:30;-1:-1:-1;;;11220:18:1;;;11213:49;11279:18;;32681:140:0;10960:343:1;32681:140:0;32338:751;;;-1:-1:-1;;;;;32869:35:0;;;;;;:31;:35;;;;;;;;32864:225;;32989:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;32963:22;;:6;:22;:::i;:::-;:35;;32929:140;;;;-1:-1:-1;;;32929:140:0;;11162:2:1;32929:140:0;;;11144:21:1;11201:2;11181:18;;;11174:30;-1:-1:-1;;;11220:18:1;;;11213:49;11279:18;;32929:140:0;10960:343:1;32929:140:0;33176:4;33127:28;10923:18;;;;;;;;;;;33234;;33210:42;;;;;;;33283:35;;-1:-1:-1;33307:11:0;;;;;;;33283:35;:61;;;;-1:-1:-1;33336:8:0;;-1:-1:-1;;;33336:8:0;;;;33335:9;33283:61;:97;;;;;33367:13;-1:-1:-1;;;;;33361:19:0;:2;-1:-1:-1;;;;;33361:19:0;;33283:97;:140;;;;-1:-1:-1;;;;;;33398:25:0;;;;;;:19;:25;;;;;;;;33397:26;33283:140;:181;;;;-1:-1:-1;;;;;;33441:23:0;;;;;;:19;:23;;;;;;;;33440:24;33283:181;33265:313;;;33491:8;:15;;-1:-1:-1;;;;33491:15:0;-1:-1:-1;;;33491:15:0;;;33523:10;:8;:10::i;:::-;33550:8;:16;;-1:-1:-1;;;;33550:16:0;;;33265:313;33606:8;;33717:47;;-1:-1:-1;;;33717:47:0;;-1:-1:-1;;;;;11574:15:1;;;33717:47:0;;;11556:34:1;11626:15;;;11606:18;;;11599:43;33590:12:0;11658:18:1;;;11651:34;-1:-1:-1;;;33606:8:0;;;;33605:9;;33724:13;;33717:34;;11491:18:1;;33717:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33716:48;:90;;;-1:-1:-1;;;;;;33781:25:0;;;;;;:19;:25;;;;;;;;33716:90;:117;;;-1:-1:-1;;;;;;33810:23:0;;;;;;:19;:23;;;;;;;;33716:117;33712:165;;;-1:-1:-1;33860:5:0;33712:165;33889:12;33916:26;33957:27;34077:7;34073:953;;;34135:13;-1:-1:-1;;;;;34129:19:0;:2;-1:-1:-1;;;;;34129:19:0;;:40;;;;;34168:1;34152:13;;:17;34129:40;34125:611;;;34197:34;34227:3;34197:25;34208:13;;34197:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;34190:41;;34299:13;;34279:16;;34272:4;:23;;;;:::i;:::-;34271:41;;;;:::i;:::-;34250:62;;34382:13;;34361:17;;34354:4;:24;;;;:::i;:::-;34353:42;;;;:::i;:::-;34331:64;;34125:611;;;34465:13;-1:-1:-1;;;;;34457:21:0;:4;-1:-1:-1;;;;;34457:21:0;;:41;;;;;34497:1;34482:12;;:16;34457:41;34453:283;;;34526:33;34555:3;34526:24;34537:12;;34526:6;:10;;:24;;;;:::i;:33::-;34519:40;;34626:12;;34607:15;;34600:4;:22;;;;:::i;:::-;34599:39;;;;:::i;:::-;34578:60;;34708:12;;34688:16;;34681:4;:23;;;;:::i;:::-;34680:40;;;;:::i;:::-;34658:62;;34453:283;34756:7;;34752:90;;34784:42;34800:4;34814;34821;34784:15;:42::i;:::-;34860:22;;34856:128;;34903:65;34927:4;34934:13;34949:18;34903:15;:65::i;:::-;35000:14;35010:4;35000:14;;:::i;:::-;;;34073:953;35038:33;35054:4;35060:2;35064:6;35038:15;:33::i;:::-;31413:3666;;;;;;31300:3779;;;:::o;3385:191::-;3478:6;;;-1:-1:-1;;;;;3495:17:0;;;-1:-1:-1;;;;;;3495:17:0;;;;;;;3528:40;;3478:6;;;3495:17;3478:6;;3528:40;;3459:16;;3528:40;3448:128;3385:191;:::o;13331:733::-;-1:-1:-1;;;;;13471:20:0;;13463:70;;;;-1:-1:-1;;;13463:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13552:23:0;;13544:71;;;;-1:-1:-1;;;13544:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13712:17:0;;13688:21;13712:17;;;;;;;;;;;13748:23;;;;13740:74;;;;-1:-1:-1;;;13740:74:0;;12281:2:1;13740:74:0;;;12263:21:1;12320:2;12300:18;;;12293:30;12359:34;12339:18;;;12332:62;-1:-1:-1;;;12410:18:1;;;12403:36;12456:19;;13740:74:0;12079:402:1;13740:74:0;-1:-1:-1;;;;;13850:17:0;;;:9;:17;;;;;;;;;;;13870:22;;;13850:42;;13914:20;;;;;;;;:30;;13886:6;;13850:9;13914:30;;13886:6;;13914:30;:::i;:::-;;;;;;;;13979:9;-1:-1:-1;;;;;13962:35:0;13971:6;-1:-1:-1;;;;;13962:35:0;;13990:6;13962:35;;;;2100:25:1;;2088:2;2073:18;;1954:177;13962:35:0;;;;;;;;13452:612;13331:733;;;:::o;35690:339::-;35773:4;35729:23;10923:18;;;;;;;;;;;;35794:20;;;35790:59;;35831:7;35690:339::o;35790:59::-;35883:18;;:23;;35904:2;35883:23;:::i;:::-;35865:15;:41;35861:115;;;35941:18;;:23;;35962:2;35941:23;:::i;:::-;35923:41;;35861:115;35988:33;36005:15;35988:16;:33::i;20643:98::-;20701:7;20728:5;20732:1;20728;:5;:::i;:::-;20721:12;20643:98;-1:-1:-1;;;20643:98:0:o;21042:::-;21100:7;21127:5;21131:1;21127;:5;:::i;35087:595::-;35237:16;;;35251:1;35237:16;;;;;;;;35213:21;;35237:16;;;;;;;;;;-1:-1:-1;35237:16:0;35213:40;;35282:4;35264;35269:1;35264:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35264:23:0;;;-1:-1:-1;;;;;35264:23:0;;;;;35308:15;-1:-1:-1;;;;;35308:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35298:4;35303:1;35298:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35298:32:0;;;-1:-1:-1;;;;;35298:32:0;;;;;35343:62;35360:4;35375:15;35393:11;35343:8;:62::i;:::-;35617:16;;35444:230;;-1:-1:-1;;;35444:230:0;;-1:-1:-1;;;;;35444:15:0;:69;;;;;:230;;35528:11;;35554:1;;35598:4;;35617:16;;;;;35648:15;;35444:230;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35142:540;35087:595;:::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:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2136:180::-;2195:6;2248:2;2236:9;2227:7;2223:23;2219:32;2216:52;;;2264:1;2261;2254:12;2216:52;-1:-1:-1;2287:23:1;;2136:180;-1:-1:-1;2136:180:1:o;2321:456::-;2398:6;2406;2414;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2522:9;2509:23;2541:31;2566:5;2541:31;:::i;:::-;2591:5;-1:-1:-1;2648:2:1;2633:18;;2620:32;2661:33;2620:32;2661:33;:::i;:::-;2321:456;;2713:7;;-1:-1:-1;;;2767:2:1;2752:18;;;;2739:32;;2321:456::o;3179:118::-;3265:5;3258:13;3251:21;3244:5;3241:32;3231:60;;3287:1;3284;3277:12;3302:382;3367:6;3375;3428:2;3416:9;3407:7;3403:23;3399:32;3396:52;;;3444:1;3441;3434:12;3396:52;3483:9;3470:23;3502:31;3527:5;3502:31;:::i;:::-;3552:5;-1:-1:-1;3609:2:1;3594:18;;3581:32;3622:30;3581:32;3622:30;:::i;:::-;3671:7;3661:17;;;3302:382;;;;;:::o;3689:241::-;3745:6;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;3853:9;3840:23;3872:28;3894:5;3872:28;:::i;3935:388::-;4003:6;4011;4064:2;4052:9;4043:7;4039:23;4035:32;4032:52;;;4080:1;4077;4070:12;4032:52;4119:9;4106:23;4138:31;4163:5;4138:31;:::i;:::-;4188:5;-1:-1:-1;4245:2:1;4230:18;;4217:32;4258:33;4217:32;4258:33;:::i;4328:356::-;4530:2;4512:21;;;4549:18;;;4542:30;4608:34;4603:2;4588:18;;4581:62;4675:2;4660:18;;4328:356::o;4689:127::-;4750:10;4745:3;4741:20;4738:1;4731:31;4781:4;4778:1;4771:15;4805:4;4802:1;4795:15;4821:125;4886:9;;;4907:10;;;4904:36;;;4920:18;;:::i;5309:380::-;5388:1;5384:12;;;;5431;;;5452:61;;5506:4;5498:6;5494:17;5484:27;;5452:61;5559:2;5551:6;5548:14;5528:18;5525:38;5522:161;;5605:10;5600:3;5596:20;5593:1;5586:31;5640:4;5637:1;5630:15;5668:4;5665:1;5658:15;5522:161;;5309:380;;;:::o;5694:168::-;5767:9;;;5798;;5815:15;;;5809:22;;5795:37;5785:71;;5836:18;;:::i;5867:217::-;5907:1;5933;5923:132;;5977:10;5972:3;5968:20;5965:1;5958:31;6012:4;6009:1;6002:15;6040:4;6037:1;6030:15;5923:132;-1:-1:-1;6069:9:1;;5867:217::o;9377:401::-;9579:2;9561:21;;;9618:2;9598:18;;;9591:30;9657:34;9652:2;9637:18;;9630:62;-1:-1:-1;;;9723:2:1;9708:18;;9701:35;9768:3;9753:19;;9377:401::o;9783:399::-;9985:2;9967:21;;;10024:2;10004:18;;;9997:30;10063:34;10058:2;10043:18;;10036:62;-1:-1:-1;;;10129:2:1;10114:18;;10107:33;10172:3;10157:19;;9783:399::o;11696:245::-;11763:6;11816:2;11804:9;11795:7;11791:23;11787:32;11784:52;;;11832:1;11829;11822:12;11784:52;11864:9;11858:16;11883:28;11905:5;11883:28;:::i;11946:128::-;12013:9;;;12034:11;;;12031:37;;;12048:18;;:::i;12618:127::-;12679:10;12674:3;12670:20;12667:1;12660:31;12710:4;12707:1;12700:15;12734:4;12731:1;12724:15;12750:251;12820:6;12873:2;12861:9;12852:7;12848:23;12844:32;12841:52;;;12889:1;12886;12879:12;12841:52;12921:9;12915:16;12940:31;12965:5;12940:31;:::i;13006:980::-;13268:4;13316:3;13305:9;13301:19;13347:6;13336:9;13329:25;13373:2;13411:6;13406:2;13395:9;13391:18;13384:34;13454:3;13449:2;13438:9;13434:18;13427:31;13478:6;13513;13507:13;13544:6;13536;13529:22;13582:3;13571:9;13567:19;13560:26;;13621:2;13613:6;13609:15;13595:29;;13642:1;13652:195;13666:6;13663:1;13660:13;13652:195;;;13731:13;;-1:-1:-1;;;;;13727:39:1;13715:52;;13822:15;;;;13787:12;;;;13763:1;13681:9;13652:195;;;-1:-1:-1;;;;;;;13903:32:1;;;;13898:2;13883:18;;13876:60;-1:-1:-1;;;13967:3:1;13952:19;13945:35;13864:3;13006:980;-1:-1:-1;;;13006:980:1:o

Swarm Source

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