ETH Price: $3,407.37 (-0.25%)
Gas: 10 Gwei

Token

Half Doge (DOGE0.5)
 

Overview

Max Total Supply

1,000,000 DOGE0.5

Holders

294

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
371.596612070213568993 DOGE0.5

Value
$0.00
0xd0c28d7a094787f22b0db3435364c4d6b38410a6
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:
HalfDoge

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/**
 * Half Doge is one of the first tokens to be paired with $DOGE LP/PAIR. To utilize $DOGE token and prevent bots and snipers.
 * https://t.me/HalfDogeEntry
*/


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

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


abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

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

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

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

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Half Doge", "DOGE0.5") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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


        uint256 _buyDevFee = 4;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 39;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 1_000_000 * 1e18;

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

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

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

        devWallet = address(0x5164aFb07E84A1d46DEf0Bc6B2c05eeb275C6A1e); 

        // 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, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 100, "");
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 100, "");
    }

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

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


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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForDOGE(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"DOGE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b031916734206931337dc273a630d328da6441786bfad668f179055600b80546201000162ffffff199091161790553480156200004a57600080fd5b50604080518082018252600981526848616c6620446f676560b81b602080830191825283518085019094526007845266444f4745302e3560c81b9084015281519192916200009b91600391620005a6565b508051620000b1906004906020840190620005a6565b505050620000ce620000c86200034760201b60201c565b6200034b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f08160016200039d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016191906200064c565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d991906200064c565b6001600160a01b031660a0819052620001f49060016200039d565b6004600060278169d3c21bcecceda100000060646200021582600262000694565b620002219190620006b6565b60085560646200023382600262000694565b6200023f9190620006b6565b600a556127106200025282600562000694565b6200025e9190620006b6565b600955600d859055600e849055620002778486620006d9565b600c5560108390556011829055620002908284620006d9565b600f55600780546001600160a01b031916735164afb07e84a1d46def0bc6b2c05eeb275c6a1e179055620002d8620002d06005546001600160a01b031690565b600162000417565b620002e530600162000417565b620002f461dead600162000417565b620003136200030b6005546001600160a01b031690565b60016200039d565b620003203060016200039d565b6200032f61dead60016200039d565b6200033b3382620004c1565b50505050505062000731565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ec5760405162461bcd60e51b815260206004820181905260248201526000805160206200263c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004625760405162461bcd60e51b815260206004820181905260248201526000805160206200263c8339815191526044820152606401620003e3565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005195760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e3565b80600260008282546200052d9190620006d9565b90915550506001600160a01b038216600090815260208190526040812080548392906200055c908490620006d9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005b490620006f4565b90600052602060002090601f016020900481019282620005d8576000855562000623565b82601f10620005f357805160ff191683800117855562000623565b8280016001018555821562000623579182015b828111156200062357825182559160200191906001019062000606565b506200063192915062000635565b5090565b5b8082111562000631576000815560010162000636565b6000602082840312156200065f57600080fd5b81516001600160a01b03811681146200067757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006b157620006b16200067e565b500290565b600082620006d457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006ef57620006ef6200067e565b500190565b600181811c908216806200070957607f821691505b602082108114156200072b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611eb4620007886000396000818161041d015281816112ad015281816114be015281816115ce01528181611677015261173101526000818161032001528181611a120152611a510152611eb46000f3fe6080604052600436106102555760003560e01c80637571336a11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b80637571336a146105685780638a8c523c146105885780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b8063313ce567116101d257806366ca9b831161019657806366ca9b83146104b25780636a486a8e146104d25780636ddd1713146104e857806370a0823114610508578063715018a61461053e578063751039fc1461055357600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee19314610459578063589191551461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611ac9565b6107c5565b005b34801561028f57600080fd5b5061029861083f565b6040516102a59190611aeb565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611b57565b6108d1565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611b81565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611b81565b6108e7565b3480156103a557600080fd5b506102816103b4366004611b9c565b61096e565b3480156103c557600080fd5b506102ce6103d4366004611bb5565b610a4b565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611b81565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b50600654610342906001600160a01b031681565b3480156104be57600080fd5b506102816104cd366004611ac9565b610af5565b3480156104de57600080fd5b5061036b600f5481565b3480156104f457600080fd5b50600b546102ce9062010000900460ff1681565b34801561051457600080fd5b5061036b610523366004611b81565b6001600160a01b031660009081526020819052604090205490565b34801561054a57600080fd5b50610281610b62565b34801561055f57600080fd5b506102ce610b98565b34801561057457600080fd5b50610281610583366004611c01565b610bd5565b34801561059457600080fd5b50610281610c2a565b3480156105a957600080fd5b506005546001600160a01b0316610342565b3480156105c757600080fd5b50600754610342906001600160a01b031681565b3480156105e757600080fd5b506102816105f6366004611c34565b610c67565b34801561060757600080fd5b50610298610cad565b34801561061c57600080fd5b5061036b600d5481565b34801561063257600080fd5b5061036b60105481565b34801561064857600080fd5b506102ce610657366004611b57565b610cbc565b34801561066857600080fd5b50600b546102ce90610100900460ff1681565b34801561068757600080fd5b50610281610696366004611c01565b610cc9565b3480156106a757600080fd5b506102816106b6366004611b9c565b610d52565b3480156106c757600080fd5b5061036b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611b9c565b610e23565b3480156106fd57600080fd5b5061036b600c5481565b34801561071357600080fd5b5061036b610722366004611c4f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611b81565b610f7a565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611c79565b60405180910390fd5b6010829055601181905561080c8183611cc4565b600f8190556064101561083b5760405162461bcd60e51b815260206004820152600060248201526044016107ef565b5050565b60606003805461084e90611cdc565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90611cdc565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108de338484611015565b50600192915050565b6005546001600160a01b031633146109115760405162461bcd60e51b81526004016107ef90611c79565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109985760405162461bcd60e51b81526004016107ef90611c79565b670de0b6b3a76400006103e86109ad60025490565b6109b8906001611d17565b6109c29190611d36565b6109cc9190611d36565b811015610a335760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a4581670de0b6b3a7640000611d17565b60085550565b6000610a58848484611139565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610add5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610aea8533858403611015565b506001949350505050565b6005546001600160a01b03163314610b1f5760405162461bcd60e51b81526004016107ef90611c79565b600d829055600e819055610b338183611cc4565b600c8190556064101561083b5760405162461bcd60e51b815260206004820152600060248201526044016107ef565b6005546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016107ef90611c79565b610b966000611779565b565b6005546000906001600160a01b03163314610bc55760405162461bcd60e51b81526004016107ef90611c79565b50600b805460ff19169055600190565b6005546001600160a01b03163314610bff5760405162461bcd60e51b81526004016107ef90611c79565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c545760405162461bcd60e51b81526004016107ef90611c79565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c915760405162461bcd60e51b81526004016107ef90611c79565b600b8054911515620100000262ff000019909216919091179055565b60606004805461084e90611cdc565b60006108de338484611139565b6005546001600160a01b03163314610cf35760405162461bcd60e51b81526004016107ef90611c79565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016107ef90611c79565b670de0b6b3a76400006103e8610d9160025490565b610d9c906005611d17565b610da69190611d36565b610db09190611d36565b811015610e0b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e1d81670de0b6b3a7640000611d17565b600a5550565b6005546000906001600160a01b03163314610e505760405162461bcd60e51b81526004016107ef90611c79565b620186a0610e5d60025490565b610e68906001611d17565b610e729190611d36565b821015610edf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610eeb60025490565b610ef6906005611d17565b610f009190611d36565b821115610f6c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610fa45760405162461bcd60e51b81526004016107ef90611c79565b6001600160a01b0381166110095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61101281611779565b50565b6001600160a01b0383166110775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166110d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661115f5760405162461bcd60e51b81526004016107ef90611d58565b6001600160a01b0382166111855760405162461bcd60e51b81526004016107ef90611d9d565b8061119b57611196838360006117cb565b505050565b600b5460ff1615611473576005546001600160a01b038481169116148015906111d257506005546001600160a01b03838116911614155b80156111e657506001600160a01b03821615155b80156111fd57506001600160a01b03821661dead14155b80156112135750600654600160a01b900460ff16155b1561147357600b54610100900460ff166112ab576001600160a01b03831660009081526012602052604090205460ff168061126657506001600160a01b03821660009081526012602052604090205460ff165b6112ab5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561130557506001600160a01b03821660009081526013602052604090205460ff16155b156113e95760085481111561137a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113a09083611cc4565b11156113e45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b611473565b6001600160a01b03821660009081526013602052604090205460ff1661147357600a546001600160a01b03831660009081526020819052604090205461142f9083611cc4565b11156114735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b306000908152602081905260409020546009548110801590819061149f5750600b5462010000900460ff165b80156114b55750600654600160a01b900460ff16155b80156114f257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561151757506001600160a01b03851660009081526012602052604090205460ff16155b801561153c57506001600160a01b03841660009081526012602052604090205460ff16155b1561156a576006805460ff60a01b1916600160a01b17905561155c611920565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806115b857506001600160a01b03851660009081526012602052604090205460ff165b156115c1575060005b60008060008315611763577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561160f57506000600f54115b1561167557611634606461162e600f548a61196790919063ffffffff16565b9061197a565b9250600f54601154846116479190611d17565b6116519190611d36565b9150600f54601054846116649190611d17565b61166e9190611d36565b9050611714565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156116b857506000600c54115b15611714576116d7606461162e600c548a61196790919063ffffffff16565b9250600c54600e54846116ea9190611d17565b6116f49190611d36565b9150600c54600d54846117079190611d17565b6117119190611d36565b90505b8215611725576117258930856117cb565b811561175657611756307f0000000000000000000000000000000000000000000000000000000000000000846117cb565b6117608388611de0565b96505b61176e8989896117cb565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117f15760405162461bcd60e51b81526004016107ef90611d58565b6001600160a01b0382166118175760405162461bcd60e51b81526004016107ef90611d9d565b6001600160a01b0383166000908152602081905260409020548181101561188f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118c6908490611cc4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161191291815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119385750565b600954611946906014611d17565b81111561195e5760095461195b906014611d17565b90505b61101281611986565b60006119738284611d17565b9392505050565b60006119738284611d36565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119bb576119bb611df7565b6001600160a01b0392831660209182029290920101526006548251911690829060019081106119ec576119ec611df7565b60200260200101906001600160a01b031690816001600160a01b031681525050611a37307f000000000000000000000000000000000000000000000000000000000000000084611015565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611a93928792600092889291909116904290600401611e0d565b600060405180830381600087803b158015611aad57600080fd5b505af1158015611ac1573d6000803e3d6000fd5b505050505050565b60008060408385031215611adc57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b1857858101830151858201604001528201611afc565b81811115611b2a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f7557600080fd5b60008060408385031215611b6a57600080fd5b611b7383611b40565b946020939093013593505050565b600060208284031215611b9357600080fd5b61197382611b40565b600060208284031215611bae57600080fd5b5035919050565b600080600060608486031215611bca57600080fd5b611bd384611b40565b9250611be160208501611b40565b9150604084013590509250925092565b80358015158114610f7557600080fd5b60008060408385031215611c1457600080fd5b611c1d83611b40565b9150611c2b60208401611bf1565b90509250929050565b600060208284031215611c4657600080fd5b61197382611bf1565b60008060408385031215611c6257600080fd5b611c6b83611b40565b9150611c2b60208401611b40565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cd757611cd7611cae565b500190565b600181811c90821680611cf057607f821691505b60208210811415611d1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d3157611d31611cae565b500290565b600082611d5357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611df257611df2611cae565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e5d5784516001600160a01b031683529383019391830191600101611e38565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220379a66454ae859e8b7f8772846b762fe2ca55891a53d2a9004463d9181479aa964736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102555760003560e01c80637571336a11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b80637571336a146105685780638a8c523c146105885780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b8063313ce567116101d257806366ca9b831161019657806366ca9b83146104b25780636a486a8e146104d25780636ddd1713146104e857806370a0823114610508578063715018a61461053e578063751039fc1461055357600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee19314610459578063589191551461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611ac9565b6107c5565b005b34801561028f57600080fd5b5061029861083f565b6040516102a59190611aeb565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611b57565b6108d1565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611b81565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611b81565b6108e7565b3480156103a557600080fd5b506102816103b4366004611b9c565b61096e565b3480156103c557600080fd5b506102ce6103d4366004611bb5565b610a4b565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f0000000000000000000000000fc327b9792c5863e51198d35bca2dc8fd7f5fd081565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611b81565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b50600654610342906001600160a01b031681565b3480156104be57600080fd5b506102816104cd366004611ac9565b610af5565b3480156104de57600080fd5b5061036b600f5481565b3480156104f457600080fd5b50600b546102ce9062010000900460ff1681565b34801561051457600080fd5b5061036b610523366004611b81565b6001600160a01b031660009081526020819052604090205490565b34801561054a57600080fd5b50610281610b62565b34801561055f57600080fd5b506102ce610b98565b34801561057457600080fd5b50610281610583366004611c01565b610bd5565b34801561059457600080fd5b50610281610c2a565b3480156105a957600080fd5b506005546001600160a01b0316610342565b3480156105c757600080fd5b50600754610342906001600160a01b031681565b3480156105e757600080fd5b506102816105f6366004611c34565b610c67565b34801561060757600080fd5b50610298610cad565b34801561061c57600080fd5b5061036b600d5481565b34801561063257600080fd5b5061036b60105481565b34801561064857600080fd5b506102ce610657366004611b57565b610cbc565b34801561066857600080fd5b50600b546102ce90610100900460ff1681565b34801561068757600080fd5b50610281610696366004611c01565b610cc9565b3480156106a757600080fd5b506102816106b6366004611b9c565b610d52565b3480156106c757600080fd5b5061036b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611b9c565b610e23565b3480156106fd57600080fd5b5061036b600c5481565b34801561071357600080fd5b5061036b610722366004611c4f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611b81565b610f7a565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611c79565b60405180910390fd5b6010829055601181905561080c8183611cc4565b600f8190556064101561083b5760405162461bcd60e51b815260206004820152600060248201526044016107ef565b5050565b60606003805461084e90611cdc565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90611cdc565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b60006108de338484611015565b50600192915050565b6005546001600160a01b031633146109115760405162461bcd60e51b81526004016107ef90611c79565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109985760405162461bcd60e51b81526004016107ef90611c79565b670de0b6b3a76400006103e86109ad60025490565b6109b8906001611d17565b6109c29190611d36565b6109cc9190611d36565b811015610a335760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a4581670de0b6b3a7640000611d17565b60085550565b6000610a58848484611139565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610add5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610aea8533858403611015565b506001949350505050565b6005546001600160a01b03163314610b1f5760405162461bcd60e51b81526004016107ef90611c79565b600d829055600e819055610b338183611cc4565b600c8190556064101561083b5760405162461bcd60e51b815260206004820152600060248201526044016107ef565b6005546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016107ef90611c79565b610b966000611779565b565b6005546000906001600160a01b03163314610bc55760405162461bcd60e51b81526004016107ef90611c79565b50600b805460ff19169055600190565b6005546001600160a01b03163314610bff5760405162461bcd60e51b81526004016107ef90611c79565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c545760405162461bcd60e51b81526004016107ef90611c79565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610c915760405162461bcd60e51b81526004016107ef90611c79565b600b8054911515620100000262ff000019909216919091179055565b60606004805461084e90611cdc565b60006108de338484611139565b6005546001600160a01b03163314610cf35760405162461bcd60e51b81526004016107ef90611c79565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016107ef90611c79565b670de0b6b3a76400006103e8610d9160025490565b610d9c906005611d17565b610da69190611d36565b610db09190611d36565b811015610e0b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e1d81670de0b6b3a7640000611d17565b600a5550565b6005546000906001600160a01b03163314610e505760405162461bcd60e51b81526004016107ef90611c79565b620186a0610e5d60025490565b610e68906001611d17565b610e729190611d36565b821015610edf5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610eeb60025490565b610ef6906005611d17565b610f009190611d36565b821115610f6c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610fa45760405162461bcd60e51b81526004016107ef90611c79565b6001600160a01b0381166110095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61101281611779565b50565b6001600160a01b0383166110775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166110d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661115f5760405162461bcd60e51b81526004016107ef90611d58565b6001600160a01b0382166111855760405162461bcd60e51b81526004016107ef90611d9d565b8061119b57611196838360006117cb565b505050565b600b5460ff1615611473576005546001600160a01b038481169116148015906111d257506005546001600160a01b03838116911614155b80156111e657506001600160a01b03821615155b80156111fd57506001600160a01b03821661dead14155b80156112135750600654600160a01b900460ff16155b1561147357600b54610100900460ff166112ab576001600160a01b03831660009081526012602052604090205460ff168061126657506001600160a01b03821660009081526012602052604090205460ff165b6112ab5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f0000000000000000000000000fc327b9792c5863e51198d35bca2dc8fd7f5fd06001600160a01b0316836001600160a01b031614801561130557506001600160a01b03821660009081526013602052604090205460ff16155b156113e95760085481111561137a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113a09083611cc4565b11156113e45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b611473565b6001600160a01b03821660009081526013602052604090205460ff1661147357600a546001600160a01b03831660009081526020819052604090205461142f9083611cc4565b11156114735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b306000908152602081905260409020546009548110801590819061149f5750600b5462010000900460ff165b80156114b55750600654600160a01b900460ff16155b80156114f257507f0000000000000000000000000fc327b9792c5863e51198d35bca2dc8fd7f5fd06001600160a01b0316846001600160a01b0316145b801561151757506001600160a01b03851660009081526012602052604090205460ff16155b801561153c57506001600160a01b03841660009081526012602052604090205460ff16155b1561156a576006805460ff60a01b1916600160a01b17905561155c611920565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806115b857506001600160a01b03851660009081526012602052604090205460ff165b156115c1575060005b60008060008315611763577f0000000000000000000000000fc327b9792c5863e51198d35bca2dc8fd7f5fd06001600160a01b0316886001600160a01b031614801561160f57506000600f54115b1561167557611634606461162e600f548a61196790919063ffffffff16565b9061197a565b9250600f54601154846116479190611d17565b6116519190611d36565b9150600f54601054846116649190611d17565b61166e9190611d36565b9050611714565b7f0000000000000000000000000fc327b9792c5863e51198d35bca2dc8fd7f5fd06001600160a01b0316896001600160a01b03161480156116b857506000600c54115b15611714576116d7606461162e600c548a61196790919063ffffffff16565b9250600c54600e54846116ea9190611d17565b6116f49190611d36565b9150600c54600d54846117079190611d17565b6117119190611d36565b90505b8215611725576117258930856117cb565b811561175657611756307f0000000000000000000000000fc327b9792c5863e51198d35bca2dc8fd7f5fd0846117cb565b6117608388611de0565b96505b61176e8989896117cb565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117f15760405162461bcd60e51b81526004016107ef90611d58565b6001600160a01b0382166118175760405162461bcd60e51b81526004016107ef90611d9d565b6001600160a01b0383166000908152602081905260409020548181101561188f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118c6908490611cc4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161191291815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119385750565b600954611946906014611d17565b81111561195e5760095461195b906014611d17565b90505b61101281611986565b60006119738284611d17565b9392505050565b60006119738284611d36565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119bb576119bb611df7565b6001600160a01b0392831660209182029290920101526006548251911690829060019081106119ec576119ec611df7565b60200260200101906001600160a01b031690816001600160a01b031681525050611a37307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611015565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611a93928792600092889291909116904290600401611e0d565b600060405180830381600087803b158015611aad57600080fd5b505af1158015611ac1573d6000803e3d6000fd5b505050505050565b60008060408385031215611adc57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b1857858101830151858201604001528201611afc565b81811115611b2a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f7557600080fd5b60008060408385031215611b6a57600080fd5b611b7383611b40565b946020939093013593505050565b600060208284031215611b9357600080fd5b61197382611b40565b600060208284031215611bae57600080fd5b5035919050565b600080600060608486031215611bca57600080fd5b611bd384611b40565b9250611be160208501611b40565b9150604084013590509250925092565b80358015158114610f7557600080fd5b60008060408385031215611c1457600080fd5b611c1d83611b40565b9150611c2b60208401611bf1565b90509250929050565b600060208284031215611c4657600080fd5b61197382611bf1565b60008060408385031215611c6257600080fd5b611c6b83611b40565b9150611c2b60208401611b40565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cd757611cd7611cae565b500190565b600181811c90821680611cf057607f821691505b60208210811415611d1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d3157611d31611cae565b500290565b600082611d5357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611df257611df2611cae565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e5d5784516001600160a01b031683529383019391830191600101611e38565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220379a66454ae859e8b7f8772846b762fe2ca55891a53d2a9004463d9181479aa964736f6c634300080c0033

Deployed Bytecode Sourcemap

23392:10664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28623:290;;;;;;;;;;-1:-1:-1;28623:290:0;;;;;:::i;:::-;;:::i;:::-;;8248:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10415:169;;;;;;;;;;-1:-1:-1;10415:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;10415:169:0;1306:187:1;24354:63:0;;;;;;;;;;-1:-1:-1;24354:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23470:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;23470:51:0;1689:229:1;9368:108:0;;;;;;;;;;-1:-1:-1;9456:12:0;;9368:108;;;2069:25:1;;;2057:2;2042:18;9368:108:0;1923:177:1;29111:189:0;;;;;;;;;;-1:-1:-1;29111:189:0;;;;;:::i;:::-;;:::i;27414:275::-;;;;;;;;;;-1:-1:-1;27414:275:0;;;;;:::i;:::-;;:::i;11066:492::-;;;;;;;;;;-1:-1:-1;11066:492:0;;;;;:::i;:::-;;:::i;23573:53::-;;;;;;;;;;;;23619:6;23573:53;;9210:93;;;;;;;;;;-1:-1:-1;9210:93:0;;9293:2;2973:36:1;;2961:2;2946:18;9210:93:0;2831:184:1;23528:38:0;;;;;;;;;;;;;;;23884:33;;;;;;;;;;-1:-1:-1;23884:33:0;;;;;;;;29310:126;;;;;;;;;;-1:-1:-1;29310:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29400:28:0;29376:4;29400:28;;;:19;:28;;;;;;;;;29310:126;23633:64;;;;;;;;;;-1:-1:-1;23633:64:0;;;;-1:-1:-1;;;;;23633:64:0;;;28332:283;;;;;;;;;;-1:-1:-1;28332:283:0;;;;;:::i;:::-;;:::i;24107:28::-;;;;;;;;;;;;;;;;23964:30;;;;;;;;;;-1:-1:-1;23964:30:0;;;;;;;;;;;9539:127;;;;;;;;;;-1:-1:-1;9539:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9640:18:0;9613:7;9640:18;;;;;;;;;;;;9539:127;1483:103;;;;;;;;;;;;;:::i;26718:121::-;;;;;;;;;;;;;:::i;27961:167::-;;;;;;;;;;-1:-1:-1;27961:167:0;;;;;:::i;:::-;;:::i;26554:112::-;;;;;;;;;;;;;:::i;832:87::-;;;;;;;;;;-1:-1:-1;905:6:0;;-1:-1:-1;;;;;905:6:0;832:87;;23736:24;;;;;;;;;;-1:-1:-1;23736:24:0;;;;-1:-1:-1;;;;;23736:24:0;;;28224:100;;;;;;;;;;-1:-1:-1;28224:100:0;;;;;:::i;:::-;;:::i;8467:104::-;;;;;;;;;;;;;:::i;24037:24::-;;;;;;;;;;;;;;;;24142:25;;;;;;;;;;;;;;;;9879:175;;;;;;;;;;-1:-1:-1;9879:175:0;;;;;:::i;:::-;;:::i;23924:33::-;;;;;;;;;;-1:-1:-1;23924:33:0;;;;;;;;;;;28921:182;;;;;;;;;;-1:-1:-1;28921:182:0;;;;;:::i;:::-;;:::i;27697:256::-;;;;;;;;;;-1:-1:-1;27697:256:0;;;;;:::i;:::-;;:::i;23769:35::-;;;;;;;;;;;;;;;;26909:497;;;;;;;;;;-1:-1:-1;26909:497:0;;;;;:::i;:::-;;:::i;24003:27::-;;;;;;;;;;;;;;;;10117:151;;;;;;;;;;-1:-1:-1;10117:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10233:18:0;;;10206:7;10233:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10117:151;23811:33;;;;;;;;;;;;;;;;24068:30;;;;;;;;;;;;;;;;1741:201;;;;;;;;;;-1:-1:-1;1741:201:0;;;;;:::i;:::-;;:::i;24174:31::-;;;;;;;;;;;;;;;;23851:24;;;;;;;;;;;;;;;;28623:290;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;;;;;;;;;28742:10:::1;:20:::0;;;28773:16:::1;:32:::0;;;28832:29:::1;28792:13:::0;28755:7;28832:29:::1;:::i;:::-;28816:13;:45:::0;;;28897:3:::1;-1:-1:-1::0;28880:20:0::1;28872:33;;;::::0;-1:-1:-1;;;28872:33:0;;4722:2:1;28872:33:0::1;::::0;::::1;4704:21:1::0;-1:-1:-1;4741:18:1;;;4734:29;4780:18;;28872:33:0::1;4520:284:1::0;28872:33:0::1;28623:290:::0;;:::o;8248:100::-;8302:13;8335:5;8328:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8248:100;:::o;10415:169::-;10498:4;10515:39;284:10;10538:7;10547:6;10515:8;:39::i;:::-;-1:-1:-1;10572:4:0;10415:169;;;;:::o;29111:189::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;29247:9:::1;::::0;29216:41:::1;::::0;-1:-1:-1;;;;;29247:9:0;;::::1;::::0;29216:41;::::1;::::0;::::1;::::0;29247:9:::1;::::0;29216:41:::1;29268:9;:24:::0;;-1:-1:-1;;;;;;29268:24:0::1;-1:-1:-1::0;;;;;29268:24:0;;;::::1;::::0;;;::::1;::::0;;29111:189::o;27414:275::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;27551:4:::1;27543;27522:13;9456:12:::0;;;9368:108;27522:13:::1;:17;::::0;27538:1:::1;27522:17;:::i;:::-;27521:26;;;;:::i;:::-;27520:35;;;;:::i;:::-;27510:6;:45;;27488:142;;;::::0;-1:-1:-1;;;27488:142:0;;5791:2:1;27488:142:0::1;::::0;::::1;5773:21:1::0;5830:2;5810:18;;;5803:30;5869:34;5849:18;;;5842:62;-1:-1:-1;;;5920:18:1;;;5913:45;5975:19;;27488:142:0::1;5589:411:1::0;27488:142:0::1;27664:17;:6:::0;27674::::1;27664:17;:::i;:::-;27641:20;:40:::0;-1:-1:-1;27414:275:0:o;11066:492::-;11206:4;11223:36;11233:6;11241:9;11252:6;11223:9;:36::i;:::-;-1:-1:-1;;;;;11299:19:0;;11272:24;11299:19;;;:11;:19;;;;;;;;284:10;11299:33;;;;;;;;11351:26;;;;11343:79;;;;-1:-1:-1;;;11343:79:0;;6207:2:1;11343:79:0;;;6189:21:1;6246:2;6226:18;;;6219:30;6285:34;6265:18;;;6258:62;-1:-1:-1;;;6336:18:1;;;6329:38;6384:19;;11343:79:0;6005:404:1;11343:79:0;11458:57;11467:6;284:10;11508:6;11489:16;:25;11458:8;:57::i;:::-;-1:-1:-1;11546:4:0;;11066:492;-1:-1:-1;;;;11066:492:0:o;28332:283::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;28450:9:::1;:19:::0;;;28480:15:::1;:31:::0;;;28537:27:::1;28498:13:::0;28462:7;28537:27:::1;:::i;:::-;28522:12;:42:::0;;;28599:3:::1;-1:-1:-1::0;28583:19:0::1;28575:32;;;::::0;-1:-1:-1;;;28575:32:0;;4722:2:1;28575:32:0::1;::::0;::::1;4704:21:1::0;-1:-1:-1;4741:18:1;;;4734:29;4780:18;;28575:32:0::1;4520:284:1::0;1483:103:0;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;1548:30:::1;1575:1;1548:18;:30::i;:::-;1483:103::o:0;26718:121::-;905:6;;26770:4;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;-1:-1:-1;26787:14:0::1;:22:::0;;-1:-1:-1;;26787:22:0::1;::::0;;;26718:121;:::o;27961:167::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28074:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28074:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27961:167::o;26554:112::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;26609:13:::1;:20:::0;;-1:-1:-1;;26640:18:0;;;;;26554:112::o;28224:100::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;28295:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28295:21:0;;::::1;::::0;;;::::1;::::0;;28224:100::o;8467:104::-;8523:13;8556:7;8549:14;;;;;:::i;9879:175::-;9965:4;9982:42;284:10;10006:9;10017:6;9982:9;:42::i;28921:182::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29006:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29006:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29061:34;;1446:41:1;;;29061:34:0::1;::::0;1419:18:1;29061:34:0::1;;;;;;;28921:182:::0;;:::o;27697:256::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;27837:4:::1;27829;27808:13;9456:12:::0;;;9368:108;27808:13:::1;:17;::::0;27824:1:::1;27808:17;:::i;:::-;27807:26;;;;:::i;:::-;27806:35;;;;:::i;:::-;27796:6;:45;;27774:131;;;::::0;-1:-1:-1;;;27774:131:0;;6616:2:1;27774:131:0::1;::::0;::::1;6598:21:1::0;6655:2;6635:18;;;6628:30;6694:34;6674:18;;;6667:62;-1:-1:-1;;;6745:18:1;;;6738:34;6789:19;;27774:131:0::1;6414:400:1::0;27774:131:0::1;27928:17;:6:::0;27938::::1;27928:17;:::i;:::-;27916:9;:29:::0;-1:-1:-1;27697:256:0:o;26909:497::-;905:6;;27017:4;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;27096:6:::1;27075:13;9456:12:::0;;;9368:108;27075:13:::1;:17;::::0;27091:1:::1;27075:17;:::i;:::-;27074:28;;;;:::i;:::-;27061:9;:41;;27039:144;;;::::0;-1:-1:-1;;;27039:144:0;;7021:2:1;27039:144:0::1;::::0;::::1;7003:21:1::0;7060:2;7040:18;;;7033:30;7099:34;7079:18;;;7072:62;-1:-1:-1;;;7150:18:1;;;7143:51;7211:19;;27039:144:0::1;6819:417:1::0;27039:144:0::1;27251:4;27230:13;9456:12:::0;;;9368:108;27230:13:::1;:17;::::0;27246:1:::1;27230:17;:::i;:::-;27229:26;;;;:::i;:::-;27216:9;:39;;27194:141;;;::::0;-1:-1:-1;;;27194:141:0;;7443:2:1;27194:141:0::1;::::0;::::1;7425:21:1::0;7482:2;7462:18;;;7455:30;7521:34;7501:18;;;7494:62;-1:-1:-1;;;7572:18:1;;;7565:50;7632:19;;27194:141:0::1;7241:416:1::0;27194:141:0::1;-1:-1:-1::0;27346:18:0::1;:30:::0;;;27394:4:::1;1123:1;26909:497:::0;;;:::o;1741:201::-;905:6;;-1:-1:-1;;;;;905:6:0;284:10;1052:23;1044:68;;;;-1:-1:-1;;;1044:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1830:22:0;::::1;1822:73;;;::::0;-1:-1:-1;;;1822:73:0;;7864:2:1;1822:73:0::1;::::0;::::1;7846:21:1::0;7903:2;7883:18;;;7876:30;7942:34;7922:18;;;7915:62;-1:-1:-1;;;7993:18:1;;;7986:36;8039:19;;1822:73:0::1;7662:402:1::0;1822:73:0::1;1906:28;1925:8;1906:18;:28::i;:::-;1741:201:::0;:::o;13907:380::-;-1:-1:-1;;;;;14043:19:0;;14035:68;;;;-1:-1:-1;;;14035:68:0;;8271:2:1;14035:68:0;;;8253:21:1;8310:2;8290:18;;;8283:30;8349:34;8329:18;;;8322:62;-1:-1:-1;;;8400:18:1;;;8393:34;8444:19;;14035:68:0;8069:400:1;14035:68:0;-1:-1:-1;;;;;14122:21:0;;14114:68;;;;-1:-1:-1;;;14114:68:0;;8676:2:1;14114:68:0;;;8658:21:1;8715:2;8695:18;;;8688:30;8754:34;8734:18;;;8727:62;-1:-1:-1;;;8805:18:1;;;8798:32;8847:19;;14114:68:0;8474:398:1;14114:68:0;-1:-1:-1;;;;;14195:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14247:32;;2069:25:1;;;14247:32:0;;2042:18:1;14247:32:0;;;;;;;13907:380;;;:::o;29444:3679::-;-1:-1:-1;;;;;29576:18:0;;29568:68;;;;-1:-1:-1;;;29568:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29655:16:0;;29647:64;;;;-1:-1:-1;;;29647:64:0;;;;;;;:::i;:::-;29728:11;29724:93;;29756:28;29772:4;29778:2;29782:1;29756:15;:28::i;:::-;29444:3679;;;:::o;29724:93::-;29833:14;;;;29829:1430;;;905:6;;-1:-1:-1;;;;;29886:15:0;;;905:6;;29886:15;;;;:49;;-1:-1:-1;905:6:0;;-1:-1:-1;;;;;29922:13:0;;;905:6;;29922:13;;29886:49;:86;;;;-1:-1:-1;;;;;;29956:16:0;;;;29886:86;:128;;;;-1:-1:-1;;;;;;29993:21:0;;30007:6;29993:21;;29886:128;:158;;;;-1:-1:-1;30036:8:0;;-1:-1:-1;;;30036:8:0;;;;30035:9;29886:158;29864:1384;;;30084:13;;;;;;;30079:223;;-1:-1:-1;;;;;30156:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30185:23:0;;;;;;:19;:23;;;;;;;;30156:52;30122:160;;;;-1:-1:-1;;;30122:160:0;;9889:2:1;30122:160:0;;;9871:21:1;9928:2;9908:18;;;9901:30;-1:-1:-1;;;9947:18:1;;;9940:52;10009:18;;30122:160:0;9687:346:1;30122:160:0;30516:13;-1:-1:-1;;;;;30508:21:0;:4;-1:-1:-1;;;;;30508:21:0;;:82;;;;-1:-1:-1;;;;;;30555:35:0;;;;;;:31;:35;;;;;;;;30554:36;30508:82;30482:751;;;30677:20;;30667:6;:30;;30633:169;;;;-1:-1:-1;;;30633:169:0;;10240:2:1;30633:169:0;;;10222:21:1;10279:2;10259:18;;;10252:30;10318:34;10298:18;;;10291:62;-1:-1:-1;;;10369:18:1;;;10362:51;10430:19;;30633:169:0;10038:417:1;30633:169:0;30885:9;;-1:-1:-1;;;;;9640:18:0;;9613:7;9640:18;;;;;;;;;;;30859:22;;:6;:22;:::i;:::-;:35;;30825:140;;;;-1:-1:-1;;;30825:140:0;;10662:2:1;30825:140:0;;;10644:21:1;10701:2;10681:18;;;10674:30;-1:-1:-1;;;10720:18:1;;;10713:49;10779:18;;30825:140:0;10460:343:1;30825:140:0;30482:751;;;-1:-1:-1;;;;;31013:35:0;;;;;;:31;:35;;;;;;;;31008:225;;31133:9;;-1:-1:-1;;;;;9640:18:0;;9613:7;9640:18;;;;;;;;;;;31107:22;;:6;:22;:::i;:::-;:35;;31073:140;;;;-1:-1:-1;;;31073:140:0;;10662:2:1;31073:140:0;;;10644:21:1;10701:2;10681:18;;;10674:30;-1:-1:-1;;;10720:18:1;;;10713:49;10779:18;;31073:140:0;10460:343:1;31073:140:0;31320:4;31271:28;9640:18;;;;;;;;;;;31378;;31354:42;;;;;;;31427:35;;-1:-1:-1;31451:11:0;;;;;;;31427:35;:61;;;;-1:-1:-1;31480:8:0;;-1:-1:-1;;;31480:8:0;;;;31479:9;31427:61;:97;;;;;31511:13;-1:-1:-1;;;;;31505:19:0;:2;-1:-1:-1;;;;;31505:19:0;;31427:97;:140;;;;-1:-1:-1;;;;;;31542:25:0;;;;;;:19;:25;;;;;;;;31541:26;31427:140;:181;;;;-1:-1:-1;;;;;;31585:23:0;;;;;;:19;:23;;;;;;;;31584:24;31427:181;31409:313;;;31635:8;:15;;-1:-1:-1;;;;31635:15:0;-1:-1:-1;;;31635:15:0;;;31667:10;:8;:10::i;:::-;31694:8;:16;;-1:-1:-1;;;;31694:16:0;;;31409:313;31750:8;;-1:-1:-1;;;;;31860:25:0;;31734:12;31860:25;;;:19;:25;;;;;;31750:8;-1:-1:-1;;;31750:8:0;;;;;31749:9;;31860:25;;:52;;-1:-1:-1;;;;;;31889:23:0;;;;;;:19;:23;;;;;;;;31860:52;31856:100;;;-1:-1:-1;31939:5:0;31856:100;31968:12;31995:26;32036:20;32149:7;32145:925;;;32207:13;-1:-1:-1;;;;;32201:19:0;:2;-1:-1:-1;;;;;32201:19:0;;:40;;;;;32240:1;32224:13;;:17;32201:40;32197:583;;;32269:34;32299:3;32269:25;32280:13;;32269:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32262:41;;32371:13;;32351:16;;32344:4;:23;;;;:::i;:::-;32343:41;;;;:::i;:::-;32322:62;;32440:13;;32426:10;;32419:4;:17;;;;:::i;:::-;32418:35;;;;:::i;:::-;32403:50;;32197:583;;;32523:13;-1:-1:-1;;;;;32515:21:0;:4;-1:-1:-1;;;;;32515:21:0;;:41;;;;;32555:1;32540:12;;:16;32515:41;32511:269;;;32584:33;32613:3;32584:24;32595:12;;32584:6;:10;;:24;;;;:::i;:33::-;32577:40;;32684:12;;32665:15;;32658:4;:22;;;;:::i;:::-;32657:39;;;;:::i;:::-;32636:60;;32752:12;;32739:9;;32732:4;:16;;;;:::i;:::-;32731:33;;;;:::i;:::-;32716:48;;32511:269;32800:7;;32796:90;;32828:42;32844:4;32858;32865;32828:15;:42::i;:::-;32904:22;;32900:128;;32947:65;32971:4;32978:13;32993:18;32947:15;:65::i;:::-;33044:14;33054:4;33044:14;;:::i;:::-;;;32145:925;33082:33;33098:4;33104:2;33108:6;33082:15;:33::i;:::-;29557:3566;;;;;;29444:3679;;;:::o;2102:191::-;2195:6;;;-1:-1:-1;;;;;2212:17:0;;;-1:-1:-1;;;;;;2212:17:0;;;;;;;2245:40;;2195:6;;;2212:17;2195:6;;2245:40;;2176:16;;2245:40;2165:128;2102:191;:::o;12048:733::-;-1:-1:-1;;;;;12188:20:0;;12180:70;;;;-1:-1:-1;;;12180:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12269:23:0;;12261:71;;;;-1:-1:-1;;;12261:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12429:17:0;;12405:21;12429:17;;;;;;;;;;;12465:23;;;;12457:74;;;;-1:-1:-1;;;12457:74:0;;11140:2:1;12457:74:0;;;11122:21:1;11179:2;11159:18;;;11152:30;11218:34;11198:18;;;11191:62;-1:-1:-1;;;11269:18:1;;;11262:36;11315:19;;12457:74:0;10938:402:1;12457:74:0;-1:-1:-1;;;;;12567:17:0;;;:9;:17;;;;;;;;;;;12587:22;;;12567:42;;12631:20;;;;;;;;:30;;12603:6;;12567:9;12631:30;;12603:6;;12631:30;:::i;:::-;;;;;;;;12696:9;-1:-1:-1;;;;;12679:35:0;12688:6;-1:-1:-1;;;;;12679:35:0;;12707:6;12679:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;12679:35:0;;;;;;;;12169:612;12048:733;;;:::o;33711:340::-;33794:4;33750:23;9640:18;;;;;;;;;;;;33811:59;;33852:7;33711:340::o;33811:59::-;33904:18;;:23;;33925:2;33904:23;:::i;:::-;33886:15;:41;33882:115;;;33962:18;;:23;;33983:2;33962:23;:::i;:::-;33944:41;;33882:115;34009:34;34027:15;34009:17;:34::i;19360:98::-;19418:7;19445:5;19449:1;19445;:5;:::i;:::-;19438:12;19360:98;-1:-1:-1;;;19360:98:0:o;19759:::-;19817:7;19844:5;19848:1;19844;:5;:::i;33131:572::-;33282:16;;;33296:1;33282:16;;;;;;;;33258:21;;33282:16;;;;;;;;;;-1:-1:-1;33282:16:0;33258:40;;33327:4;33309;33314:1;33309:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33309:23:0;;;:7;;;;;;;;;:23;33353:4;;33343:7;;33353:4;;;33343;;33353;;33343:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33343:14:0;;;-1:-1:-1;;;;;33343:14:0;;;;;33370:62;33387:4;33402:15;33420:11;33370:8;:62::i;:::-;33645:9;;33471:224;;-1:-1:-1;;;33471:224:0;;-1:-1:-1;;;;;33471:15:0;:69;;;;;:224;;33555:11;;33581:1;;33626:4;;33645:9;;;;;33669:15;;33471:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33187:516;33131:572;:::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:597::-;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;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4809:380::-;4888:1;4884:12;;;;4931;;;4952:61;;5006:4;4998:6;4994:17;4984:27;;4952:61;5059:2;5051:6;5048:14;5028:18;5025:38;5022:161;;;5105:10;5100:3;5096:20;5093:1;5086:31;5140:4;5137:1;5130:15;5168:4;5165:1;5158:15;5022:161;;4809:380;;;:::o;5194:168::-;5234:7;5300:1;5296;5292:6;5288:14;5285:1;5282:21;5277:1;5270:9;5263:17;5259:45;5256:71;;;5307:18;;:::i;:::-;-1:-1:-1;5347:9:1;;5194:168::o;5367:217::-;5407:1;5433;5423:132;;5477:10;5472:3;5468:20;5465:1;5458:31;5512:4;5509:1;5502:15;5540:4;5537:1;5530:15;5423:132;-1:-1:-1;5569:9:1;;5367:217::o;8877:401::-;9079:2;9061:21;;;9118:2;9098:18;;;9091:30;9157:34;9152:2;9137:18;;9130:62;-1:-1:-1;;;9223:2:1;9208:18;;9201:35;9268:3;9253:19;;8877:401::o;9283:399::-;9485:2;9467:21;;;9524:2;9504:18;;;9497:30;9563:34;9558:2;9543:18;;9536:62;-1:-1:-1;;;9629:2:1;9614:18;;9607:33;9672:3;9657:19;;9283:399::o;10808:125::-;10848:4;10876:1;10873;10870:8;10867:34;;;10881:18;;:::i;:::-;-1:-1:-1;10918:9:1;;10808:125::o;11477:127::-;11538:10;11533:3;11529:20;11526:1;11519:31;11569:4;11566:1;11559:15;11593:4;11590:1;11583:15;11609:980;11871:4;11919:3;11908:9;11904:19;11950:6;11939:9;11932:25;11976:2;12014:6;12009:2;11998:9;11994:18;11987:34;12057:3;12052:2;12041:9;12037:18;12030:31;12081:6;12116;12110:13;12147:6;12139;12132:22;12185:3;12174:9;12170:19;12163:26;;12224:2;12216:6;12212:15;12198:29;;12245:1;12255:195;12269:6;12266:1;12263:13;12255:195;;;12334:13;;-1:-1:-1;;;;;12330:39:1;12318:52;;12425:15;;;;12390:12;;;;12366:1;12284:9;12255:195;;;-1:-1:-1;;;;;;;12506:32:1;;;;12501:2;12486:18;;12479:60;-1:-1:-1;;;12570:3:1;12555:19;12548:35;12467:3;11609:980;-1:-1:-1;;;11609:980:1:o

Swarm Source

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