ETH Price: $2,558.82 (+2.96%)

Token

Ponko (PONKO)
 

Overview

Max Total Supply

555,000,000 PONKO

Holders

107

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
chairman-jerome-powell.eth
Balance
0 PONKO

Value
$0.00
0x6310ae27e35d2d850ee1913e0447c0cc85eb1cdf
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:
Ponko

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-22
*/

/*
 * SPDX-License-Identifier: MIT
 * https://ponko.fun
 * https://twitter.com/ponkoeth

*/

pragma solidity 0.8.19;

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 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
    );
}

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);
}

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

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

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 upd 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 Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        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 Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

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

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

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

    /**
     * @dev 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 {}
}

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);
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IDexPair {
    function sync() external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsInEffect = true;
    bool private transferDelayEnabled = true;
    bool private delayOn = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    mapping(address => bool) private _isDelayExempt;

    bool public tradingLive = false;


    // Fee receivers
    address private mkt_receiver_wallet;
    address private dev_receiver_wallet;

    uint256 private total_buy_fee;
    uint256 private mkt_buy_fee;
    uint256 private dev_buy_fee;

    uint256 private total_sell_fee;
    uint256 private mkt_sell_fee;
    uint256 private dev_sell_fee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDev;

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

    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

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

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

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TriggerBurn(uint256 percentBurnt);

    event BuyFeeUpdated(
        uint256 total_buy_fee,
        uint256 mkt_buy_fee,
        uint256 dev_buy_fee
    );

    event SellFeeUpdated(
        uint256 total_sell_fee,
        uint256 mkt_sell_fee,
        uint256 dev_sell_fee
    );

    constructor() ERC20("Ponko", "PONKO") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        excludeFromMaxTransaction(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _mkt_buy_fee = 30;
        uint256 _dev_buy_fee = 0;

        uint256 _mkt_sell_fee = 30;
        uint256 _dev_sell_fee = 0;

        uint256 totalSupply = 555_000_000 * 10 ** 9;

        maxTx = (totalSupply * 10) / 1000;
        maxWallet = (totalSupply * 10) / 1000;

        swapBackValueMin = (totalSupply * 1) / 1000;
        swapBackValueMax = (totalSupply * 2) / 100;

        mkt_buy_fee = _mkt_buy_fee;
        dev_buy_fee = _dev_buy_fee;
        total_buy_fee = mkt_buy_fee + dev_buy_fee;

        mkt_sell_fee = _mkt_sell_fee;
        dev_sell_fee = _dev_sell_fee;
        total_sell_fee = mkt_sell_fee + dev_sell_fee;

        mkt_receiver_wallet = address(0x7d0a607Fe8a512f1250802F02066F61c3b0e5935);
        dev_receiver_wallet = address(msg.sender);

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

        excludeFromMaxTransaction(msg.sender, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(mkt_receiver_wallet, true);

        transferOwnership(msg.sender);

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

    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackinfo()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function limitsinfo()
        external
        view
        returns (
            bool _limitsInEffect,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _mkt_receiver_wallet The wallet that receives the marketing fees
     * @return _dev_receiver_wallet The wallet that receives the dev fees
     */
    function feewallets()
        external
        view
        returns (
            address _mkt_receiver_wallet,
            address _dev_receiver_wallet
        )
    {
        return (mkt_receiver_wallet, dev_receiver_wallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _total_buy_fee The total fee for buys
     * @return _mkt_buy_fee The fee for buys that gets sent to marketing
     * @return _dev_buy_fee The fee for buys that gets sent to dev
     * @return _total_sell_fee The total fee for sells
     * @return _mkt_sell_fee The fee for sells that gets sent to marketing
     * @return _dev_sell_fee The fee for sells that gets sent to dev
     */
    function feeinfo()
        external
        view
        returns (
            uint256 _total_buy_fee,
            uint256 _mkt_buy_fee,
            uint256 _dev_buy_fee,
            uint256 _total_sell_fee,
            uint256 _mkt_sell_fee,
            uint256 _dev_sell_fee
        )
    {
        _total_buy_fee = total_buy_fee;
        _mkt_buy_fee = mkt_buy_fee;
        _dev_buy_fee = dev_buy_fee;
        _total_sell_fee = total_sell_fee;
        _mkt_sell_fee = mkt_sell_fee;
        _dev_sell_fee = dev_sell_fee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function checkmappings(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function launch() external onlyOwner {
        tradingLive = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBackSettings(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setTxLimit(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setWalletLimit(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setBuyFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        mkt_buy_fee = _marketingFee;
        dev_buy_fee = _devFee;
        total_buy_fee = mkt_buy_fee + dev_buy_fee;
        require(total_buy_fee <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(total_buy_fee, mkt_buy_fee, dev_buy_fee);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        mkt_sell_fee = _marketingFee;
        dev_sell_fee = _devFee;
        total_sell_fee = mkt_sell_fee + dev_sell_fee;
        require(
            total_sell_fee <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(total_sell_fee, mkt_sell_fee, dev_sell_fee);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isFeeExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {mkt_receiver_walletUpdated} event
     * @param newWallet The new marketing wallet
     */
    function setMarketingWallet(address newWallet) external onlyOwner {
        emit mkt_receiver_walletUpdated(newWallet, mkt_receiver_wallet);
        mkt_receiver_wallet = newWallet;
    }

    /**
     * @notice Sets the dev wallet
     * @dev onlyOwner.
     * Emits an {dev_receiver_walletUpdated} event
     * @param newWallet The new dev wallet
     */
    function setDevWallet(address newWallet) external onlyOwner {
        emit dev_receiver_walletUpdated(newWallet, dev_receiver_wallet);
        dev_receiver_wallet = newWallet;
    }

    function setDelay() external onlyOwner {
        require(delayOn, "wl disabled");
        delayOn = false;
    }

    function setDelayOn(address[] calldata _addresses, bool _enabled)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            _isDelayExempt[_addresses[i]] = _enabled;
        }
    }

    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 (!tradingLive) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }
                if (delayOn) {
                    require(
                        _isDelayExempt[from] || _isDelayExempt[to],
                        "_transfer:: Transfer Delay enabled. "
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(dexRouter) &&
                        to != address(dexPair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !isFeeExempt[from] &&
            !isFeeExempt[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && total_sell_fee > 0) {
                fees = amount.mul(total_sell_fee).div(100);
                tokensForDev += (fees * dev_sell_fee) / total_sell_fee;
                tokensForMarketing += (fees * mkt_sell_fee) / total_sell_fee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && total_buy_fee > 0) {
                fees = amount.mul(total_buy_fee).div(100);
                tokensForDev += (fees * dev_buy_fee) / total_buy_fee;
                tokensForMarketing += (fees * mkt_buy_fee) / total_buy_fee;
            }

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

            amount -= fees;
        }

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

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

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

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


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(dev_receiver_wallet).call{value: ethForDev}("");

        (success, ) = address(mkt_receiver_wallet).call{value: address(this).balance}(
            ""
        );
    }
}

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":false,"internalType":"uint256","name":"total_buy_fee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mkt_buy_fee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"dev_buy_fee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":false,"internalType":"uint256","name":"total_sell_fee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mkt_sell_fee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"dev_sell_fee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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":false,"internalType":"uint256","name":"percentBurnt","type":"uint256"}],"name":"TriggerBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"dev_receiver_walletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mkt_receiver_walletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkmappings","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":[],"name":"feeinfo","outputs":[{"internalType":"uint256","name":"_total_buy_fee","type":"uint256"},{"internalType":"uint256","name":"_mkt_buy_fee","type":"uint256"},{"internalType":"uint256","name":"_dev_buy_fee","type":"uint256"},{"internalType":"uint256","name":"_total_sell_fee","type":"uint256"},{"internalType":"uint256","name":"_mkt_sell_fee","type":"uint256"},{"internalType":"uint256","name":"_dev_sell_fee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feewallets","outputs":[{"internalType":"address","name":"_mkt_receiver_wallet","type":"address"},{"internalType":"address","name":"_dev_receiver_wallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsinfo","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDelayOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackinfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","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":"tradingLive","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805462ffffff191662010101179055600d805460ff191690553480156200003957600080fd5b5060405180604001604052806005815260200164506f6e6b6f60d81b81525060405180604001604052806005815260200164504f4e4b4f60d81b815250816003908162000087919062000852565b50600462000096828262000852565b505050620000b3620000ad6200040760201b60201c565b6200040b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d58160016200045d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014691906200091e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba91906200091e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e91906200091e565b6001600160a01b031660a0819052620002499060016200045d565b60a051620002599060016200050c565b601e600081816707b3c18f3a5780006103e86200027882600a62000966565b62000284919062000986565b600a9081556103e8906200029a90839062000966565b620002a6919062000986565b6009556103e8620002b982600162000966565b620002c5919062000986565b6006556064620002d782600262000966565b620002e3919062000986565b60075560108590556011849055620002fc8486620009a9565b600f5560138390556014829055620003158284620009a9565b601255600d8054610100600160a81b031916747d0a607fe8a512f1250802f02066f61c3b0e593500179055600e8054336001600160a01b031990911681179091556200036390600162000560565b6200037030600162000560565b6200037f61dead600162000560565b600d546200039d9061010090046001600160a01b0316600162000560565b620003aa3360016200045d565b620003b73060016200045d565b620003c661dead60016200045d565b600d54620003e49061010090046001600160a01b031660016200045d565b620003ef3362000604565b620003fb3382620006c4565b505050505050620009bf565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004ac5760405162461bcd60e51b81526020600482018190526024820152600080516020620032e383398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005ab5760405162461bcd60e51b81526020600482018190526024820152600080516020620032e38339815191526044820152606401620004a3565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000500565b6005546001600160a01b031633146200064f5760405162461bcd60e51b81526020600482018190526024820152600080516020620032e38339815191526044820152606401620004a3565b6001600160a01b038116620006b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004a3565b620006c1816200040b565b50565b6001600160a01b0382166200071c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004a3565b8060026000828254620007309190620009a9565b90915550506001600160a01b038216600090815260208190526040812080548392906200075f908490620009a9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007d957607f821691505b602082108103620007fa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007a957600081815260208120601f850160051c81016020861015620008295750805b601f850160051c820191505b818110156200084a5782815560010162000835565b505050505050565b81516001600160401b038111156200086e576200086e620007ae565b62000886816200087f8454620007c4565b8462000800565b602080601f831160018114620008be5760008415620008a55750858301515b600019600386901b1c1916600185901b1785556200084a565b600085815260208120601f198616915b82811015620008ef57888601518255948401946001909101908401620008ce565b50858210156200090e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200093157600080fd5b81516001600160a01b03811681146200094957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000980576200098062000950565b92915050565b600082620009a457634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000980576200098062000950565b60805160a0516128db62000a086000396000818161076c01528181610e28015261190e0152600081816118d0015281816122a50152818161235e015261239a01526128db6000f3fe6080604052600436106102135760003560e01c80637571336a11610118578063c0246668116100a0578063e46444851161006f578063e4644485146106da578063e884f26014610725578063f1d5f5171461073a578063f242ab411461075a578063f2fde38b1461078e57600080fd5b8063c02466681461061c578063d08893581461063c578063dd62ed3e1461065c578063de467ce9146106a257600080fd5b80639a7a23d6116100e75780639a7a23d61461057c5780639fd8234e1461059c578063a457c2d7146105bc578063a9059cbb146105dc578063b2d8f208146105fc57600080fd5b80637571336a146104d65780637b68fd9a146104f65780638da5cb5b1461053557806395d89b411461056757600080fd5b8063313ce5671161019b5780635c85974f1161016a5780635c85974f146104365780635d098b381461045657806370a0823114610476578063715018a6146104ac578063751039fc146104c157600080fd5b8063313ce5671461039957806339509351146103b55780635418ef9f146103d557806356224ea71461042157600080fd5b806311704f52116101e257806311704f521461030057806314d178ac1461031a57806318160ddd1461033a5780631f53ac021461035957806323b872dd1461037957600080fd5b806301339c211461021f578063050b22221461023657806306fdde03146102ae578063095ea7b3146102d057600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346107ae565b005b34801561024257600080fd5b5061028a61025136600461242f565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b60408051931515845291151560208401521515908201526060015b60405180910390f35b3480156102ba57600080fd5b506102c361082e565b6040516102a5919061244c565b3480156102dc57600080fd5b506102f06102eb36600461249a565b6108c0565b60405190151581526020016102a5565b34801561030c57600080fd5b50600d546102f09060ff1681565b34801561032657600080fd5b506102346103353660046124db565b6108d7565b34801561034657600080fd5b506002545b6040519081526020016102a5565b34801561036557600080fd5b5061023461037436600461242f565b610978565b34801561038557600080fd5b506102f061039436600461255f565b6109ff565b3480156103a557600080fd5b50604051600981526020016102a5565b3480156103c157600080fd5b506102f06103d036600461249a565b610aa9565b3480156103e157600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c0016102a5565b34801561042d57600080fd5b50610234610ae5565b34801561044257600080fd5b506102346104513660046125a0565b610b63565b34801561046257600080fd5b5061023461047136600461242f565b610c3a565b34801561048257600080fd5b5061034b61049136600461242f565b6001600160a01b031660009081526020819052604090205490565b3480156104b857600080fd5b50610234610ccc565b3480156104cd57600080fd5b50610234610d02565b3480156104e257600080fd5b506102346104f13660046125b9565b610d63565b34801561050257600080fd5b50600554600654600754600160a81b90920460ff16916040805193151584526020840192909252908201526060016102a5565b34801561054157600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102a5565b34801561057357600080fd5b506102c3610ded565b34801561058857600080fd5b506102346105973660046125b9565b610dfc565b3480156105a857600080fd5b506102346105b73660046125ee565b610edb565b3480156105c857600080fd5b506102f06105d736600461249a565b610fce565b3480156105e857600080fd5b506102f06105f736600461249a565b611067565b34801561060857600080fd5b506102346106173660046125ee565b611074565b34801561062857600080fd5b506102346106373660046125b9565b61115e565b34801561064857600080fd5b50610234610657366004612610565b6111e0565b34801561066857600080fd5b5061034b610677366004612643565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ae57600080fd5b50600d54600e54604080516101009093046001600160a01b0390811684529091166020830152016102a5565b3480156106e657600080fd5b50610703600854600954600a5460ff808416946101009094041692565b60408051941515855292151560208501529183015260608201526080016102a5565b34801561073157600080fd5b5061023461137e565b34801561074657600080fd5b506102346107553660046125a0565b6113e0565b34801561076657600080fd5b5061054f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561079a57600080fd5b506102346107a936600461242f565b6114bc565b6005546001600160a01b031633146107e15760405162461bcd60e51b81526004016107d89061267c565b60405180910390fd5b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b60606003805461083d906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610869906126b1565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cd338484611557565b5060015b92915050565b6005546001600160a01b031633146109015760405162461bcd60e51b81526004016107d89061267c565b60005b828110156109725781600c6000868685818110610923576109236126eb565b9050602002016020810190610938919061242f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061096a81612717565b915050610904565b50505050565b6005546001600160a01b031633146109a25760405162461bcd60e51b81526004016107d89061267c565b600e546040516001600160a01b03918216918316907f7e2d6e40f4ff0c5e450067488f0ab15cef101bf4c6a826b145bc19d3387a333f90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a0c84848461167b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a915760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107d8565b610a9e8533858403611557565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108cd918590610ae0908690612730565b611557565b6005546001600160a01b03163314610b0f5760405162461bcd60e51b81526004016107d89061267c565b60085462010000900460ff16610b555760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b60448201526064016107d8565b6008805462ff000019169055565b6005546001600160a01b03163314610b8d5760405162461bcd60e51b81526004016107d89061267c565b6002811015610bde5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e322560448201526064016107d8565b6103e8610bea60025490565b610bf49083612743565b610bfe919061275a565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c645760405162461bcd60e51b81526004016107d89061267c565b600d546040516001600160a01b036101009092048216918316907fb539267001d50f4829b0fd02570f41ac4520f4c13c1d6406d417438b85b82be690600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cf65760405162461bcd60e51b81526004016107d89061267c565b610d006000611f0f565b565b6005546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016107d89061267c565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610d8d5760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b60606004805461083d906126b1565b6005546001600160a01b03163314610e265760405162461bcd60e51b81526004016107d89061267c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ecd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d8565b610ed78282611f61565b5050565b6005546001600160a01b03163314610f055760405162461bcd60e51b81526004016107d89061267c565b60138290556014819055610f198183612730565b601281905560641015610f805760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b60648201526084016107d8565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d8565b61105d3385858403611557565b5060019392505050565b60006108cd33848461167b565b6005546001600160a01b0316331461109e5760405162461bcd60e51b81526004016107d89061267c565b601082905560118190556110b28183612730565b600f819055606410156111185760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b60648201526084016107d8565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610fc2565b6005546001600160a01b031633146111885760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610de1565b6005546001600160a01b0316331461120a5760405162461bcd60e51b81526004016107d89061267c565b60018210156112785760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b60648201526084016107d8565b818110156112db5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b60648201526084016107d8565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906113059190612743565b61130f919061275a565b6006556127108161131f60025490565b6113299190612743565b611333919061275a565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113a85760405162461bcd60e51b81526004016107d89061267c565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b0316331461140a5760405162461bcd60e51b81526004016107d89061267c565b60058110156114675760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107d8565b6103e861147360025490565b61147d9083612743565b611487919061275a565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c2f565b6005546001600160a01b031633146114e65760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b03811661154b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d8565b61155481611f0f565b50565b6001600160a01b0383166115b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d8565b6001600160a01b03821661161a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a15760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166116c75760405162461bcd60e51b81526004016107d8906127c1565b806000036116e0576116db83836000611fb5565b505050565b60085460ff1615611c39576005546001600160a01b0384811691161480159061171757506005546001600160a01b03838116911614155b801561172b57506001600160a01b03821615155b801561174257506001600160a01b03821661dead14155b80156117585750600554600160a01b900460ff16155b15611c3957600d5460ff166117fd576001600160a01b03831660009081526017602052604090205460ff16806117a657506001600160a01b03821660009081526017602052604090205460ff165b6117fd5760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b60648201526084016107d8565b60085462010000900460ff16156118a5576001600160a01b0383166000908152600c602052604090205460ff168061184d57506001600160a01b0382166000908152600c602052604090205460ff165b6118a55760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b60648201526084016107d8565b600854610100900460ff16156119f1576005546001600160a01b0383811691161480159061190557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561194357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156119f157326000908152600b602052604090205443116119de5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107d8565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a3257506001600160a01b03821660009081526018602052604090205460ff16155b15611b0757600a54811115611a985760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b60648201526084016107d8565b6009546001600160a01b038316600090815260208190526040902054611abe9083612730565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b611c39565b6001600160a01b03821660009081526019602052604090205460ff168015611b4857506001600160a01b03831660009081526018602052604090205460ff16155b15611baf57600a54811115611b025760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b60648201526084016107d8565b6001600160a01b03821660009081526018602052604090205460ff16611c39576009546001600160a01b038316600090815260208190526040902054611bf59083612730565b1115611c395760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b3060009081526020819052604090205460065481108015908190611c665750600554600160a81b900460ff165b8015611c7c5750600554600160a01b900460ff16155b8015611ca157506001600160a01b03851660009081526019602052604090205460ff16155b8015611cc657506001600160a01b03851660009081526017602052604090205460ff16155b8015611ceb57506001600160a01b03841660009081526017602052604090205460ff16155b15611d19576005805460ff60a01b1916600160a01b179055611d0b612109565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d6757506001600160a01b03851660009081526017602052604090205460ff165b15611d70575060005b60008115611efb576001600160a01b03861660009081526019602052604090205460ff168015611da257506000601254115b15611e3057611dc76064611dc16012548861222f90919063ffffffff16565b90612242565b905060125460145482611dda9190612743565b611de4919061275a565b60166000828254611df59190612730565b9091555050601254601354611e0a9083612743565b611e14919061275a565b60156000828254611e259190612730565b90915550611edd9050565b6001600160a01b03871660009081526019602052604090205460ff168015611e5a57506000600f54115b15611edd57611e796064611dc1600f548861222f90919063ffffffff16565b9050600f5460115482611e8c9190612743565b611e96919061275a565b60166000828254611ea79190612730565b9091555050600f54601054611ebc9083612743565b611ec6919061275a565b60156000828254611ed79190612730565b90915550505b8015611eee57611eee873083611fb5565b611ef88186612804565b94505b611f06878787611fb5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fdb5760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166120015760405162461bcd60e51b81526004016107d8906127c1565b6001600160a01b038316600090815260208190526040902054818110156120795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d8565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120b0908490612730565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120fc91815260200190565b60405180910390a3610972565b3060009081526020819052604081205490819081810361212857505050565b6007548311156121385760075492505b82476121438261224e565b600061214f478361240e565b9050600061216c86611dc16016548561222f90919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50505050505050505050565b600061223b8284612743565b9392505050565b600061223b828461275a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612283576122836126eb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123259190612817565b81600181518110612338576123386126eb565b60200260200101906001600160a01b031690816001600160a01b031681525050612383307f000000000000000000000000000000000000000000000000000000000000000084611557565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123d8908590600090869030904290600401612834565b600060405180830381600087803b1580156123f257600080fd5b505af1158015612406573d6000803e3d6000fd5b505050505050565b600061223b8284612804565b6001600160a01b038116811461155457600080fd5b60006020828403121561244157600080fd5b813561223b8161241a565b600060208083528351808285015260005b818110156124795785810183015185820160400152820161245d565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156124ad57600080fd5b82356124b88161241a565b946020939093013593505050565b803580151581146124d657600080fd5b919050565b6000806000604084860312156124f057600080fd5b833567ffffffffffffffff8082111561250857600080fd5b818601915086601f83011261251c57600080fd5b81358181111561252b57600080fd5b8760208260051b850101111561254057600080fd5b60209283019550935061255691860190506124c6565b90509250925092565b60008060006060848603121561257457600080fd5b833561257f8161241a565b9250602084013561258f8161241a565b929592945050506040919091013590565b6000602082840312156125b257600080fd5b5035919050565b600080604083850312156125cc57600080fd5b82356125d78161241a565b91506125e5602084016124c6565b90509250929050565b6000806040838503121561260157600080fd5b50508035926020909101359150565b60008060006060848603121561262557600080fd5b61262e846124c6565b95602085013595506040909401359392505050565b6000806040838503121561265657600080fd5b82356126618161241a565b915060208301356126718161241a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806126c557607f821691505b6020821081036126e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161272957612729612701565b5060010190565b808201808211156108d1576108d1612701565b80820281158282048414176108d1576108d1612701565b60008261277757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108d1576108d1612701565b60006020828403121561282957600080fd5b815161223b8161241a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220489ad0691a6a0398c860db7097f6a745268d28a1c688a44894a0571f0e33b5a464736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102135760003560e01c80637571336a11610118578063c0246668116100a0578063e46444851161006f578063e4644485146106da578063e884f26014610725578063f1d5f5171461073a578063f242ab411461075a578063f2fde38b1461078e57600080fd5b8063c02466681461061c578063d08893581461063c578063dd62ed3e1461065c578063de467ce9146106a257600080fd5b80639a7a23d6116100e75780639a7a23d61461057c5780639fd8234e1461059c578063a457c2d7146105bc578063a9059cbb146105dc578063b2d8f208146105fc57600080fd5b80637571336a146104d65780637b68fd9a146104f65780638da5cb5b1461053557806395d89b411461056757600080fd5b8063313ce5671161019b5780635c85974f1161016a5780635c85974f146104365780635d098b381461045657806370a0823114610476578063715018a6146104ac578063751039fc146104c157600080fd5b8063313ce5671461039957806339509351146103b55780635418ef9f146103d557806356224ea71461042157600080fd5b806311704f52116101e257806311704f521461030057806314d178ac1461031a57806318160ddd1461033a5780631f53ac021461035957806323b872dd1461037957600080fd5b806301339c211461021f578063050b22221461023657806306fdde03146102ae578063095ea7b3146102d057600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346107ae565b005b34801561024257600080fd5b5061028a61025136600461242f565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b60408051931515845291151560208401521515908201526060015b60405180910390f35b3480156102ba57600080fd5b506102c361082e565b6040516102a5919061244c565b3480156102dc57600080fd5b506102f06102eb36600461249a565b6108c0565b60405190151581526020016102a5565b34801561030c57600080fd5b50600d546102f09060ff1681565b34801561032657600080fd5b506102346103353660046124db565b6108d7565b34801561034657600080fd5b506002545b6040519081526020016102a5565b34801561036557600080fd5b5061023461037436600461242f565b610978565b34801561038557600080fd5b506102f061039436600461255f565b6109ff565b3480156103a557600080fd5b50604051600981526020016102a5565b3480156103c157600080fd5b506102f06103d036600461249a565b610aa9565b3480156103e157600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c0016102a5565b34801561042d57600080fd5b50610234610ae5565b34801561044257600080fd5b506102346104513660046125a0565b610b63565b34801561046257600080fd5b5061023461047136600461242f565b610c3a565b34801561048257600080fd5b5061034b61049136600461242f565b6001600160a01b031660009081526020819052604090205490565b3480156104b857600080fd5b50610234610ccc565b3480156104cd57600080fd5b50610234610d02565b3480156104e257600080fd5b506102346104f13660046125b9565b610d63565b34801561050257600080fd5b50600554600654600754600160a81b90920460ff16916040805193151584526020840192909252908201526060016102a5565b34801561054157600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102a5565b34801561057357600080fd5b506102c3610ded565b34801561058857600080fd5b506102346105973660046125b9565b610dfc565b3480156105a857600080fd5b506102346105b73660046125ee565b610edb565b3480156105c857600080fd5b506102f06105d736600461249a565b610fce565b3480156105e857600080fd5b506102f06105f736600461249a565b611067565b34801561060857600080fd5b506102346106173660046125ee565b611074565b34801561062857600080fd5b506102346106373660046125b9565b61115e565b34801561064857600080fd5b50610234610657366004612610565b6111e0565b34801561066857600080fd5b5061034b610677366004612643565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ae57600080fd5b50600d54600e54604080516101009093046001600160a01b0390811684529091166020830152016102a5565b3480156106e657600080fd5b50610703600854600954600a5460ff808416946101009094041692565b60408051941515855292151560208501529183015260608201526080016102a5565b34801561073157600080fd5b5061023461137e565b34801561074657600080fd5b506102346107553660046125a0565b6113e0565b34801561076657600080fd5b5061054f7f000000000000000000000000cf8f6807cfaf62b4185558e92221e9d4f397546d81565b34801561079a57600080fd5b506102346107a936600461242f565b6114bc565b6005546001600160a01b031633146107e15760405162461bcd60e51b81526004016107d89061267c565b60405180910390fd5b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b60606003805461083d906126b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610869906126b1565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cd338484611557565b5060015b92915050565b6005546001600160a01b031633146109015760405162461bcd60e51b81526004016107d89061267c565b60005b828110156109725781600c6000868685818110610923576109236126eb565b9050602002016020810190610938919061242f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061096a81612717565b915050610904565b50505050565b6005546001600160a01b031633146109a25760405162461bcd60e51b81526004016107d89061267c565b600e546040516001600160a01b03918216918316907f7e2d6e40f4ff0c5e450067488f0ab15cef101bf4c6a826b145bc19d3387a333f90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a0c84848461167b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a915760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107d8565b610a9e8533858403611557565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108cd918590610ae0908690612730565b611557565b6005546001600160a01b03163314610b0f5760405162461bcd60e51b81526004016107d89061267c565b60085462010000900460ff16610b555760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b60448201526064016107d8565b6008805462ff000019169055565b6005546001600160a01b03163314610b8d5760405162461bcd60e51b81526004016107d89061267c565b6002811015610bde5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e322560448201526064016107d8565b6103e8610bea60025490565b610bf49083612743565b610bfe919061275a565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c645760405162461bcd60e51b81526004016107d89061267c565b600d546040516001600160a01b036101009092048216918316907fb539267001d50f4829b0fd02570f41ac4520f4c13c1d6406d417438b85b82be690600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cf65760405162461bcd60e51b81526004016107d89061267c565b610d006000611f0f565b565b6005546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016107d89061267c565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610d8d5760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b60606004805461083d906126b1565b6005546001600160a01b03163314610e265760405162461bcd60e51b81526004016107d89061267c565b7f000000000000000000000000cf8f6807cfaf62b4185558e92221e9d4f397546d6001600160a01b0316826001600160a01b031603610ecd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d8565b610ed78282611f61565b5050565b6005546001600160a01b03163314610f055760405162461bcd60e51b81526004016107d89061267c565b60138290556014819055610f198183612730565b601281905560641015610f805760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b60648201526084016107d8565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d8565b61105d3385858403611557565b5060019392505050565b60006108cd33848461167b565b6005546001600160a01b0316331461109e5760405162461bcd60e51b81526004016107d89061267c565b601082905560118190556110b28183612730565b600f819055606410156111185760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b60648201526084016107d8565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610fc2565b6005546001600160a01b031633146111885760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610de1565b6005546001600160a01b0316331461120a5760405162461bcd60e51b81526004016107d89061267c565b60018210156112785760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b60648201526084016107d8565b818110156112db5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b60648201526084016107d8565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906113059190612743565b61130f919061275a565b6006556127108161131f60025490565b6113299190612743565b611333919061275a565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113a85760405162461bcd60e51b81526004016107d89061267c565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b0316331461140a5760405162461bcd60e51b81526004016107d89061267c565b60058110156114675760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107d8565b6103e861147360025490565b61147d9083612743565b611487919061275a565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c2f565b6005546001600160a01b031633146114e65760405162461bcd60e51b81526004016107d89061267c565b6001600160a01b03811661154b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d8565b61155481611f0f565b50565b6001600160a01b0383166115b95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d8565b6001600160a01b03821661161a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116a15760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166116c75760405162461bcd60e51b81526004016107d8906127c1565b806000036116e0576116db83836000611fb5565b505050565b60085460ff1615611c39576005546001600160a01b0384811691161480159061171757506005546001600160a01b03838116911614155b801561172b57506001600160a01b03821615155b801561174257506001600160a01b03821661dead14155b80156117585750600554600160a01b900460ff16155b15611c3957600d5460ff166117fd576001600160a01b03831660009081526017602052604090205460ff16806117a657506001600160a01b03821660009081526017602052604090205460ff165b6117fd5760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b60648201526084016107d8565b60085462010000900460ff16156118a5576001600160a01b0383166000908152600c602052604090205460ff168061184d57506001600160a01b0382166000908152600c602052604090205460ff165b6118a55760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b60648201526084016107d8565b600854610100900460ff16156119f1576005546001600160a01b0383811691161480159061190557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561194357507f000000000000000000000000cf8f6807cfaf62b4185558e92221e9d4f397546d6001600160a01b0316826001600160a01b031614155b156119f157326000908152600b602052604090205443116119de5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016107d8565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a3257506001600160a01b03821660009081526018602052604090205460ff16155b15611b0757600a54811115611a985760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b60648201526084016107d8565b6009546001600160a01b038316600090815260208190526040902054611abe9083612730565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b611c39565b6001600160a01b03821660009081526019602052604090205460ff168015611b4857506001600160a01b03831660009081526018602052604090205460ff16155b15611baf57600a54811115611b025760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b60648201526084016107d8565b6001600160a01b03821660009081526018602052604090205460ff16611c39576009546001600160a01b038316600090815260208190526040902054611bf59083612730565b1115611c395760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d8565b3060009081526020819052604090205460065481108015908190611c665750600554600160a81b900460ff165b8015611c7c5750600554600160a01b900460ff16155b8015611ca157506001600160a01b03851660009081526019602052604090205460ff16155b8015611cc657506001600160a01b03851660009081526017602052604090205460ff16155b8015611ceb57506001600160a01b03841660009081526017602052604090205460ff16155b15611d19576005805460ff60a01b1916600160a01b179055611d0b612109565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d6757506001600160a01b03851660009081526017602052604090205460ff165b15611d70575060005b60008115611efb576001600160a01b03861660009081526019602052604090205460ff168015611da257506000601254115b15611e3057611dc76064611dc16012548861222f90919063ffffffff16565b90612242565b905060125460145482611dda9190612743565b611de4919061275a565b60166000828254611df59190612730565b9091555050601254601354611e0a9083612743565b611e14919061275a565b60156000828254611e259190612730565b90915550611edd9050565b6001600160a01b03871660009081526019602052604090205460ff168015611e5a57506000600f54115b15611edd57611e796064611dc1600f548861222f90919063ffffffff16565b9050600f5460115482611e8c9190612743565b611e96919061275a565b60166000828254611ea79190612730565b9091555050600f54601054611ebc9083612743565b611ec6919061275a565b60156000828254611ed79190612730565b90915550505b8015611eee57611eee873083611fb5565b611ef88186612804565b94505b611f06878787611fb5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611fdb5760405162461bcd60e51b81526004016107d89061277c565b6001600160a01b0382166120015760405162461bcd60e51b81526004016107d8906127c1565b6001600160a01b038316600090815260208190526040902054818110156120795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d8565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120b0908490612730565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120fc91815260200190565b60405180910390a3610972565b3060009081526020819052604081205490819081810361212857505050565b6007548311156121385760075492505b82476121438261224e565b600061214f478361240e565b9050600061216c86611dc16016548561222f90919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50505050505050505050565b600061223b8284612743565b9392505050565b600061223b828461275a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612283576122836126eb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612301573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123259190612817565b81600181518110612338576123386126eb565b60200260200101906001600160a01b031690816001600160a01b031681525050612383307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611557565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123d8908590600090869030904290600401612834565b600060405180830381600087803b1580156123f257600080fd5b505af1158015612406573d6000803e3d6000fd5b505050505050565b600061223b8284612804565b6001600160a01b038116811461155457600080fd5b60006020828403121561244157600080fd5b813561223b8161241a565b600060208083528351808285015260005b818110156124795785810183015185820160400152820161245d565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156124ad57600080fd5b82356124b88161241a565b946020939093013593505050565b803580151581146124d657600080fd5b919050565b6000806000604084860312156124f057600080fd5b833567ffffffffffffffff8082111561250857600080fd5b818601915086601f83011261251c57600080fd5b81358181111561252b57600080fd5b8760208260051b850101111561254057600080fd5b60209283019550935061255691860190506124c6565b90509250925092565b60008060006060848603121561257457600080fd5b833561257f8161241a565b9250602084013561258f8161241a565b929592945050506040919091013590565b6000602082840312156125b257600080fd5b5035919050565b600080604083850312156125cc57600080fd5b82356125d78161241a565b91506125e5602084016124c6565b90509250929050565b6000806040838503121561260157600080fd5b50508035926020909101359150565b60008060006060848603121561262557600080fd5b61262e846124c6565b95602085013595506040909401359392505050565b6000806040838503121561265657600080fd5b82356126618161241a565b915060208301356126718161241a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806126c557607f821691505b6020821081036126e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161272957612729612701565b5060010190565b808201808211156108d1576108d1612701565b80820281158282048414176108d1576108d1612701565b60008261277757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108d1576108d1612701565b60006020828403121561282957600080fd5b815161223b8161241a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220489ad0691a6a0398c860db7097f6a745268d28a1c688a44894a0571f0e33b5a464736f6c63430008130033

Deployed Bytecode Sourcemap

25436:22209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34673:154;;;;;;;;;;;;;:::i;:::-;;34112:418;;;;;;;;;;-1:-1:-1;34112:418:0;;;;;:::i;:::-;-1:-1:-1;;;;;34374:20:0;34232:17;34374:20;;;:11;:20;;;;;;;;;34424:15;:24;;;;;;34488:25;:34;;;;;;34374:20;;;;;34424:24;;;;34488:34;;34112:418;;;;;611:14:1;;604:22;586:41;;670:14;;663:22;658:2;643:18;;636:50;729:14;722:22;702:18;;;695:50;574:2;559:18;34112:418:0;;;;;;;;10976:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13209:194::-;;;;;;;;;;-1:-1:-1;13209:194:0;;;;;:::i;:::-;;:::i;:::-;;;1794:14:1;;1787:22;1769:41;;1757:2;1742:18;13209:194:0;1629:187:1;26146:31:0;;;;;;;;;;-1:-1:-1;26146:31:0;;;;;;;;41295:241;;;;;;;;;;-1:-1:-1;41295:241:0;;;;;:::i;:::-;;:::i;12096:108::-;;;;;;;;;;-1:-1:-1;12184:12:0;;12096:108;;;2826:25:1;;;2814:2;2799:18;12096:108:0;2680:177:1;40980:184:0;;;;;;;;;;-1:-1:-1;40980:184:0;;;;;:::i;:::-;;:::i;13881:529::-;;;;;;;;;;-1:-1:-1;13881:529:0;;;;;:::i;:::-;;:::i;30541:92::-;;;;;;;;;;-1:-1:-1;30541:92:0;;30624:1;3465:36:1;;3453:2;3438:18;30541:92:0;3323:184:1;14815:290:0;;;;;;;;;;-1:-1:-1;14815:290:0;;;;;:::i;:::-;;:::i;33116:546::-;;;;;;;;;;-1:-1:-1;33446:13:0;;33485:11;;33522;;33562:14;;33603:12;;33642;;33116:546;;;3799:25:1;;;3855:2;3840:18;;3833:34;;;;3883:18;;;3876:34;;;;3941:2;3926:18;;3919:34;3984:3;3969:19;;3962:35;4028:3;4013:19;;4006:35;3786:3;3771:19;33116:546:0;3512:535:1;41172:115:0;;;;;;;;;;;;;:::i;36658:215::-;;;;;;;;;;-1:-1:-1;36658:215:0;;;;;:::i;:::-;;:::i;40608:190::-;;;;;;;;;;-1:-1:-1;40608:190:0;;;;;:::i;:::-;;:::i;12267:143::-;;;;;;;;;;-1:-1:-1;12267:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12384:18:0;12357:7;12384:18;;;;;;;;;;;;12267:143;22315:103;;;;;;;;;;;;;:::i;34982:130::-;;;;;;;;;;;;;:::i;37583:200::-;;;;;;;;;;-1:-1:-1;37583:200:0;;;;;:::i;:::-;;:::i;30992:353::-;;;;;;;;;;-1:-1:-1;31228:15:0;;31274:16;;31321;;-1:-1:-1;;;31228:15:0;;;;;;30992:353;;;4778:14:1;;4771:22;4753:41;;4825:2;4810:18;;4803:34;;;;4853:18;;;4846:34;4741:2;4726:18;30992:353:0;4557:329:1;21664:87:0;;;;;;;;;;-1:-1:-1;21737:6:0;;-1:-1:-1;;;;;21737:6:0;21664:87;;;-1:-1:-1;;;;;5055:32:1;;;5037:51;;5025:2;5010:18;21664:87:0;4891:203:1;11195:104:0;;;;;;;;;;;;;:::i;39918:300::-;;;;;;;;;;-1:-1:-1;39918:300:0;;;;;:::i;:::-;;:::i;38747:437::-;;;;;;;;;;-1:-1:-1;38747:437:0;;;;;:::i;:::-;;:::i;15604:475::-;;;;;;;;;;-1:-1:-1;15604:475:0;;;;;:::i;:::-;;:::i;12623:200::-;;;;;;;;;;-1:-1:-1;12623:200:0;;;;;:::i;:::-;;:::i;38070:388::-;;;;;;;;;;-1:-1:-1;38070:388:0;;;;;:::i;:::-;;:::i;39433:174::-;;;;;;;;;;-1:-1:-1;39433:174:0;;;;;:::i;:::-;;:::i;35869:553::-;;;;;;;;;;-1:-1:-1;35869:553:0;;;;;:::i;:::-;;:::i;12886:176::-;;;;;;;;;;-1:-1:-1;12886:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13027:18:0;;;13000:7;13027:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12886:176;32398:242;;;;;;;;;;-1:-1:-1;32591:19:0;;32612;;32398:242;;;32591:19;;;;-1:-1:-1;;;;;32591:19:0;;;6278:34:1;;32612:19:0;;;6343:2:1;6328:18;;6321:43;6213:18;32398:242:0;6066:304:1;31766:390:0;;;;;;;;;;;;32021:14;;32114:9;;32143:5;;32021:14;;;;;;32070:20;;;;;31766:390;;;;;6619:14:1;;6612:22;6594:41;;6678:14;;6671:22;6666:2;6651:18;;6644:50;6710:18;;;6703:34;6768:2;6753:18;;6746:34;6581:3;6566:19;31766:390:0;6375:411:1;35252:152:0;;;;;;;;;;;;;:::i;37080:235::-;;;;;;;;;;-1:-1:-1;37080:235:0;;;;;:::i;:::-;;:::i;25556:32::-;;;;;;;;;;;;;;;22573:238;;;;;;;;;;-1:-1:-1;22573:238:0;;;;;:::i;:::-;;:::i;34673:154::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;;;;;;;;;34721:11:::1;:18:::0;;-1:-1:-1;;34721:18:0::1;34735:4;34721:18;::::0;;34750:15:::1;:22:::0;;-1:-1:-1;;;;34750:22:0::1;-1:-1:-1::0;;;34750:22:0::1;::::0;;34788:31:::1;::::0;34803:15:::1;::::0;34788:31:::1;::::0;34721:11:::1;::::0;34788:31:::1;34673:154::o:0;10976:100::-;11030:13;11063:5;11056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10976:100;:::o;13209:194::-;13317:4;13334:39;10062:10;13357:7;13366:6;13334:8;:39::i;:::-;-1:-1:-1;13391:4:0;13209:194;;;;;:::o;41295:241::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;41419:9:::1;41414:115;41434:21:::0;;::::1;41414:115;;;41509:8;41477:14;:29;41492:10;;41503:1;41492:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41477:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41477:29:0;:40;;-1:-1:-1;;41477:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41457:3;::::1;::::0;::::1;:::i;:::-;;;;41414:115;;;;41295:241:::0;;;:::o;40980:184::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;41094:19:::1;::::0;41056:58:::1;::::0;-1:-1:-1;;;;;41094:19:0;;::::1;::::0;41056:58;::::1;::::0;::::1;::::0;41094:19:::1;::::0;41056:58:::1;41125:19;:31:::0;;-1:-1:-1;;;;;;41125:31:0::1;-1:-1:-1::0;;;;;41125:31:0;;;::::1;::::0;;;::::1;::::0;;40980:184::o;13881:529::-;14021:4;14038:36;14048:6;14056:9;14067:6;14038:9;:36::i;:::-;-1:-1:-1;;;;;14114:19:0;;14087:24;14114:19;;;:11;:19;;;;;;;;10062:10;14114:33;;;;;;;;14180:26;;;;14158:116;;;;-1:-1:-1;;;14158:116:0;;8143:2:1;14158:116:0;;;8125:21:1;8182:2;8162:18;;;8155:30;8221:34;8201:18;;;8194:62;-1:-1:-1;;;8272:18:1;;;8265:38;8320:19;;14158:116:0;7941:404:1;14158:116:0;14310:57;14319:6;10062:10;14360:6;14341:16;:25;14310:8;:57::i;:::-;-1:-1:-1;14398:4:0;;13881:529;-1:-1:-1;;;;13881:529:0:o;14815:290::-;10062:10;14928:4;15017:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15017:34:0;;;;;;;;;;14928:4;;14945:130;;14995:7;;15017:47;;15054:10;;15017:47;:::i;:::-;14945:8;:130::i;41172:115::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;41230:7:::1;::::0;;;::::1;;;41222:31;;;::::0;-1:-1:-1;;;41222:31:0;;8682:2:1;41222:31:0::1;::::0;::::1;8664:21:1::0;8721:2;8701:18;;;8694:30;-1:-1:-1;;;8740:18:1;;;8733:41;8791:18;;41222:31:0::1;8480:335:1::0;41222:31:0::1;41264:7;:15:::0;;-1:-1:-1;;41264:15:0::1;::::0;;41172:115::o;36658:215::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;36742:1:::1;36732:6;:11;;36724:56;;;::::0;-1:-1:-1;;;36724:56:0;;9022:2:1;36724:56:0::1;::::0;::::1;9004:21:1::0;;;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;9152:18;;36724:56:0::1;8820:356:1::0;36724:56:0::1;36826:4;36809:13;12184:12:::0;;;12096:108;36809:13:::1;36800:22;::::0;:6;:22:::1;:::i;:::-;36799:31;;;;:::i;:::-;36791:5;:39:::0;;;36846:19:::1;::::0;2826:25:1;;;36846:19:0::1;::::0;2814:2:1;2799:18;36846:19:0::1;;;;;;;;36658:215:::0;:::o;40608:190::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;40728:19:::1;::::0;40690:58:::1;::::0;-1:-1:-1;;;;;40728:19:0::1;::::0;;::::1;::::0;::::1;::::0;40690:58;::::1;::::0;::::1;::::0;;;::::1;40759:19;:31:::0;;-1:-1:-1;;;;;40759:31:0;;::::1;;;-1:-1:-1::0;;;;;;40759:31:0;;::::1;::::0;;;::::1;::::0;;40608:190::o;22315:103::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;22380:30:::1;22407:1;22380:18;:30::i;:::-;22315:103::o:0;34982:130::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;35036:14:::1;:22:::0;;-1:-1:-1;;35036:22:0::1;::::0;;35074:30:::1;::::0;35088:15:::1;::::0;35074:30:::1;::::0;35053:5:::1;::::0;35074:30:::1;34982:130::o:0;37583:200::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37698:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;37698:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37744:31;;1769:41:1;;;37744:31:0::1;::::0;1742:18:1;37744:31:0::1;;;;;;;;37583:200:::0;;:::o;11195:104::-;11251:13;11284:7;11277:14;;;;;:::i;39918:300::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;40064:7:::1;-1:-1:-1::0;;;;;40056:15:0::1;:4;-1:-1:-1::0;;;;;40056:15:0::1;::::0;40034:122:::1;;;::::0;-1:-1:-1;;;40034:122:0;;9778:2:1;40034:122:0::1;::::0;::::1;9760:21:1::0;9817:2;9797:18;;;9790:30;9856:34;9836:18;;;9829:62;9927:27;9907:18;;;9900:55;9972:19;;40034:122:0::1;9576:421:1::0;40034:122:0::1;40169:41;40198:4;40204:5;40169:28;:41::i;:::-;39918:300:::0;;:::o;38747:437::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;38863:12:::1;:28:::0;;;38902:12:::1;:22:::0;;;38952:27:::1;38917:7:::0;38878:13;38952:27:::1;:::i;:::-;38935:14;:44:::0;;;39030:3:::1;-1:-1:-1::0;39012:21:0::1;38990:112;;;::::0;-1:-1:-1;;;38990:112:0;;10204:2:1;38990:112:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:39;10382:19;;38990:112:0::1;10002:405:1::0;38990:112:0::1;39133:14;::::0;39149:12:::1;::::0;39163::::1;::::0;39118:58:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;39118:58:0::1;::::0;10602:2:1;10587:18;39118:58:0::1;;;;;;;;38747:437:::0;;:::o;15604:475::-;10062:10;15722:4;15766:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15766:34:0;;;;;;;;;;15833:35;;;;15811:122;;;;-1:-1:-1;;;15811:122:0;;10938:2:1;15811:122:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:34;10996:18;;;10989:62;-1:-1:-1;;;11067:18:1;;;11060:35;11112:19;;15811:122:0;10736:401:1;15811:122:0;15969:67;10062:10;15992:7;16020:15;16001:16;:34;15969:8;:67::i;:::-;-1:-1:-1;16067:4:0;;15604:475;-1:-1:-1;;;15604:475:0:o;12623:200::-;12734:4;12751:42;10062:10;12775:9;12786:6;12751:9;:42::i;38070:388::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;38185:11:::1;:27:::0;;;38223:11:::1;:21:::0;;;38271:25:::1;38237:7:::0;38199:13;38271:25:::1;:::i;:::-;38255:13;:41:::0;;;38332:3:::1;-1:-1:-1::0;38315:20:0::1;38307:73;;;::::0;-1:-1:-1;;;38307:73:0;;11344:2:1;38307:73:0::1;::::0;::::1;11326:21:1::0;11383:2;11363:18;;;11356:30;11422:34;11402:18;;;11395:62;-1:-1:-1;;;11473:18:1;;;11466:38;11521:19;;38307:73:0::1;11142:404:1::0;38307:73:0::1;38410:13;::::0;38425:11:::1;::::0;38438::::1;::::0;38396:54:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;38396:54:0::1;::::0;10602:2:1;10587:18;38396:54:0::1;10412:319:1::0;39433:174:0;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39518:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;39518:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39565:34;;1769:41:1;;;39565:34:0::1;::::0;1742:18:1;39565:34:0::1;1629:187:1::0;35869:553:0;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;36035:1:::1;36027:4;:9;;36005:111;;;::::0;-1:-1:-1;;;36005:111:0;;11753:2:1;36005:111:0::1;::::0;::::1;11735:21:1::0;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:50;11942:19;;36005:111:0::1;11551:416:1::0;36005:111:0::1;36143:4;36135;:12;;36127:67;;;::::0;-1:-1:-1;;;36127:67:0;;12174:2:1;36127:67:0::1;::::0;::::1;12156:21:1::0;12213:2;12193:18;;;12186:30;12252:34;12232:18;;;12225:62;-1:-1:-1;;;12303:18:1;;;12296:40;12353:19;;36127:67:0::1;11972:406:1::0;36127:67:0::1;36207:15;:26:::0;;-1:-1:-1;;;;36207:26:0::1;-1:-1:-1::0;;;36207:26:0;::::1;;;;::::0;;12184:12;;36288:5:::1;::::0;36280:4;;36264:20:::1;;;;:::i;:::-;36263:30;;;;:::i;:::-;36244:16;:49:::0;36348:5:::1;36340:4:::0;36324:13:::1;12184:12:::0;;;12096:108;36324:13:::1;:20;;;;:::i;:::-;36323:30;;;;:::i;:::-;36304:16;:49:::0;36369:45:::1;::::0;;4778:14:1;;4771:22;4753:41;;4825:2;4810:18;;4803:34;;;4853:18;;;4846:34;;;36369:45:0::1;::::0;4741:2:1;4726:18;36369:45:0::1;;;;;;;35869:553:::0;;;:::o;35252:152::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;35314:20:::1;:28:::0;;-1:-1:-1;;35314:28:0::1;::::0;;35358:38:::1;::::0;35380:15:::1;::::0;35358:38:::1;::::0;35337:5:::1;::::0;35358:38:::1;35252:152::o:0;37080:235::-;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;37168:1:::1;37158:6;:11;;37150:60;;;::::0;-1:-1:-1;;;37150:60:0;;12585:2:1;37150:60:0::1;::::0;::::1;12567:21:1::0;12624:2;12604:18;;;12597:30;12663:34;12643:18;;;12636:62;-1:-1:-1;;;12714:18:1;;;12707:34;12758:19;;37150:60:0::1;12383:400:1::0;37150:60:0::1;37260:4;37243:13;12184:12:::0;;;12096:108;37243:13:::1;37234:22;::::0;:6;:22:::1;:::i;:::-;37233:31;;;;:::i;:::-;37221:9;:43:::0;;;37280:27:::1;::::0;2826:25:1;;;37280:27:0::1;::::0;2814:2:1;2799:18;37280:27:0::1;2680:177:1::0;22573:238:0;21737:6;;-1:-1:-1;;;;;21737:6:0;10062:10;21884:23;21876:68;;;;-1:-1:-1;;;21876:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22676:22:0;::::1;22654:110;;;::::0;-1:-1:-1;;;22654:110:0;;12990:2:1;22654:110:0::1;::::0;::::1;12972:21:1::0;13029:2;13009:18;;;13002:30;13068:34;13048:18;;;13041:62;-1:-1:-1;;;13119:18:1;;;13112:36;13165:19;;22654:110:0::1;12788:402:1::0;22654:110:0::1;22775:28;22794:8;22775:18;:28::i;:::-;22573:238:::0;:::o;19387:380::-;-1:-1:-1;;;;;19523:19:0;;19515:68;;;;-1:-1:-1;;;19515:68:0;;13397:2:1;19515:68:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:34;13570:19;;19515:68:0;13195:400:1;19515:68:0;-1:-1:-1;;;;;19602:21:0;;19594:68;;;;-1:-1:-1;;;19594:68:0;;13802:2:1;19594:68:0;;;13784:21:1;13841:2;13821:18;;;13814:30;13880:34;13860:18;;;13853:62;-1:-1:-1;;;13931:18:1;;;13924:32;13973:19;;19594:68:0;13600:398:1;19594:68:0;-1:-1:-1;;;;;19675:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19727:32;;2826:25:1;;;19727:32:0;;2799:18:1;19727:32:0;;;;;;;19387:380;;;:::o;41544:4559::-;-1:-1:-1;;;;;41676:18:0;;41668:68;;;;-1:-1:-1;;;41668:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41755:16:0;;41747:64;;;;-1:-1:-1;;;41747:64:0;;;;;;;:::i;:::-;41828:6;41838:1;41828:11;41824:93;;41856:28;41872:4;41878:2;41882:1;41856:15;:28::i;:::-;41544:4559;;;:::o;41824:93::-;41933:14;;;;41929:2517;;;21737:6;;-1:-1:-1;;;;;41986:15:0;;;21737:6;;41986:15;;;;:49;;-1:-1:-1;21737:6:0;;-1:-1:-1;;;;;42022:13:0;;;21737:6;;42022:13;;41986:49;:86;;;;-1:-1:-1;;;;;;42056:16:0;;;;41986:86;:128;;;;-1:-1:-1;;;;;;42093:21:0;;42107:6;42093:21;;41986:128;:158;;;;-1:-1:-1;42136:8:0;;-1:-1:-1;;;42136:8:0;;;;42135:9;41986:158;41964:2471;;;42184:11;;;;42179:217;;-1:-1:-1;;;;;42254:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;42275:15:0;;;;;;:11;:15;;;;;;;;42254:36;42220:156;;;;-1:-1:-1;;;42220:156:0;;15015:2:1;42220:156:0;;;14997:21:1;15054:2;15034:18;;;15027:30;15093:34;15073:18;;;15066:62;-1:-1:-1;;;15144:18:1;;;15137:32;15186:19;;42220:156:0;14813:398:1;42220:156:0;42418:7;;;;;;;42414:220;;;-1:-1:-1;;;;;42484:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;42508:18:0;;;;;;:14;:18;;;;;;;;42484:42;42450:164;;;;-1:-1:-1;;;42450:164:0;;15418:2:1;42450:164:0;;;15400:21:1;15457:2;15437:18;;;15430:30;15496:34;15476:18;;;15469:62;-1:-1:-1;;;15547:18:1;;;15540:34;15591:19;;42450:164:0;15216:400:1;42450:164:0;42790:20;;;;;;;42786:629;;;21737:6;;-1:-1:-1;;;;;42865:13:0;;;21737:6;;42865:13;;;;:66;;;42921:9;-1:-1:-1;;;;;42907:24:0;:2;-1:-1:-1;;;;;42907:24:0;;;42865:66;:117;;;;;42974:7;-1:-1:-1;;;;;42960:22:0;:2;-1:-1:-1;;;;;42960:22:0;;;42865:117;42835:561;;;43100:9;43071:39;;;;:28;:39;;;;;;43146:12;-1:-1:-1;43033:258:0;;;;-1:-1:-1;;;43033:258:0;;15823:2:1;43033:258:0;;;15805:21:1;15862:2;15842:18;;;15835:30;15901:34;15881:18;;;15874:62;15972:34;15952:18;;;15945:62;-1:-1:-1;;;16023:19:1;;;16016:40;16073:19;;43033:258:0;15621:477:1;43033:258:0;43347:9;43318:39;;;;:28;:39;;;;;43360:12;43318:54;;42835:561;-1:-1:-1;;;;;43467:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;43503:19:0;;;;;;:15;:19;;;;;;;;43502:20;43467:55;43463:957;;;43591:5;;43581:6;:15;;43547:139;;;;-1:-1:-1;;;43547:139:0;;16305:2:1;43547:139:0;;;16287:21:1;16344:2;16324:18;;;16317:30;16383:34;16363:18;;;16356:62;-1:-1:-1;;;16434:18:1;;;16427:36;16480:19;;43547:139:0;16103:402:1;43547:139:0;43769:9;;-1:-1:-1;;;;;12384:18:0;;12357:7;12384:18;;;;;;;;;;;43743:22;;:6;:22;:::i;:::-;:35;;43709:140;;;;-1:-1:-1;;;43709:140:0;;16712:2:1;43709:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;43709:140:0;16510:343:1;43709:140:0;43463:957;;;-1:-1:-1;;;;;43947:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43981:21:0;;;;;;:15;:21;;;;;;;;43980:22;43947:55;43921:499;;;44089:5;;44079:6;:15;;44045:140;;;;-1:-1:-1;;;44045:140:0;;17060:2:1;44045:140:0;;;17042:21:1;17099:2;17079:18;;;17072:30;17138:34;17118:18;;;17111:62;-1:-1:-1;;;17189:18:1;;;17182:37;17236:19;;44045:140:0;16858:403:1;43921:499:0;-1:-1:-1;;;;;44216:19:0;;;;;;:15;:19;;;;;;;;44211:209;;44320:9;;-1:-1:-1;;;;;12384:18:0;;12357:7;12384:18;;;;;;;;;;;44294:22;;:6;:22;:::i;:::-;:35;;44260:140;;;;-1:-1:-1;;;44260:140:0;;16712:2:1;44260:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;44260:140:0;16510:343:1;44260:140:0;44507:4;44458:28;12384:18;;;;;;;;;;;44565:16;;44541:40;;;;;;;44612:39;;-1:-1:-1;44636:15:0;;-1:-1:-1;;;44636:15:0;;;;44612:39;:65;;;;-1:-1:-1;44669:8:0;;-1:-1:-1;;;44669:8:0;;;;44668:9;44612:65;:114;;;;-1:-1:-1;;;;;;44695:31:0;;;;;;:25;:31;;;;;;;;44694:32;44612:114;:149;;;;-1:-1:-1;;;;;;44744:17:0;;;;;;:11;:17;;;;;;;;44743:18;44612:149;:182;;;;-1:-1:-1;;;;;;44779:15:0;;;;;;:11;:15;;;;;;;;44778:16;44612:182;44594:314;;;44821:8;:15;;-1:-1:-1;;;;44821:15:0;-1:-1:-1;;;44821:15:0;;;44853:10;:8;:10::i;:::-;44880:8;:16;;-1:-1:-1;;;;44880:16:0;;;44594:314;44936:8;;-1:-1:-1;;;;;45046:17:0;;44920:12;45046:17;;;:11;:17;;;;;;44936:8;-1:-1:-1;;;44936:8:0;;;;;44935:9;;45046:17;;:36;;-1:-1:-1;;;;;;45067:15:0;;;;;;:11;:15;;;;;;;;45046:36;45042:84;;;-1:-1:-1;45109:5:0;45042:84;45138:12;45243:7;45239:811;;;-1:-1:-1;;;;;45295:29:0;;;;;;:25;:29;;;;;;;;:51;;;;;45345:1;45328:14;;:18;45295:51;45291:610;;;45374:35;45405:3;45374:26;45385:14;;45374:6;:10;;:26;;;;:::i;:::-;:30;;:35::i;:::-;45367:42;;45468:14;;45452:12;;45445:4;:19;;;;:::i;:::-;45444:38;;;;:::i;:::-;45428:12;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;45547:14:0;;45531:12;;45524:19;;:4;:19;:::i;:::-;45523:38;;;;:::i;:::-;45501:18;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;45291:610:0;;-1:-1:-1;45291:610:0;;-1:-1:-1;;;;;45623:31:0;;;;;;:25;:31;;;;;;;;:52;;;;;45674:1;45658:13;;:17;45623:52;45619:282;;;45703:34;45733:3;45703:25;45714:13;;45703:6;:10;;:25;;;;:::i;:34::-;45696:41;;45795:13;;45780:11;;45773:4;:18;;;;:::i;:::-;45772:36;;;;:::i;:::-;45756:12;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;;45872:13:0;;45857:11;;45850:18;;:4;:18;:::i;:::-;45849:36;;;;:::i;:::-;45827:18;;:58;;;;;;;:::i;:::-;;;;-1:-1:-1;;45619:282:0;45921:8;;45917:91;;45950:42;45966:4;45980;45987;45950:15;:42::i;:::-;46024:14;46034:4;46024:14;;:::i;:::-;;;45239:811;46062:33;46078:4;46084:2;46088:6;46062:15;:33::i;:::-;41657:4446;;;;41544:4559;;;:::o;22971:191::-;23064:6;;;-1:-1:-1;;;;;23081:17:0;;;-1:-1:-1;;;;;;23081:17:0;;;;;;;23114:40;;23064:6;;;23081:17;23064:6;;23114:40;;23045:16;;23114:40;23034:128;22971:191;:::o;40226:188::-;-1:-1:-1;;;;;40309:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40309:39:0;;;;;;;;;;40366:40;;40309:39;;:31;40366:40;;;40226:188;;:::o;16569:770::-;-1:-1:-1;;;;;16709:20:0;;16701:70;;;;-1:-1:-1;;;16701:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16790:23:0;;16782:71;;;;-1:-1:-1;;;16782:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16950:17:0;;16926:21;16950:17;;;;;;;;;;;17000:23;;;;16978:111;;;;-1:-1:-1;;;16978:111:0;;17601:2:1;16978:111:0;;;17583:21:1;17640:2;17620:18;;;17613:30;17679:34;17659:18;;;17652:62;-1:-1:-1;;;17730:18:1;;;17723:36;17776:19;;16978:111:0;17399:402:1;16978:111:0;-1:-1:-1;;;;;17125:17:0;;;:9;:17;;;;;;;;;;;17145:22;;;17125:42;;17189:20;;;;;;;;:30;;17161:6;;17125:9;17189:30;;17161:6;;17189:30;:::i;:::-;;;;;;;;17254:9;-1:-1:-1;;;;;17237:35:0;17246:6;-1:-1:-1;;;;;17237:35:0;;17265:6;17237:35;;;;2826:25:1;;2814:2;2799:18;;2680:177;17237:35:0;;;;;;;;17285:46;41544:4559;46692:950;46775:4;46731:23;12384:18;;;;;;;;;;;;;;46875:20;;;46871:59;;46912:7;;;46692:950::o;46871:59::-;46964:16;;46946:15;:34;46942:101;;;47015:16;;46997:34;;46942:101;47084:15;47140:21;47174:36;47084:15;47174:16;:36::i;:::-;47223:18;47244:44;:21;47270:17;47244:25;:44::i;:::-;47223:65;;47301:17;47321:51;47354:17;47321:28;47336:12;;47321:10;:14;;:28;;;;:::i;:51::-;47406:1;47385:18;:22;;;47418:12;:16;;;47469:19;;47461:55;;47301:71;;-1:-1:-1;;;;;;47469:19:0;;47301:71;;47461:55;47406:1;47461:55;47301:71;47469:19;47461:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47551:19:0;;47543:91;;47447:69;;-1:-1:-1;47551:19:0;;;-1:-1:-1;;;;;47551:19:0;;47584:21;;47543:91;;;;47584:21;47551:19;47543:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;46692:950:0:o;3341:98::-;3399:7;3426:5;3430:1;3426;:5;:::i;:::-;3419:12;3341:98;-1:-1:-1;;;3341:98:0:o;3740:::-;3798:7;3825:5;3829:1;3825;:5;:::i;46111:571::-;46261:16;;;46275:1;46261:16;;;;;;;;46237:21;;46261:16;;;;;;;;;;-1:-1:-1;46261:16:0;46237:40;;46306:4;46288;46293:1;46288:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46288:23:0;;;-1:-1:-1;;;;;46288:23:0;;;;;46332:9;-1:-1:-1;;;;;46332:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46322:4;46327:1;46322:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;46322:26:0;;;-1:-1:-1;;;;;46322:26:0;;;;;46361:56;46378:4;46393:9;46405:11;46361:8;:56::i;:::-;46456:218;;-1:-1:-1;;;46456:218:0;;-1:-1:-1;;;;;46456:9:0;:60;;;;:218;;46531:11;;46557:1;;46601:4;;46628;;46648:15;;46456:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46166:516;46111:571;:::o;2984:98::-;3042:7;3069:5;3073:1;3069;:5;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;756:548::-;868:4;897:2;926;915:9;908:21;958:6;952:13;1001:6;996:2;985:9;981:18;974:34;1026:1;1036:140;1050:6;1047:1;1044:13;1036:140;;;1145:14;;;1141:23;;1135:30;1111:17;;;1130:2;1107:26;1100:66;1065:10;;1036:140;;;1040:3;1225:1;1220:2;1211:6;1200:9;1196:22;1192:31;1185:42;1295:2;1288;1284:7;1279:2;1271:6;1267:15;1263:29;1252:9;1248:45;1244:54;1236:62;;;;756:548;;;;:::o;1309:315::-;1377:6;1385;1438:2;1426:9;1417:7;1413:23;1409:32;1406:52;;;1454:1;1451;1444:12;1406:52;1493:9;1480:23;1512:31;1537:5;1512:31;:::i;:::-;1562:5;1614:2;1599:18;;;;1586:32;;-1:-1:-1;;;1309:315:1:o;1821:160::-;1886:20;;1942:13;;1935:21;1925:32;;1915:60;;1971:1;1968;1961:12;1915:60;1821:160;;;:::o;1986:689::-;2078:6;2086;2094;2147:2;2135:9;2126:7;2122:23;2118:32;2115:52;;;2163:1;2160;2153:12;2115:52;2203:9;2190:23;2232:18;2273:2;2265:6;2262:14;2259:34;;;2289:1;2286;2279:12;2259:34;2327:6;2316:9;2312:22;2302:32;;2372:7;2365:4;2361:2;2357:13;2353:27;2343:55;;2394:1;2391;2384:12;2343:55;2434:2;2421:16;2460:2;2452:6;2449:14;2446:34;;;2476:1;2473;2466:12;2446:34;2531:7;2524:4;2514:6;2511:1;2507:14;2503:2;2499:23;2495:34;2492:47;2489:67;;;2552:1;2549;2542:12;2489:67;2583:4;2575:13;;;;-1:-1:-1;2607:6:1;-1:-1:-1;2632:37:1;;2648:20;;;-1:-1:-1;2632:37:1;:::i;:::-;2622:47;;1986:689;;;;;:::o;2862:456::-;2939:6;2947;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3063:9;3050:23;3082:31;3107:5;3082:31;:::i;:::-;3132:5;-1:-1:-1;3189:2:1;3174:18;;3161:32;3202:33;3161:32;3202:33;:::i;:::-;2862:456;;3254:7;;-1:-1:-1;;;3308:2:1;3293:18;;;;3280:32;;2862:456::o;4052:180::-;4111:6;4164:2;4152:9;4143:7;4139:23;4135:32;4132:52;;;4180:1;4177;4170:12;4132:52;-1:-1:-1;4203:23:1;;4052:180;-1:-1:-1;4052:180:1:o;4237:315::-;4302:6;4310;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4418:9;4405:23;4437:31;4462:5;4437:31;:::i;:::-;4487:5;-1:-1:-1;4511:35:1;4542:2;4527:18;;4511:35;:::i;:::-;4501:45;;4237:315;;;;;:::o;5099:248::-;5167:6;5175;5228:2;5216:9;5207:7;5203:23;5199:32;5196:52;;;5244:1;5241;5234:12;5196:52;-1:-1:-1;;5267:23:1;;;5337:2;5322:18;;;5309:32;;-1:-1:-1;5099:248:1:o;5352:316::-;5426:6;5434;5442;5495:2;5483:9;5474:7;5470:23;5466:32;5463:52;;;5511:1;5508;5501:12;5463:52;5534:26;5550:9;5534:26;:::i;:::-;5524:36;5607:2;5592:18;;5579:32;;-1:-1:-1;5658:2:1;5643:18;;;5630:32;;5352:316;-1:-1:-1;;;5352:316:1:o;5673:388::-;5741:6;5749;5802:2;5790:9;5781:7;5777:23;5773:32;5770:52;;;5818:1;5815;5808:12;5770:52;5857:9;5844:23;5876:31;5901:5;5876:31;:::i;:::-;5926:5;-1:-1:-1;5983:2:1;5968:18;;5955:32;5996:33;5955:32;5996:33;:::i;:::-;6048:7;6038:17;;;5673:388;;;;;:::o;6791:356::-;6993:2;6975:21;;;7012:18;;;7005:30;7071:34;7066:2;7051:18;;7044:62;7138:2;7123:18;;6791:356::o;7152:380::-;7231:1;7227:12;;;;7274;;;7295:61;;7349:4;7341:6;7337:17;7327:27;;7295:61;7402:2;7394:6;7391:14;7371:18;7368:38;7365:161;;7448:10;7443:3;7439:20;7436:1;7429:31;7483:4;7480:1;7473:15;7511:4;7508:1;7501:15;7365:161;;7152:380;;;:::o;7537:127::-;7598:10;7593:3;7589:20;7586:1;7579:31;7629:4;7626:1;7619:15;7653:4;7650:1;7643:15;7669:127;7730:10;7725:3;7721:20;7718:1;7711:31;7761:4;7758:1;7751:15;7785:4;7782:1;7775:15;7801:135;7840:3;7861:17;;;7858:43;;7881:18;;:::i;:::-;-1:-1:-1;7928:1:1;7917:13;;7801:135::o;8350:125::-;8415:9;;;8436:10;;;8433:36;;;8449:18;;:::i;9181:168::-;9254:9;;;9285;;9302:15;;;9296:22;;9282:37;9272:71;;9323:18;;:::i;9354:217::-;9394:1;9420;9410:132;;9464:10;9459:3;9455:20;9452:1;9445:31;9499:4;9496:1;9489:15;9527:4;9524:1;9517:15;9410:132;-1:-1:-1;9556:9:1;;9354:217::o;14003:401::-;14205:2;14187:21;;;14244:2;14224:18;;;14217:30;14283:34;14278:2;14263:18;;14256:62;-1:-1:-1;;;14349:2:1;14334:18;;14327:35;14394:3;14379:19;;14003:401::o;14409:399::-;14611:2;14593:21;;;14650:2;14630:18;;;14623:30;14689:34;14684:2;14669:18;;14662:62;-1:-1:-1;;;14755:2:1;14740:18;;14733:33;14798:3;14783:19;;14409:399::o;17266:128::-;17333:9;;;17354:11;;;17351:37;;;17368:18;;:::i;18148:251::-;18218:6;18271:2;18259:9;18250:7;18246:23;18242:32;18239:52;;;18287:1;18284;18277:12;18239:52;18319:9;18313:16;18338:31;18363:5;18338:31;:::i;18404:980::-;18666:4;18714:3;18703:9;18699:19;18745:6;18734:9;18727:25;18771:2;18809:6;18804:2;18793:9;18789:18;18782:34;18852:3;18847:2;18836:9;18832:18;18825:31;18876:6;18911;18905:13;18942:6;18934;18927:22;18980:3;18969:9;18965:19;18958:26;;19019:2;19011:6;19007:15;18993:29;;19040:1;19050:195;19064:6;19061:1;19058:13;19050:195;;;19129:13;;-1:-1:-1;;;;;19125:39:1;19113:52;;19220:15;;;;19185:12;;;;19161:1;19079:9;19050:195;;;-1:-1:-1;;;;;;;19301:32:1;;;;19296:2;19281:18;;19274:60;-1:-1:-1;;;19365:3:1;19350:19;19343:35;19262:3;18404:980;-1:-1:-1;;;18404:980:1:o

Swarm Source

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