ETH Price: $2,741.38 (+5.86%)

Token

Do Not Buy (DNB)
 

Overview

Max Total Supply

20,000,000 DNB

Holders

135

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
icdaywee.eth
Balance
10 DNB

Value
$0.00
0x1e7F2ef8BbdE7FCaea03Ba0C83d5D293D066f41c
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:
dontbuy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

/**
Don't buy this token.
0/3
3% max wallet

 ######               #     #####              
  #   ##              #      #  #              
  #    #              #      #  #              
  #    #   ##  ## ## ###     ###  ## ##  #   # 
  #    #  #  #  ## #  #     #  #   #  #   #  # 
 #    #  #   #  #  # #      #   # #  ##   # ## 
 #   ##  #  #  #  #  #      #  #  # ##    ###  
######   ###   #  ## ##    #####  #####   #    
                                          #    
                                        ##     
*/


pragma solidity ^0.8.6;

interface IFactory{
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IPair{
    function token0() external view returns (address);
    function token1() external view returns (address);
    function sync() external;
}

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountATokenDesired,
        uint amountBTokenDesired,
        uint amountATokenMin,
        uint amountBTokenMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

/**
abstract contract UUPSUpgradeable is ERC1967Upgrade {
    function upgradeTo(address newImplementation) external virtual {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallSecure(newImplementation, bytes(""), false);
    }

    function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallSecure(newImplementation, data, true);
    }

    function _authorizeUpgrade(address newImplementation) internal virtual;
}


abstract contract Proxiable is UUPSUpgradeable {
    function _authorizeUpgrade(address newImplementation) internal override {
        _beforeUpgrade(newImplementation);
    }

    function _beforeUpgrade(address newImplementation) internal virtual;
}

contract ChildOfProxiable is Proxiable {
    function _beforeUpgrade(address newImplementation) internal virtual override {}
}

*/

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     function swapBack() private {

        if(tokensForBurn > 0 && balanceOf(address(this)) >= tokensForBurn) {
            _burn(address(this), tokensForBurn);
        }
        tokensForBurn = 0;

        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations + tokensForDev;

        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

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

        bool success;

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;

        swapTokensForEth(contractBalance - liquidityTokens);

        uint256 ethBalance = address(this).balance;
        uint256 ethForLiquidity = ethBalance;

        uint256 ethForOperations = ethBalance * tokensForOperations / (totalTokensToSwap - (tokensForLiquidity/2));
        uint256 ethForDev = ethBalance * tokensForDev / (totalTokensToSwap - (tokensForLiquidity/2));

        ethForLiquidity -= ethForOperations + ethForDev;

        tokensForLiquidity = 0;
        tokensForOperations = 0;
        tokensForDev = 0;
        tokensForBurn = 0;

        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

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

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

    function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
        emit TransferForeignToken(_token, _contractBalance);
    }

    // withdraw ETH if stuck or someone sends to the address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function setOperationsAddress(address _operationsAddress) external onlyOwner {
        require(_operationsAddress != address(0), "_operationsAddress address cannot be 0");
        operationsAddress = payable(_operationsAddress);
    }

    function setDevAddress(address _devAddress) external onlyOwner {
        require(_devAddress != address(0), "_devAddress address cannot be 0");
        devAddress = payable(_devAddress);
    }

    // force Swap back if slippage issues.
    function forceSwapBack() external onlyOwner {
        require(balanceOf(address(this)) >= swapTokensAtAmount, "Can only swap when token amount is at or higher than restriction");
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

    // useful for buybacks or to reclaim any ETH on the contract in a way that helps holders.
    function buyBackTokens(uint256 amountInWei) external onlyOwner {
        require(amountInWei <= 10 ether, "May not buy more than 10 ETH in a single buy to reduce sandwich attacks");

        address[] memory path = new address[](2);
        path[0] = dexRouter.WETH();
        path[1] = address(this);

        // make the swap
        dexRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountInWei}(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
        emit BuyBackTriggered(amountInWei);
    }
}
    */

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}


pragma solidity 0.8.17;






    contract dontbuy is ERC20, Ownable{
    using Address for address payable;

    mapping(address => bool) public exemptFee;

    IRouter public router;
    address public pair;

    address public selectionRecipient;
    address public traditionWallet;
    address public flightWallet;

    mapping (address => bool) private _isbread;

    bool private swapping;
    bool public swapEnabled;
    uint256 public swapThreshold;
    uint256 public maxWalletAmount;

    uint256 public transferFee;

    struct Fees {
        uint256 selection;
        uint256 tradition;
        uint256 flight;
    }

    Fees public buyFees = Fees(0,0,0);
    Fees public sellFees = Fees(0,2,1);
    uint256 public totalSellFee = 3;
    uint256 public totalBuyFee = 0;

    bool public enableTransfers;

    modifier inSwap() {
        if (!swapping) {
            swapping = true;
            _;
            swapping = false;
        }
    }

    event TaxRecipientsUpdated(address newselectionRecipient, address newtraditionWallet, address newflightWallet);
    event FeesUpdated();
    event SwapEnabled(bool state);
    event SwapThresholdUpdated(uint256 amount);
    event MaxWalletAmountUpdated(uint256 amount);
    event RouterUpdated(address newRouter);
    event ExemptFromFeeUpdated(address user, bool state);
    event PairUpdated(address newPair);

    constructor(address _routerAddress, string memory _name_, string memory _symbol_) ERC20(_name_, _symbol_) {
        require(_routerAddress != address(0), "Router address cannot be zero address");
        IRouter _router = IRouter(_routerAddress);

        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());

        router = _router;
        pair = _pair;

        swapEnabled = true;
        swapThreshold = 50_000 * 10**18;
        maxWalletAmount = 600_000 * 10**18;

        exemptFee[msg.sender] = true;
        exemptFee[address(this)] = true;
        exemptFee[traditionWallet] = true;
        exemptFee[flightWallet] = true;
        exemptFee[selectionRecipient] = true;

        _mint(msg.sender, 20_000_000 * 10**18);
    }

    /**
    interface IDexFactory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

contract DieProtocol is ERC20, Ownable {

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;

    IDexRouter public dexRouter;
    address public lpPair;

    bool private swapping;
    uint256 public swapTokensAtAmount;

    address operationsAddress;
    address devAddress;

    uint256 public tradingActiveBlock = 0; // 0 means trading is not active
    uint256 public blockForPenaltyEnd;
    mapping (address => bool) public boughtEarly;
    uint256 public botsCaught;

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

     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyOperationsFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyBurnFee;

    uint256 public sellTotalFees;
    uint256 public sellOperationsFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellBurnFee;

    uint256 public tokensForOperations;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public tokensForBurn;

    

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event EnabledTrading();

    event RemovedLimits();

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event UpdatedMaxBuyAmount(uint256 newAmount);

    event UpdatedMaxSellAmount(uint256 newAmount);

    event UpdatedMaxWalletAmount(uint256 newAmount);

    event UpdatedOperationsAddress(address indexed newWallet);

    event MaxTransactionExclusion(address _address, bool excluded);

    event BuyBackTriggered(uint256 amount);

    event OwnerForcedSwapBack(uint256 timestamp);

    event CaughtEarlyBuyer(address sniper);

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

    event TransferForeignToken(address token, uint256 amount);

    constructor() ERC20("Die Protocol", "DIE") {

        address newOwner = msg.sender; // can leave alone if owner is deployer.

        IDexRouter _dexRouter = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        dexRouter = _dexRouter;

        // create pair
        lpPair = IDexFactory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH());
        _excludeFromMaxTransaction(address(lpPair), true);
        _setAutomatedMarketMakerPair(address(lpPair), true);

        uint256 totalSupply = 5 * 1e12 * 1e18;

        maxBuyAmount = totalSupply * 2 / 100;
        maxSellAmount = totalSupply * 2 / 100;
        maxWalletAmount = totalSupply * 2 / 100;
        swapTokensAtAmount = totalSupply * 5 / 10000;

        buyOperationsFee = 20;
        buyLiquidityFee = 0;
        buyDevFee = 0;
        buyBurnFee = 0;
        buyTotalFees = buyOperationsFee + buyLiquidityFee + buyDevFee + buyBurnFee;

        sellOperationsFee = 20;
        sellLiquidityFee = 0;
        sellDevFee = 0;
        sellBurnFee = 0;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee + sellBurnFee;
    */

    function setTaxRecipients(address _selectionRecipient, address _traditionWallet, address _flightWallet) external onlyOwner{
        require(_selectionRecipient != address(0), "selectionRecipient cannot be the zero address");
        require(_traditionWallet != address(0), "traditionWallet cannot be the zero address");
        require(_flightWallet != address(0), "flightWallet cannot be the zero address");
        selectionRecipient = _selectionRecipient;
        traditionWallet = _traditionWallet;
        flightWallet = _flightWallet;

        exemptFee[flightWallet] = true;
        exemptFee[traditionWallet] = true;
        exemptFee[selectionRecipient] = true;

        emit TaxRecipientsUpdated(_selectionRecipient, _traditionWallet, _flightWallet);
    }

    function setTransferFee(uint256 _transferFee) external onlyOwner{
        require(_transferFee < 100, "Transfer fee must be less than 100");
        transferFee = _transferFee;
        emit FeesUpdated();
    }

    function setBuyFees(uint256 _selection, uint256 _tradition, uint256 _flight) external onlyOwner{
        require(_selection + _tradition + _flight < 100, "Buy fee must be less than 100");
        buyFees = Fees(_selection, _tradition, _flight);
        totalBuyFee = _selection + _tradition + _flight;
        emit FeesUpdated();
    }

    function setSellFees(uint256 _selection, uint256 _tradition, uint256 _flight) external onlyOwner{
        require(_selection + _tradition + _flight < 100, "Sell fee must be less than 100");
        sellFees = Fees(_selection, _tradition, _flight);
        totalSellFee = _selection + _tradition + _flight;
        emit FeesUpdated();
    }

    function setSwapEnabled(bool state) external onlyOwner{
        swapEnabled = state;
        emit SwapEnabled(state);
    }

     
    function isbread(address account) public view returns(bool) {
        return _isbread[account];
    }

    function multibreadAccount(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
        _isbread[accounts[i]] = true;
        }
    }

    function unbreadAccount(address account) public onlyOwner {
        _isbread[account] = false;
    }


    function setSwapThreshold(uint256 amount) external onlyOwner{
        swapThreshold = amount * 10**18;
        emit SwapThresholdUpdated(amount);
    }

    function setMaxWalletAmount(uint256 amount) external onlyOwner{
        require(amount >= 1_000_000, "Max wallet amount must be >= 100,000");
        maxWalletAmount = amount * 10**18;
        emit MaxWalletAmountUpdated(amount);
    }

    function setRouter(address newRouter) external onlyOwner{
        router = IRouter(newRouter);
        emit RouterUpdated(newRouter);
    }

    function setPair(address newPair) external onlyOwner{
        require(newPair != address(0), "Pair cannot be zero address");
        pair = newPair;
        emit PairUpdated(newPair);
    }

    function exemptFromFee(address user, bool state) external onlyOwner{
        require(exemptFee[user] != state, "State already set");
        exemptFee[user] = state;
        emit ExemptFromFeeUpdated(user, state);
    }

    function rescueETH() external onlyOwner{
        require(address(this).balance > 0, "Insufficient ETH balance");
        payable(owner()).sendValue(address(this).balance);
    }

    function rescueERC20(address tokenAdd, uint256 amount) external onlyOwner{
        require(IERC20(tokenAdd).balanceOf(address(this)) >= amount, "Insufficient ERC20 balance");
        IERC20(tokenAdd).transfer(owner(), amount);
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isbread[to], "This address is currently bread");
        require(!_isbread[from], "This address is currently bread");

        if(!exemptFee[from] && !exemptFee[to]) {
            require(enableTransfers, "Transactions are not enabled");
            if(to != pair) require(balanceOf(to) + amount <= maxWalletAmount, "Receiver balance is exceeding maxWalletAmount");
        }

        uint256 taxAmt;

        if(!swapping && !exemptFee[from] && !exemptFee[to]){
            if(to == pair){
                taxAmt = amount * totalSellFee / 100;
            } else if(from == pair){
                taxAmt = amount * totalBuyFee / 100;
            } else {
                taxAmt = amount * transferFee / 100;
            }
        }

        if (!swapping && swapEnabled && to == pair && totalSellFee > 0) {
            handle_fees();
        }

        super._transfer(from, to, amount - taxAmt);
        if(taxAmt > 0) {
            super._transfer(from, address(this), taxAmt);
        }
    }

    function handle_fees() private inSwap {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= swapThreshold) {
            if(swapThreshold > 1){
                contractBalance = swapThreshold;
            }
            // Split the contract balance into halves
            uint256 denominator = totalSellFee * 2;
            uint256 tokensToAddLiquidityWith = contractBalance * sellFees.selection / denominator;
            uint256 toSwap = contractBalance - tokensToAddLiquidityWith;

            uint256 initialBalance = address(this).balance;

            swapTokensForETH(toSwap);

            uint256 deltaBalance = address(this).balance - initialBalance;
            uint256 unitBalance= deltaBalance / (denominator - sellFees.selection);
            uint256 ethToAddLiquidityWith = unitBalance * sellFees.selection;

            if(ethToAddLiquidityWith > 0){
                // Add liquidity to uniswap
                addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
            }

            uint256 traditionAmt = unitBalance * 2 * sellFees.tradition;
            if(traditionAmt > 0){
                payable(traditionWallet).sendValue(traditionAmt);
            }

            uint256 flightAmt = unitBalance * 2 * sellFees.flight;
            if(flightAmt > 0){
                payable(flightWallet).sendValue(flightAmt);
            }
        }
    }

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

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

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);

    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);

        // add the liquidity
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            selectionRecipient,
            block.timestamp
        );
    }

    function setEnableTransfers() external onlyOwner {
        enableTransfers = true;
    }

    // fallbacks
    receive() external payable {}
}

/**
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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

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

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

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

    function _createInitialSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

contract Ownable is Context {
    address private _owner;

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

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() external virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
*/

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"},{"internalType":"string","name":"_name_","type":"string"},{"internalType":"string","name":"_symbol_","type":"string"}],"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":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"ExemptFromFeeUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":"address","name":"newPair","type":"address"}],"name":"PairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouter","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"state","type":"bool"}],"name":"SwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newselectionRecipient","type":"address"},{"indexed":false,"internalType":"address","name":"newtraditionWallet","type":"address"},{"indexed":false,"internalType":"address","name":"newflightWallet","type":"address"}],"name":"TaxRecipientsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"selection","type":"uint256"},{"internalType":"uint256","name":"tradition","type":"uint256"},{"internalType":"uint256","name":"flight","type":"uint256"}],"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":"enableTransfers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"exemptFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flightWallet","outputs":[{"internalType":"address","name":"","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isbread","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"multibreadAccount","outputs":[],"stateMutability":"nonpayable","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selectionRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"selection","type":"uint256"},{"internalType":"uint256","name":"tradition","type":"uint256"},{"internalType":"uint256","name":"flight","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_selection","type":"uint256"},{"internalType":"uint256","name":"_tradition","type":"uint256"},{"internalType":"uint256","name":"_flight","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setEnableTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_selection","type":"uint256"},{"internalType":"uint256","name":"_tradition","type":"uint256"},{"internalType":"uint256","name":"_flight","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_selectionRecipient","type":"address"},{"internalType":"address","name":"_traditionWallet","type":"address"},{"internalType":"address","name":"_flightWallet","type":"address"}],"name":"setTaxRecipients","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"traditionWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unbreadAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6000608081905260a081905260c081905260118190556012819055601381905561014060405260e081905260026101008190526001610120819052601483905560159190915560165560036017556018553480156200005d57600080fd5b5060405162002d2638038062002d2683398101604081905262000080916200057f565b818160036200009083826200068a565b5060046200009f82826200068a565b505050620000bc620000b66200035d60201b60201c565b62000361565b6001600160a01b038316620001265760405162461bcd60e51b815260206004820152602560248201527f526f7574657220616464726573732063616e6e6f74206265207a65726f206164604482015264647265737360d81b60648201526084015b60405180910390fd5b60008390506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200016c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000192919062000756565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000206919062000756565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000254573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027a919062000756565b600780546001600160a01b038086166001600160a01b031992831617909255600880548385169216919091179055600d805461ff001916610100179055690a968163f0a57b400000600e55697f0e10af47c1c7000000600f5533600081815260066020526040808220805460ff1990811660019081179092553084528284208054821683179055600a54861684528284208054821683179055600b548616845282842080548216831790556009549095168352912080549093161790915590915062000352906a108b2a2c28029094000000620003b3565b5050505050620007a3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200040b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200011d565b80600260008282546200041f91906200077b565b90915550506001600160a01b038216600090815260208190526040812080548392906200044e9084906200077b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b80516001600160a01b0381168114620004b557600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620004e257600080fd5b81516001600160401b0380821115620004ff57620004ff620004ba565b604051601f8301601f19908116603f011681019082821181831017156200052a576200052a620004ba565b816040528381526020925086838588010111156200054757600080fd5b600091505b838210156200056b57858201830151818301840152908201906200054c565b600093810190920192909252949350505050565b6000806000606084860312156200059557600080fd5b620005a0846200049d565b60208501519093506001600160401b0380821115620005be57600080fd5b620005cc87838801620004d0565b93506040860151915080821115620005e357600080fd5b50620005f286828701620004d0565b9150509250925092565b600181811c908216806200061157607f821691505b6020821081036200063257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200049857600081815260208120601f850160051c81016020861015620006615750805b601f850160051c820191505b8181101562000682578281556001016200066d565b505050505050565b81516001600160401b03811115620006a657620006a6620004ba565b620006be81620006b78454620005fc565b8462000638565b602080601f831160018114620006f65760008415620006dd5750858301515b600019600386901b1c1916600185901b17855562000682565b600085815260208120601f198616915b82811015620007275788860151825594840194600190910190840162000706565b5085821015620007465787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200076957600080fd5b62000774826200049d565b9392505050565b808201808211156200079d57634e487b7160e01b600052601160045260246000fd5b92915050565b61257380620007b36000396000f3fe6080604052600436106102765760003560e01c806395d89b411161014f578063af35c6c7116100c1578063e01af92c1161007a578063e01af92c1461076a578063e0f3ccf51461078a578063e4748b9e146107c4578063f298a7a3146107e3578063f2fde38b14610803578063f887ea401461082357600080fd5b8063af35c6c714610692578063c0d78655146106ac578063c1bc0919146106cc578063c5d32bb2146106e1578063d6996c8514610711578063dd62ed3e1461074a57600080fd5b8063a9059cbb11610113578063a9059cbb146105e6578063aa16c6b514610606578063aa4bde2814610626578063acb2ad6f1461063c578063adec315714610652578063ae5157421461067257600080fd5b806395d89b411461055b5780639d0014b1146105705780639d9241ec14610590578063a457c2d7146105a6578063a8aa1b31146105c657600080fd5b806339509351116101e8578063715018a6116101ac578063715018a6146104a85780638187f516146104bd5780638cd4426d146104dd5780638da5cb5b146104fd5780638e0903331461051b5780638f02bb5b1461053b57600080fd5b806339509351146103e557806359b107b9146104055780636791915e1461041b5780636ddd17131461045357806370a082311461047257600080fd5b806318160ddd1161023a57806318160ddd1461033f57806320800a001461035457806323b872dd1461036957806327a14fc214610389578063313ce567146103a957806332958410146103c557600080fd5b80630445b6671461028257806306fdde03146102ab578063095ea7b3146102cd5780630d075d9c146102fd5780630f683e901461031f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610298600e5481565b6040519081526020015b60405180910390f35b3480156102b757600080fd5b506102c0610843565b6040516102a291906120e2565b3480156102d957600080fd5b506102ed6102e8366004612145565b6108d5565b60405190151581526020016102a2565b34801561030957600080fd5b5061031d610318366004612171565b6108ef565b005b34801561032b57600080fd5b5061031d61033a366004612171565b6109cd565b34801561034b57600080fd5b50600254610298565b34801561036057600080fd5b5061031d610aa6565b34801561037557600080fd5b506102ed61038436600461219d565b610b25565b34801561039557600080fd5b5061031d6103a43660046121de565b610b49565b3480156103b557600080fd5b50604051601281526020016102a2565b3480156103d157600080fd5b5061031d6103e03660046121f7565b610bfc565b3480156103f157600080fd5b506102ed610400366004612145565b610e02565b34801561041157600080fd5b5061029860185481565b34801561042757600080fd5b5060095461043b906001600160a01b031681565b6040516001600160a01b0390911681526020016102a2565b34801561045f57600080fd5b50600d546102ed90610100900460ff1681565b34801561047e57600080fd5b5061029861048d366004612242565b6001600160a01b031660009081526020819052604090205490565b3480156104b457600080fd5b5061031d610e24565b3480156104c957600080fd5b5061031d6104d8366004612242565b610e36565b3480156104e957600080fd5b5061031d6104f8366004612145565b610ee2565b34801561050957600080fd5b506005546001600160a01b031661043b565b34801561052757600080fd5b5061031d610536366004612274565b611039565b34801561054757600080fd5b5061031d6105563660046121de565b611108565b34801561056757600080fd5b506102c061119c565b34801561057c57600080fd5b5061031d61058b3660046121de565b6111ab565b34801561059c57600080fd5b5061029860175481565b3480156105b257600080fd5b506102ed6105c1366004612145565b6111f8565b3480156105d257600080fd5b5060085461043b906001600160a01b031681565b3480156105f257600080fd5b506102ed610601366004612145565b611273565b34801561061257600080fd5b50600a5461043b906001600160a01b031681565b34801561063257600080fd5b50610298600f5481565b34801561064857600080fd5b5061029860105481565b34801561065e57600080fd5b50600b5461043b906001600160a01b031681565b34801561067e57600080fd5b5061031d61068d366004612242565b611281565b34801561069e57600080fd5b506019546102ed9060ff1681565b3480156106b857600080fd5b5061031d6106c7366004612242565b6112aa565b3480156106d857600080fd5b5061031d611300565b3480156106ed57600080fd5b506102ed6106fc366004612242565b60066020526000908152604090205460ff1681565b34801561071d57600080fd5b506102ed61072c366004612242565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561075657600080fd5b506102986107653660046122ad565b611317565b34801561077657600080fd5b5061031d6107853660046122db565b611342565b34801561079657600080fd5b506014546015546016546107a992919083565b604080519384526020840192909252908201526060016102a2565b3480156107d057600080fd5b506011546012546013546107a992919083565b3480156107ef57600080fd5b5061031d6107fe3660046122f8565b611393565b34801561080f57600080fd5b5061031d61081e366004612242565b61140d565b34801561082f57600080fd5b5060075461043b906001600160a01b031681565b6060600380546108529061236d565b80601f016020809104026020016040519081016040528092919081815260200182805461087e9061236d565b80156108cb5780601f106108a0576101008083540402835291602001916108cb565b820191906000526020600020905b8154815290600101906020018083116108ae57829003601f168201915b5050505050905090565b6000336108e3818585611486565b60019150505b92915050565b6108f76115aa565b60648161090484866123bd565b61090e91906123bd565b106109605760405162461bcd60e51b815260206004820152601d60248201527f42757920666565206d757374206265206c657373207468616e2031303000000060448201526064015b60405180910390fd5b6040805160608101825284815260208101849052018190526011839055601282905560138190558061099283856123bd565b61099c91906123bd565b6018556040517f6d58c6dc772669fca481506571330f160785469830c3888c824e5ff2e81c47d790600090a1505050565b6109d56115aa565b6064816109e284866123bd565b6109ec91906123bd565b10610a395760405162461bcd60e51b815260206004820152601e60248201527f53656c6c20666565206d757374206265206c657373207468616e2031303000006044820152606401610957565b60408051606081018252848152602081018490520181905260148390556015829055601681905580610a6b83856123bd565b610a7591906123bd565b6017556040517f6d58c6dc772669fca481506571330f160785469830c3888c824e5ff2e81c47d790600090a1505050565b610aae6115aa565b60004711610afe5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e74204554482062616c616e636500000000000000006044820152606401610957565b610b2347610b146005546001600160a01b031690565b6001600160a01b031690611604565b565b600033610b3385828561171d565b610b3e858585611797565b506001949350505050565b610b516115aa565b620f4240811015610bb05760405162461bcd60e51b8152602060048201526024808201527f4d61782077616c6c657420616d6f756e74206d757374206265203e3d2031303060448201526302c3030360e41b6064820152608401610957565b610bc281670de0b6b3a76400006123d0565b600f556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b610c046115aa565b6001600160a01b038316610c705760405162461bcd60e51b815260206004820152602d60248201527f73656c656374696f6e526563697069656e742063616e6e6f742062652074686560448201526c207a65726f206164647265737360981b6064820152608401610957565b6001600160a01b038216610cd95760405162461bcd60e51b815260206004820152602a60248201527f747261646974696f6e57616c6c65742063616e6e6f7420626520746865207a65604482015269726f206164647265737360b01b6064820152608401610957565b6001600160a01b038116610d3f5760405162461bcd60e51b815260206004820152602760248201527f666c6967687457616c6c65742063616e6e6f7420626520746865207a65726f206044820152666164647265737360c81b6064820152608401610957565b600980546001600160a01b038581166001600160a01b031992831681178455600a805487841690851681178255600b80548886169616861790556000858152600660209081526040808320805460ff1990811660019081179092559554881684528184208054871682179055985490961682529085902080549093169096179091558251918252938101939093528201527fbf13ed3f750e39a36873a4c7a0134665f2708e445334c5ffeeb38d03e37fb17e9060600160405180910390a1505050565b6000336108e3818585610e158383611317565b610e1f91906123bd565b611486565b610e2c6115aa565b610b236000611b50565b610e3e6115aa565b6001600160a01b038116610e945760405162461bcd60e51b815260206004820152601b60248201527f506169722063616e6e6f74206265207a65726f206164647265737300000000006044820152606401610957565b600880546001600160a01b0319166001600160a01b0383169081179091556040519081527f1d288f7aba265e8b154b112bbb631ceca5df5fe93a750b2fe042fd1cc826647f90602001610bf1565b610eea6115aa565b6040516370a0823160e01b815230600482015281906001600160a01b038416906370a0823190602401602060405180830381865afa158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5491906123e7565b1015610fa25760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742045524332302062616c616e63650000000000006044820152606401610957565b816001600160a01b031663a9059cbb610fc36005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611010573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110349190612400565b505050565b6110416115aa565b6001600160a01b03821660009081526006602052604090205481151560ff9091161515036110a55760405162461bcd60e51b815260206004820152601160248201527014dd185d1948185b1c9958591e481cd95d607a1b6044820152606401610957565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f9817c07fa4cca31c109acf04d9dd7c6055b09f96b2927da7a8f9f447a0cf18d8910160405180910390a15050565b6111106115aa565b6064811061116b5760405162461bcd60e51b815260206004820152602260248201527f5472616e7366657220666565206d757374206265206c657373207468616e2031604482015261030360f41b6064820152608401610957565b60108190556040517f6d58c6dc772669fca481506571330f160785469830c3888c824e5ff2e81c47d790600090a150565b6060600480546108529061236d565b6111b36115aa565b6111c581670de0b6b3a76400006123d0565b600e556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690602001610bf1565b600033816112068286611317565b9050838110156112665760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610957565b610b3e8286868403611486565b6000336108e3818585611797565b6112896115aa565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6112b26115aa565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc8090602001610bf1565b6113086115aa565b6019805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61134a6115aa565b600d80548215156101000261ff00199091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890610bf190831515815260200190565b61139b6115aa565b60005b81811015611034576001600c60008585858181106113be576113be61241d565b90506020020160208101906113d39190612242565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061140581612433565b91505061139e565b6114156115aa565b6001600160a01b03811661147a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610957565b61148381611b50565b50565b6001600160a01b0383166114e85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610957565b6001600160a01b0382166115495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610957565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610957565b804710156116545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610957565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116a1576040519150601f19603f3d011682016040523d82523d6000602084013e6116a6565b606091505b50509050806110345760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610957565b60006117298484611317565b9050600019811461179157818110156117845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610957565b6117918484848403611486565b50505050565b600081116117f95760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610957565b6001600160a01b0382166000908152600c602052604090205460ff16156118625760405162461bcd60e51b815260206004820152601f60248201527f5468697320616464726573732069732063757272656e746c79206272656164006044820152606401610957565b6001600160a01b0383166000908152600c602052604090205460ff16156118cb5760405162461bcd60e51b815260206004820152601f60248201527f5468697320616464726573732069732063757272656e746c79206272656164006044820152606401610957565b6001600160a01b03831660009081526006602052604090205460ff1615801561190d57506001600160a01b03821660009081526006602052604090205460ff16155b15611a0a5760195460ff166119645760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e7320617265206e6f7420656e61626c6564000000006044820152606401610957565b6008546001600160a01b03838116911614611a0a57600f548161199c846001600160a01b031660009081526020819052604090205490565b6119a691906123bd565b1115611a0a5760405162461bcd60e51b815260206004820152602d60248201527f52656365697665722062616c616e636520697320657863656564696e67206d6160448201526c1e15d85b1b195d105b5bdd5b9d609a1b6064820152608401610957565b600d5460009060ff16158015611a3957506001600160a01b03841660009081526006602052604090205460ff16155b8015611a5e57506001600160a01b03831660009081526006602052604090205460ff16155b15611add576008546001600160a01b0390811690841603611a9a57606460175483611a8991906123d0565b611a93919061244c565b9050611add565b6008546001600160a01b0390811690851603611ac057606460185483611a8991906123d0565b606460105483611ad091906123d0565b611ada919061244c565b90505b600d5460ff16158015611af75750600d54610100900460ff165b8015611b1057506008546001600160a01b038481169116145b8015611b1e57506000601754115b15611b2b57611b2b611ba2565b611b3f8484611b3a848661246e565b611d06565b801561179157611791843083611d06565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d5460ff16610b2357600d805460ff19166001179055306000908152602081905260408120549050600e548110611cf9576001600e541115611be45750600e545b60006017546002611bf591906123d0565b905060008160146000015484611c0b91906123d0565b611c15919061244c565b90506000611c23828561246e565b905047611c2f82611ed4565b6000611c3b824761246e565b601454909150600090611c4e908761246e565b611c58908361244c565b601454909150600090611c6b90836123d0565b90508015611c7d57611c7d868261202e565b601554600090611c8e8460026123d0565b611c9891906123d0565b90508015611cb657600a54611cb6906001600160a01b031682611604565b601654600090611cc78560026123d0565b611cd191906123d0565b90508015611cef57600b54611cef906001600160a01b031682611604565b5050505050505050505b50600d805460ff19169055565b6001600160a01b038316611d6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610957565b6001600160a01b038216611dcc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610957565b6001600160a01b03831660009081526020819052604090205481811015611e445760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610957565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e7b9084906123bd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ec791815260200190565b60405180910390a3611791565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f0957611f0961241d565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f869190612481565b81600181518110611f9957611f9961241d565b6001600160a01b039283166020918202929092010152600754611fbf9130911684611486565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ff890859060009086903090429060040161249e565b600060405180830381600087803b15801561201257600080fd5b505af1158015612026573d6000803e3d6000fd5b505050505050565b6007546120469030906001600160a01b031684611486565b60075460095460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156120b6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120db919061250f565b5050505050565b600060208083528351808285015260005b8181101561210f578581018301518582016040015282016120f3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461148357600080fd5b6000806040838503121561215857600080fd5b823561216381612130565b946020939093013593505050565b60008060006060848603121561218657600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156121b257600080fd5b83356121bd81612130565b925060208401356121cd81612130565b929592945050506040919091013590565b6000602082840312156121f057600080fd5b5035919050565b60008060006060848603121561220c57600080fd5b833561221781612130565b9250602084013561222781612130565b9150604084013561223781612130565b809150509250925092565b60006020828403121561225457600080fd5b813561225f81612130565b9392505050565b801515811461148357600080fd5b6000806040838503121561228757600080fd5b823561229281612130565b915060208301356122a281612266565b809150509250929050565b600080604083850312156122c057600080fd5b82356122cb81612130565b915060208301356122a281612130565b6000602082840312156122ed57600080fd5b813561225f81612266565b6000806020838503121561230b57600080fd5b823567ffffffffffffffff8082111561232357600080fd5b818501915085601f83011261233757600080fd5b81358181111561234657600080fd5b8660208260051b850101111561235b57600080fd5b60209290920196919550909350505050565b600181811c9082168061238157607f821691505b6020821081036123a157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e9576108e96123a7565b80820281158282048414176108e9576108e96123a7565b6000602082840312156123f957600080fd5b5051919050565b60006020828403121561241257600080fd5b815161225f81612266565b634e487b7160e01b600052603260045260246000fd5b600060018201612445576124456123a7565b5060010190565b60008261246957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108e9576108e96123a7565b60006020828403121561249357600080fd5b815161225f81612130565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124ee5784516001600160a01b0316835293830193918301916001016124c9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561252457600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122025023fac3faa7a49fd55de830e4160b03398b62ced73a0fa2eca7c66672bb5ae64736f6c634300081100330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a446f204e6f7420427579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444e420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102765760003560e01c806395d89b411161014f578063af35c6c7116100c1578063e01af92c1161007a578063e01af92c1461076a578063e0f3ccf51461078a578063e4748b9e146107c4578063f298a7a3146107e3578063f2fde38b14610803578063f887ea401461082357600080fd5b8063af35c6c714610692578063c0d78655146106ac578063c1bc0919146106cc578063c5d32bb2146106e1578063d6996c8514610711578063dd62ed3e1461074a57600080fd5b8063a9059cbb11610113578063a9059cbb146105e6578063aa16c6b514610606578063aa4bde2814610626578063acb2ad6f1461063c578063adec315714610652578063ae5157421461067257600080fd5b806395d89b411461055b5780639d0014b1146105705780639d9241ec14610590578063a457c2d7146105a6578063a8aa1b31146105c657600080fd5b806339509351116101e8578063715018a6116101ac578063715018a6146104a85780638187f516146104bd5780638cd4426d146104dd5780638da5cb5b146104fd5780638e0903331461051b5780638f02bb5b1461053b57600080fd5b806339509351146103e557806359b107b9146104055780636791915e1461041b5780636ddd17131461045357806370a082311461047257600080fd5b806318160ddd1161023a57806318160ddd1461033f57806320800a001461035457806323b872dd1461036957806327a14fc214610389578063313ce567146103a957806332958410146103c557600080fd5b80630445b6671461028257806306fdde03146102ab578063095ea7b3146102cd5780630d075d9c146102fd5780630f683e901461031f57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610298600e5481565b6040519081526020015b60405180910390f35b3480156102b757600080fd5b506102c0610843565b6040516102a291906120e2565b3480156102d957600080fd5b506102ed6102e8366004612145565b6108d5565b60405190151581526020016102a2565b34801561030957600080fd5b5061031d610318366004612171565b6108ef565b005b34801561032b57600080fd5b5061031d61033a366004612171565b6109cd565b34801561034b57600080fd5b50600254610298565b34801561036057600080fd5b5061031d610aa6565b34801561037557600080fd5b506102ed61038436600461219d565b610b25565b34801561039557600080fd5b5061031d6103a43660046121de565b610b49565b3480156103b557600080fd5b50604051601281526020016102a2565b3480156103d157600080fd5b5061031d6103e03660046121f7565b610bfc565b3480156103f157600080fd5b506102ed610400366004612145565b610e02565b34801561041157600080fd5b5061029860185481565b34801561042757600080fd5b5060095461043b906001600160a01b031681565b6040516001600160a01b0390911681526020016102a2565b34801561045f57600080fd5b50600d546102ed90610100900460ff1681565b34801561047e57600080fd5b5061029861048d366004612242565b6001600160a01b031660009081526020819052604090205490565b3480156104b457600080fd5b5061031d610e24565b3480156104c957600080fd5b5061031d6104d8366004612242565b610e36565b3480156104e957600080fd5b5061031d6104f8366004612145565b610ee2565b34801561050957600080fd5b506005546001600160a01b031661043b565b34801561052757600080fd5b5061031d610536366004612274565b611039565b34801561054757600080fd5b5061031d6105563660046121de565b611108565b34801561056757600080fd5b506102c061119c565b34801561057c57600080fd5b5061031d61058b3660046121de565b6111ab565b34801561059c57600080fd5b5061029860175481565b3480156105b257600080fd5b506102ed6105c1366004612145565b6111f8565b3480156105d257600080fd5b5060085461043b906001600160a01b031681565b3480156105f257600080fd5b506102ed610601366004612145565b611273565b34801561061257600080fd5b50600a5461043b906001600160a01b031681565b34801561063257600080fd5b50610298600f5481565b34801561064857600080fd5b5061029860105481565b34801561065e57600080fd5b50600b5461043b906001600160a01b031681565b34801561067e57600080fd5b5061031d61068d366004612242565b611281565b34801561069e57600080fd5b506019546102ed9060ff1681565b3480156106b857600080fd5b5061031d6106c7366004612242565b6112aa565b3480156106d857600080fd5b5061031d611300565b3480156106ed57600080fd5b506102ed6106fc366004612242565b60066020526000908152604090205460ff1681565b34801561071d57600080fd5b506102ed61072c366004612242565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561075657600080fd5b506102986107653660046122ad565b611317565b34801561077657600080fd5b5061031d6107853660046122db565b611342565b34801561079657600080fd5b506014546015546016546107a992919083565b604080519384526020840192909252908201526060016102a2565b3480156107d057600080fd5b506011546012546013546107a992919083565b3480156107ef57600080fd5b5061031d6107fe3660046122f8565b611393565b34801561080f57600080fd5b5061031d61081e366004612242565b61140d565b34801561082f57600080fd5b5060075461043b906001600160a01b031681565b6060600380546108529061236d565b80601f016020809104026020016040519081016040528092919081815260200182805461087e9061236d565b80156108cb5780601f106108a0576101008083540402835291602001916108cb565b820191906000526020600020905b8154815290600101906020018083116108ae57829003601f168201915b5050505050905090565b6000336108e3818585611486565b60019150505b92915050565b6108f76115aa565b60648161090484866123bd565b61090e91906123bd565b106109605760405162461bcd60e51b815260206004820152601d60248201527f42757920666565206d757374206265206c657373207468616e2031303000000060448201526064015b60405180910390fd5b6040805160608101825284815260208101849052018190526011839055601282905560138190558061099283856123bd565b61099c91906123bd565b6018556040517f6d58c6dc772669fca481506571330f160785469830c3888c824e5ff2e81c47d790600090a1505050565b6109d56115aa565b6064816109e284866123bd565b6109ec91906123bd565b10610a395760405162461bcd60e51b815260206004820152601e60248201527f53656c6c20666565206d757374206265206c657373207468616e2031303000006044820152606401610957565b60408051606081018252848152602081018490520181905260148390556015829055601681905580610a6b83856123bd565b610a7591906123bd565b6017556040517f6d58c6dc772669fca481506571330f160785469830c3888c824e5ff2e81c47d790600090a1505050565b610aae6115aa565b60004711610afe5760405162461bcd60e51b815260206004820152601860248201527f496e73756666696369656e74204554482062616c616e636500000000000000006044820152606401610957565b610b2347610b146005546001600160a01b031690565b6001600160a01b031690611604565b565b600033610b3385828561171d565b610b3e858585611797565b506001949350505050565b610b516115aa565b620f4240811015610bb05760405162461bcd60e51b8152602060048201526024808201527f4d61782077616c6c657420616d6f756e74206d757374206265203e3d2031303060448201526302c3030360e41b6064820152608401610957565b610bc281670de0b6b3a76400006123d0565b600f556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001906020015b60405180910390a150565b610c046115aa565b6001600160a01b038316610c705760405162461bcd60e51b815260206004820152602d60248201527f73656c656374696f6e526563697069656e742063616e6e6f742062652074686560448201526c207a65726f206164647265737360981b6064820152608401610957565b6001600160a01b038216610cd95760405162461bcd60e51b815260206004820152602a60248201527f747261646974696f6e57616c6c65742063616e6e6f7420626520746865207a65604482015269726f206164647265737360b01b6064820152608401610957565b6001600160a01b038116610d3f5760405162461bcd60e51b815260206004820152602760248201527f666c6967687457616c6c65742063616e6e6f7420626520746865207a65726f206044820152666164647265737360c81b6064820152608401610957565b600980546001600160a01b038581166001600160a01b031992831681178455600a805487841690851681178255600b80548886169616861790556000858152600660209081526040808320805460ff1990811660019081179092559554881684528184208054871682179055985490961682529085902080549093169096179091558251918252938101939093528201527fbf13ed3f750e39a36873a4c7a0134665f2708e445334c5ffeeb38d03e37fb17e9060600160405180910390a1505050565b6000336108e3818585610e158383611317565b610e1f91906123bd565b611486565b610e2c6115aa565b610b236000611b50565b610e3e6115aa565b6001600160a01b038116610e945760405162461bcd60e51b815260206004820152601b60248201527f506169722063616e6e6f74206265207a65726f206164647265737300000000006044820152606401610957565b600880546001600160a01b0319166001600160a01b0383169081179091556040519081527f1d288f7aba265e8b154b112bbb631ceca5df5fe93a750b2fe042fd1cc826647f90602001610bf1565b610eea6115aa565b6040516370a0823160e01b815230600482015281906001600160a01b038416906370a0823190602401602060405180830381865afa158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5491906123e7565b1015610fa25760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742045524332302062616c616e63650000000000006044820152606401610957565b816001600160a01b031663a9059cbb610fc36005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015611010573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110349190612400565b505050565b6110416115aa565b6001600160a01b03821660009081526006602052604090205481151560ff9091161515036110a55760405162461bcd60e51b815260206004820152601160248201527014dd185d1948185b1c9958591e481cd95d607a1b6044820152606401610957565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527f9817c07fa4cca31c109acf04d9dd7c6055b09f96b2927da7a8f9f447a0cf18d8910160405180910390a15050565b6111106115aa565b6064811061116b5760405162461bcd60e51b815260206004820152602260248201527f5472616e7366657220666565206d757374206265206c657373207468616e2031604482015261030360f41b6064820152608401610957565b60108190556040517f6d58c6dc772669fca481506571330f160785469830c3888c824e5ff2e81c47d790600090a150565b6060600480546108529061236d565b6111b36115aa565b6111c581670de0b6b3a76400006123d0565b600e556040518181527f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690602001610bf1565b600033816112068286611317565b9050838110156112665760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610957565b610b3e8286868403611486565b6000336108e3818585611797565b6112896115aa565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6112b26115aa565b600780546001600160a01b0319166001600160a01b0383169081179091556040519081527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc8090602001610bf1565b6113086115aa565b6019805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61134a6115aa565b600d80548215156101000261ff00199091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890610bf190831515815260200190565b61139b6115aa565b60005b81811015611034576001600c60008585858181106113be576113be61241d565b90506020020160208101906113d39190612242565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061140581612433565b91505061139e565b6114156115aa565b6001600160a01b03811661147a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610957565b61148381611b50565b50565b6001600160a01b0383166114e85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610957565b6001600160a01b0382166115495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610957565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610b235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610957565b804710156116545760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610957565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116a1576040519150601f19603f3d011682016040523d82523d6000602084013e6116a6565b606091505b50509050806110345760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610957565b60006117298484611317565b9050600019811461179157818110156117845760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610957565b6117918484848403611486565b50505050565b600081116117f95760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610957565b6001600160a01b0382166000908152600c602052604090205460ff16156118625760405162461bcd60e51b815260206004820152601f60248201527f5468697320616464726573732069732063757272656e746c79206272656164006044820152606401610957565b6001600160a01b0383166000908152600c602052604090205460ff16156118cb5760405162461bcd60e51b815260206004820152601f60248201527f5468697320616464726573732069732063757272656e746c79206272656164006044820152606401610957565b6001600160a01b03831660009081526006602052604090205460ff1615801561190d57506001600160a01b03821660009081526006602052604090205460ff16155b15611a0a5760195460ff166119645760405162461bcd60e51b815260206004820152601c60248201527f5472616e73616374696f6e7320617265206e6f7420656e61626c6564000000006044820152606401610957565b6008546001600160a01b03838116911614611a0a57600f548161199c846001600160a01b031660009081526020819052604090205490565b6119a691906123bd565b1115611a0a5760405162461bcd60e51b815260206004820152602d60248201527f52656365697665722062616c616e636520697320657863656564696e67206d6160448201526c1e15d85b1b195d105b5bdd5b9d609a1b6064820152608401610957565b600d5460009060ff16158015611a3957506001600160a01b03841660009081526006602052604090205460ff16155b8015611a5e57506001600160a01b03831660009081526006602052604090205460ff16155b15611add576008546001600160a01b0390811690841603611a9a57606460175483611a8991906123d0565b611a93919061244c565b9050611add565b6008546001600160a01b0390811690851603611ac057606460185483611a8991906123d0565b606460105483611ad091906123d0565b611ada919061244c565b90505b600d5460ff16158015611af75750600d54610100900460ff165b8015611b1057506008546001600160a01b038481169116145b8015611b1e57506000601754115b15611b2b57611b2b611ba2565b611b3f8484611b3a848661246e565b611d06565b801561179157611791843083611d06565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d5460ff16610b2357600d805460ff19166001179055306000908152602081905260408120549050600e548110611cf9576001600e541115611be45750600e545b60006017546002611bf591906123d0565b905060008160146000015484611c0b91906123d0565b611c15919061244c565b90506000611c23828561246e565b905047611c2f82611ed4565b6000611c3b824761246e565b601454909150600090611c4e908761246e565b611c58908361244c565b601454909150600090611c6b90836123d0565b90508015611c7d57611c7d868261202e565b601554600090611c8e8460026123d0565b611c9891906123d0565b90508015611cb657600a54611cb6906001600160a01b031682611604565b601654600090611cc78560026123d0565b611cd191906123d0565b90508015611cef57600b54611cef906001600160a01b031682611604565b5050505050505050505b50600d805460ff19169055565b6001600160a01b038316611d6a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610957565b6001600160a01b038216611dcc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610957565b6001600160a01b03831660009081526020819052604090205481811015611e445760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610957565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e7b9084906123bd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ec791815260200190565b60405180910390a3611791565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f0957611f0961241d565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f869190612481565b81600181518110611f9957611f9961241d565b6001600160a01b039283166020918202929092010152600754611fbf9130911684611486565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ff890859060009086903090429060040161249e565b600060405180830381600087803b15801561201257600080fd5b505af1158015612026573d6000803e3d6000fd5b505050505050565b6007546120469030906001600160a01b031684611486565b60075460095460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156120b6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120db919061250f565b5050505050565b600060208083528351808285015260005b8181101561210f578581018301518582016040015282016120f3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461148357600080fd5b6000806040838503121561215857600080fd5b823561216381612130565b946020939093013593505050565b60008060006060848603121561218657600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156121b257600080fd5b83356121bd81612130565b925060208401356121cd81612130565b929592945050506040919091013590565b6000602082840312156121f057600080fd5b5035919050565b60008060006060848603121561220c57600080fd5b833561221781612130565b9250602084013561222781612130565b9150604084013561223781612130565b809150509250925092565b60006020828403121561225457600080fd5b813561225f81612130565b9392505050565b801515811461148357600080fd5b6000806040838503121561228757600080fd5b823561229281612130565b915060208301356122a281612266565b809150509250929050565b600080604083850312156122c057600080fd5b82356122cb81612130565b915060208301356122a281612130565b6000602082840312156122ed57600080fd5b813561225f81612266565b6000806020838503121561230b57600080fd5b823567ffffffffffffffff8082111561232357600080fd5b818501915085601f83011261233757600080fd5b81358181111561234657600080fd5b8660208260051b850101111561235b57600080fd5b60209290920196919550909350505050565b600181811c9082168061238157607f821691505b6020821081036123a157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e9576108e96123a7565b80820281158282048414176108e9576108e96123a7565b6000602082840312156123f957600080fd5b5051919050565b60006020828403121561241257600080fd5b815161225f81612266565b634e487b7160e01b600052603260045260246000fd5b600060018201612445576124456123a7565b5060010190565b60008261246957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108e9576108e96123a7565b60006020828403121561249357600080fd5b815161225f81612130565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124ee5784516001600160a01b0316835293830193918301916001016124c9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561252457600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122025023fac3faa7a49fd55de830e4160b03398b62ced73a0fa2eca7c66672bb5ae64736f6c63430008110033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a446f204e6f7420427579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003444e420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _name_ (string): Do Not Buy
Arg [2] : _symbol_ (string): DNB

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 446f204e6f742042757900000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 444e420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35338:13677:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35749:28;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;35749:28:0;;;;;;;;21866:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24217:201::-;;;;;;;;;;-1:-1:-1;24217:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;24217:201:0;1205:187:1;42537:340:0;;;;;;;;;;-1:-1:-1;42537:340:0;;;;;:::i;:::-;;:::i;:::-;;42885:344;;;;;;;;;;-1:-1:-1;42885:344:0;;;;;:::i;:::-;;:::i;22986:108::-;;;;;;;;;;-1:-1:-1;23074:12:0;;22986:108;;44787:180;;;;;;;;;;;;;:::i;24998:295::-;;;;;;;;;;-1:-1:-1;24998:295:0;;;;;:::i;:::-;;:::i;43958:239::-;;;;;;;;;;-1:-1:-1;43958:239:0;;;;;:::i;:::-;;:::i;22828:93::-;;;;;;;;;;-1:-1:-1;22828:93:0;;22911:2;2506:36:1;;2494:2;2479:18;22828:93:0;2364:184:1;41528:779:0;;;;;;;;;;-1:-1:-1;41528:779:0;;;;;:::i;:::-;;:::i;25702:238::-;;;;;;;;;;-1:-1:-1;25702:238:0;;;;;:::i;:::-;;:::i;36086:30::-;;;;;;;;;;;;;;;;35527:33;;;;;;;;;;-1:-1:-1;35527:33:0;;;;-1:-1:-1;;;;;35527:33:0;;;;;;-1:-1:-1;;;;;3251:32:1;;;3233:51;;3221:2;3206:18;35527:33:0;3087:203:1;35719:23:0;;;;;;;;;;-1:-1:-1;35719:23:0;;;;;;;;;;;23157:127;;;;;;;;;;-1:-1:-1;23157:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;23258:18:0;23231:7;23258:18;;;;;;;;;;;;23157:127;34478:103;;;;;;;;;;;;;:::i;44355:193::-;;;;;;;;;;-1:-1:-1;44355:193:0;;;;;:::i;:::-;;:::i;44975:235::-;;;;;;;;;;-1:-1:-1;44975:235:0;;;;;:::i;:::-;;:::i;33830:87::-;;;;;;;;;;-1:-1:-1;33903:6:0;;-1:-1:-1;;;;;33903:6:0;33830:87;;44556:223;;;;;;;;;;-1:-1:-1;44556:223:0;;;;;:::i;:::-;;:::i;42315:214::-;;;;;;;;;;-1:-1:-1;42315:214:0;;;;;:::i;:::-;;:::i;22085:104::-;;;;;;;;;;;;;:::i;43796:154::-;;;;;;;;;;-1:-1:-1;43796:154:0;;;;;:::i;:::-;;:::i;36048:31::-;;;;;;;;;;;;;;;;26443:436;;;;;;;;;;-1:-1:-1;26443:436:0;;;;;:::i;:::-;;:::i;35499:19::-;;;;;;;;;;-1:-1:-1;35499:19:0;;;;-1:-1:-1;;;;;35499:19:0;;;23490:193;;;;;;;;;;-1:-1:-1;23490:193:0;;;;;:::i;:::-;;:::i;35567:30::-;;;;;;;;;;-1:-1:-1;35567:30:0;;;;-1:-1:-1;;;;;35567:30:0;;;35784;;;;;;;;;;;;;;;;35823:26;;;;;;;;;;;;;;;;35604:27;;;;;;;;;;-1:-1:-1;35604:27:0;;;;-1:-1:-1;;;;;35604:27:0;;;43684:102;;;;;;;;;;-1:-1:-1;43684:102:0;;;;;:::i;:::-;;:::i;36125:27::-;;;;;;;;;;-1:-1:-1;36125:27:0;;;;;;;;44205:142;;;;;;;;;;-1:-1:-1;44205:142:0;;;;;:::i;:::-;;:::i;48867:90::-;;;;;;;;;;;;;:::i;35421:41::-;;;;;;;;;;-1:-1:-1;35421:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43378:103;;;;;;;;;;-1:-1:-1;43378:103:0;;;;;:::i;:::-;-1:-1:-1;;;;;43456:17:0;43432:4;43456:17;;;:8;:17;;;;;;;;;43378:103;23746:151;;;;;;;;;;-1:-1:-1;23746:151:0;;;;;:::i;:::-;;:::i;43237:126::-;;;;;;;;;;-1:-1:-1;43237:126:0;;;;;:::i;:::-;;:::i;36007:34::-;;;;;;;;;;-1:-1:-1;36007:34:0;;;;;;;;;;;;;;;;4898:25:1;;;4954:2;4939:18;;4932:34;;;;4982:18;;;4975:34;4886:2;4871:18;36007:34:0;4696:319:1;35967:33:0;;;;;;;;;;-1:-1:-1;35967:33:0;;;;;;;;;;;;43489:187;;;;;;;;;;-1:-1:-1;43489:187:0;;;;;:::i;:::-;;:::i;34736:201::-;;;;;;;;;;-1:-1:-1;34736:201:0;;;;;:::i;:::-;;:::i;35471:21::-;;;;;;;;;;-1:-1:-1;35471:21:0;;;;-1:-1:-1;;;;;35471:21:0;;;21866:100;21920:13;21953:5;21946:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21866:100;:::o;24217:201::-;24300:4;15794:10;24356:32;15794:10;24372:7;24381:6;24356:8;:32::i;:::-;24406:4;24399:11;;;24217:201;;;;;:::o;42537:340::-;33716:13;:11;:13::i;:::-;42687:3:::1;42677:7:::0;42651:23:::1;42664:10:::0;42651;:23:::1;:::i;:::-;:33;;;;:::i;:::-;:39;42643:81;;;::::0;-1:-1:-1;;;42643:81:0;;6712:2:1;42643:81:0::1;::::0;::::1;6694:21:1::0;6751:2;6731:18;;;6724:30;6790:31;6770:18;;;6763:59;6839:18;;42643:81:0::1;;;;;;;;;42745:37;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;42735:7:::1;:47:::0;;;;;;;;;;;42774:7;42807:23:::1;42762:10:::0;42750;42807:23:::1;:::i;:::-;:33;;;;:::i;:::-;42793:11;:47:::0;42856:13:::1;::::0;::::1;::::0;;;::::1;42537:340:::0;;;:::o;42885:344::-;33716:13;:11;:13::i;:::-;43036:3:::1;43026:7:::0;43000:23:::1;43013:10:::0;43000;:23:::1;:::i;:::-;:33;;;;:::i;:::-;:39;42992:82;;;::::0;-1:-1:-1;;;42992:82:0;;7070:2:1;42992:82:0::1;::::0;::::1;7052:21:1::0;7109:2;7089:18;;;7082:30;7148:32;7128:18;;;7121:60;7198:18;;42992:82:0::1;6868:354:1::0;42992:82:0::1;43096:37;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;43085:8:::1;:48:::0;;;;;;;;;;;43125:7;43159:23:::1;43113:10:::0;43101;43159:23:::1;:::i;:::-;:33;;;;:::i;:::-;43144:12;:48:::0;43208:13:::1;::::0;::::1;::::0;;;::::1;42885:344:::0;;;:::o;44787:180::-;33716:13;:11;:13::i;:::-;44869:1:::1;44845:21;:25;44837:62;;;::::0;-1:-1:-1;;;44837:62:0;;7429:2:1;44837:62:0::1;::::0;::::1;7411:21:1::0;7468:2;7448:18;;;7441:30;7507:26;7487:18;;;7480:54;7551:18;;44837:62:0::1;7227:348:1::0;44837:62:0::1;44910:49;44937:21;44918:7;33903:6:::0;;-1:-1:-1;;;;;33903:6:0;;33830:87;44918:7:::1;-1:-1:-1::0;;;;;44910:26:0::1;::::0;::::1;:49::i;:::-;44787:180::o:0;24998:295::-;25129:4;15794:10;25187:38;25203:4;15794:10;25218:6;25187:15;:38::i;:::-;25236:27;25246:4;25252:2;25256:6;25236:9;:27::i;:::-;-1:-1:-1;25281:4:0;;24998:295;-1:-1:-1;;;;24998:295:0:o;43958:239::-;33716:13;:11;:13::i;:::-;44049:9:::1;44039:6;:19;;44031:68;;;::::0;-1:-1:-1;;;44031:68:0;;7782:2:1;44031:68:0::1;::::0;::::1;7764:21:1::0;7821:2;7801:18;;;7794:30;7860:34;7840:18;;;7833:62;-1:-1:-1;;;7911:18:1;;;7904:34;7955:19;;44031:68:0::1;7580:400:1::0;44031:68:0::1;44128:15;:6:::0;44137::::1;44128:15;:::i;:::-;44110;:33:::0;44159:30:::1;::::0;160:25:1;;;44159:30:0::1;::::0;148:2:1;133:18;44159:30:0::1;;;;;;;;43958:239:::0;:::o;41528:779::-;33716:13;:11;:13::i;:::-;-1:-1:-1;;;;;41669:33:0;::::1;41661:91;;;::::0;-1:-1:-1;;;41661:91:0;;8360:2:1;41661:91:0::1;::::0;::::1;8342:21:1::0;8399:2;8379:18;;;8372:30;8438:34;8418:18;;;8411:62;-1:-1:-1;;;8489:18:1;;;8482:43;8542:19;;41661:91:0::1;8158:409:1::0;41661:91:0::1;-1:-1:-1::0;;;;;41771:30:0;::::1;41763:85;;;::::0;-1:-1:-1;;;41763:85:0;;8774:2:1;41763:85:0::1;::::0;::::1;8756:21:1::0;8813:2;8793:18;;;8786:30;8852:34;8832:18;;;8825:62;-1:-1:-1;;;8903:18:1;;;8896:40;8953:19;;41763:85:0::1;8572:406:1::0;41763:85:0::1;-1:-1:-1::0;;;;;41867:27:0;::::1;41859:79;;;::::0;-1:-1:-1;;;41859:79:0;;9185:2:1;41859:79:0::1;::::0;::::1;9167:21:1::0;9224:2;9204:18;;;9197:30;9263:34;9243:18;;;9236:62;-1:-1:-1;;;9314:18:1;;;9307:37;9361:19;;41859:79:0::1;8983:403:1::0;41859:79:0::1;41949:18;:40:::0;;-1:-1:-1;;;;;41949:40:0;;::::1;-1:-1:-1::0;;;;;;41949:40:0;;::::1;::::0;::::1;::::0;;42000:15:::1;:34:::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;42045:12:::1;:28:::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;-1:-1:-1;42086:23:0;;;:9:::1;:23;::::0;;;;;;;:30;;-1:-1:-1;;42086:30:0;;::::1;-1:-1:-1::0;42086:30:0;;::::1;::::0;;;42137:15;;;::::1;42127:26:::0;;;;;:33;;;::::1;::::0;::::1;::::0;;42181:18;;;;::::1;42171:29:::0;;;;;;:36;;;;::::1;::::0;;::::1;::::0;;;42225:74;;9631:34:1;;;9681:18;;;9674:43;;;;9733:18;;9726:43;42225:74:0::1;::::0;9581:2:1;9566:18;42225:74:0::1;;;;;;;41528:779:::0;;;:::o;25702:238::-;25790:4;15794:10;25846:64;15794:10;25862:7;25899:10;25871:25;15794:10;25862:7;25871:9;:25::i;:::-;:38;;;;:::i;:::-;25846:8;:64::i;34478:103::-;33716:13;:11;:13::i;:::-;34543:30:::1;34570:1;34543:18;:30::i;44355:193::-:0;33716:13;:11;:13::i;:::-;-1:-1:-1;;;;;44426:21:0;::::1;44418:61;;;::::0;-1:-1:-1;;;44418:61:0;;9982:2:1;44418:61:0::1;::::0;::::1;9964:21:1::0;10021:2;10001:18;;;9994:30;10060:29;10040:18;;;10033:57;10107:18;;44418:61:0::1;9780:351:1::0;44418:61:0::1;44490:4;:14:::0;;-1:-1:-1;;;;;;44490:14:0::1;-1:-1:-1::0;;;;;44490:14:0;::::1;::::0;;::::1;::::0;;;44520:20:::1;::::0;3233:51:1;;;44520:20:0::1;::::0;3221:2:1;3206:18;44520:20:0::1;3087:203:1::0;44975:235:0;33716:13;:11;:13::i;:::-;45067:41:::1;::::0;-1:-1:-1;;;45067:41:0;;45102:4:::1;45067:41;::::0;::::1;3233:51:1::0;45112:6:0;;-1:-1:-1;;;;;45067:26:0;::::1;::::0;::::1;::::0;3206:18:1;;45067:41:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;;45059:90;;;::::0;-1:-1:-1;;;45059:90:0;;10527:2:1;45059:90:0::1;::::0;::::1;10509:21:1::0;10566:2;10546:18;;;10539:30;10605:28;10585:18;;;10578:56;10651:18;;45059:90:0::1;10325:350:1::0;45059:90:0::1;45167:8;-1:-1:-1::0;;;;;45160:25:0::1;;45186:7;33903:6:::0;;-1:-1:-1;;;;;33903:6:0;;33830:87;45186:7:::1;45160:42;::::0;-1:-1:-1;;;;;;45160:42:0::1;::::0;;;;;;-1:-1:-1;;;;;10872:32:1;;;45160:42:0::1;::::0;::::1;10854:51:1::0;10921:18;;;10914:34;;;10827:18;;45160:42:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44975:235:::0;;:::o;44556:223::-;33716:13;:11;:13::i;:::-;-1:-1:-1;;;;;44642:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;:24;::::1;;:15;::::0;;::::1;:24;;::::0;44634:54:::1;;;::::0;-1:-1:-1;;;44634:54:0;;11411:2:1;44634:54:0::1;::::0;::::1;11393:21:1::0;11450:2;11430:18;;;11423:30;-1:-1:-1;;;11469:18:1;;;11462:47;11526:18;;44634:54:0::1;11209:341:1::0;44634:54:0::1;-1:-1:-1::0;;;;;44699:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;;;;:23;;-1:-1:-1;;44699:23:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44738:33;;11723:51:1;;;11790:18;;;11783:50;44738:33:0::1;::::0;11696:18:1;44738:33:0::1;;;;;;;44556:223:::0;;:::o;42315:214::-;33716:13;:11;:13::i;:::-;42413:3:::1;42398:12;:18;42390:65;;;::::0;-1:-1:-1;;;42390:65:0;;12046:2:1;42390:65:0::1;::::0;::::1;12028:21:1::0;12085:2;12065:18;;;12058:30;12124:34;12104:18;;;12097:62;-1:-1:-1;;;12175:18:1;;;12168:32;12217:19;;42390:65:0::1;11844:398:1::0;42390:65:0::1;42466:11;:26:::0;;;42508:13:::1;::::0;::::1;::::0;;;::::1;42315:214:::0;:::o;22085:104::-;22141:13;22174:7;22167:14;;;;;:::i;43796:154::-;33716:13;:11;:13::i;:::-;43883:15:::1;:6:::0;43892::::1;43883:15;:::i;:::-;43867:13;:31:::0;43914:28:::1;::::0;160:25:1;;;43914:28:0::1;::::0;148:2:1;133:18;43914:28:0::1;14:177:1::0;26443:436:0;26536:4;15794:10;26536:4;26619:25;15794:10;26636:7;26619:9;:25::i;:::-;26592:52;;26683:15;26663:16;:35;;26655:85;;;;-1:-1:-1;;;26655:85:0;;12449:2:1;26655:85:0;;;12431:21:1;12488:2;12468:18;;;12461:30;12527:34;12507:18;;;12500:62;-1:-1:-1;;;12578:18:1;;;12571:35;12623:19;;26655:85:0;12247:401:1;26655:85:0;26776:60;26785:5;26792:7;26820:15;26801:16;:34;26776:8;:60::i;23490:193::-;23569:4;15794:10;23625:28;15794:10;23642:2;23646:6;23625:9;:28::i;43684:102::-;33716:13;:11;:13::i;:::-;-1:-1:-1;;;;;43753:17:0::1;43773:5;43753:17:::0;;;:8:::1;:17;::::0;;;;:25;;-1:-1:-1;;43753:25:0::1;::::0;;43684:102::o;44205:142::-;33716:13;:11;:13::i;:::-;44272:6:::1;:27:::0;;-1:-1:-1;;;;;;44272:27:0::1;-1:-1:-1::0;;;;;44272:27:0;::::1;::::0;;::::1;::::0;;;44315:24:::1;::::0;3233:51:1;;;44315:24:0::1;::::0;3221:2:1;3206:18;44315:24:0::1;3087:203:1::0;48867:90:0;33716:13;:11;:13::i;:::-;48927:15:::1;:22:::0;;-1:-1:-1;;48927:22:0::1;48945:4;48927:22;::::0;;48867:90::o;23746:151::-;-1:-1:-1;;;;;23862:18:0;;;23835:7;23862:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23746:151::o;43237:126::-;33716:13;:11;:13::i;:::-;43302:11:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;43302:19:0;;::::1;;::::0;;43337:18:::1;::::0;::::1;::::0;::::1;::::0;43316:5;1370:14:1;1363:22;1345:41;;1333:2;1318:18;;1205:187;43489::0;33716:13;:11;:13::i;:::-;43577:9:::1;43573:96;43592:19:::0;;::::1;43573:96;;;43653:4;43629:8;:21;43638:8;;43647:1;43638:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43629:21:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43629:21:0;:28;;-1:-1:-1;;43629:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43613:3;::::1;::::0;::::1;:::i;:::-;;;;43573:96;;34736:201:::0;33716:13;:11;:13::i;:::-;-1:-1:-1;;;;;34825:22:0;::::1;34817:73;;;::::0;-1:-1:-1;;;34817:73:0;;13127:2:1;34817:73:0::1;::::0;::::1;13109:21:1::0;13166:2;13146:18;;;13139:30;13205:34;13185:18;;;13178:62;-1:-1:-1;;;13256:18:1;;;13249:36;13302:19;;34817:73:0::1;12925:402:1::0;34817:73:0::1;34901:28;34920:8;34901:18;:28::i;:::-;34736:201:::0;:::o;30068:380::-;-1:-1:-1;;;;;30204:19:0;;30196:68;;;;-1:-1:-1;;;30196:68:0;;13534:2:1;30196:68:0;;;13516:21:1;13573:2;13553:18;;;13546:30;13612:34;13592:18;;;13585:62;-1:-1:-1;;;13663:18:1;;;13656:34;13707:19;;30196:68:0;13332:400:1;30196:68:0;-1:-1:-1;;;;;30283:21:0;;30275:68;;;;-1:-1:-1;;;30275:68:0;;13939:2:1;30275:68:0;;;13921:21:1;13978:2;13958:18;;;13951:30;14017:34;13997:18;;;13990:62;-1:-1:-1;;;14068:18:1;;;14061:32;14110:19;;30275:68:0;13737:398:1;30275:68:0;-1:-1:-1;;;;;30356:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30408:32;;160:25:1;;;30408:32:0;;133:18:1;30408:32:0;;;;;;;30068:380;;;:::o;33995:132::-;33903:6;;-1:-1:-1;;;;;33903:6:0;15794:10;34059:23;34051:68;;;;-1:-1:-1;;;34051:68:0;;14342:2:1;34051:68:0;;;14324:21:1;;;14361:18;;;14354:30;14420:34;14400:18;;;14393:62;14472:18;;34051:68:0;14140:356:1;5559:317:0;5674:6;5649:21;:31;;5641:73;;;;-1:-1:-1;;;5641:73:0;;14703:2:1;5641:73:0;;;14685:21:1;14742:2;14722:18;;;14715:30;14781:31;14761:18;;;14754:59;14830:18;;5641:73:0;14501:353:1;5641:73:0;5728:12;5746:9;-1:-1:-1;;;;;5746:14:0;5768:6;5746:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5727:52;;;5798:7;5790:78;;;;-1:-1:-1;;;5790:78:0;;15271:2:1;5790:78:0;;;15253:21:1;15310:2;15290:18;;;15283:30;15349:34;15329:18;;;15322:62;15420:28;15400:18;;;15393:56;15466:19;;5790:78:0;15069:422:1;30739:453:0;30874:24;30901:25;30911:5;30918:7;30901:9;:25::i;:::-;30874:52;;-1:-1:-1;;30941:16:0;:37;30937:248;;31023:6;31003:16;:26;;30995:68;;;;-1:-1:-1;;;30995:68:0;;15698:2:1;30995:68:0;;;15680:21:1;15737:2;15717:18;;;15710:30;15776:31;15756:18;;;15749:59;15825:18;;30995:68:0;15496:353:1;30995:68:0;31107:51;31116:5;31123:7;31151:6;31132:16;:25;31107:8;:51::i;:::-;30863:329;30739:453;;;:::o;45218:1199::-;45325:1;45316:6;:10;45308:64;;;;-1:-1:-1;;;45308:64:0;;16056:2:1;45308:64:0;;;16038:21:1;16095:2;16075:18;;;16068:30;16134:34;16114:18;;;16107:62;-1:-1:-1;;;16185:18:1;;;16178:39;16234:19;;45308:64:0;15854:405:1;45308:64:0;-1:-1:-1;;;;;45392:12:0;;;;;;:8;:12;;;;;;;;45391:13;45383:57;;;;-1:-1:-1;;;45383:57:0;;16466:2:1;45383:57:0;;;16448:21:1;16505:2;16485:18;;;16478:30;16544:33;16524:18;;;16517:61;16595:18;;45383:57:0;16264:355:1;45383:57:0;-1:-1:-1;;;;;45460:14:0;;;;;;:8;:14;;;;;;;;45459:15;45451:59;;;;-1:-1:-1;;;45451:59:0;;16466:2:1;45451:59:0;;;16448:21:1;16505:2;16485:18;;;16478:30;16544:33;16524:18;;;16517:61;16595:18;;45451:59:0;16264:355:1;45451:59:0;-1:-1:-1;;;;;45527:15:0;;;;;;:9;:15;;;;;;;;45526:16;:34;;;;-1:-1:-1;;;;;;45547:13:0;;;;;;:9;:13;;;;;;;;45546:14;45526:34;45523:251;;;45585:15;;;;45577:56;;;;-1:-1:-1;;;45577:56:0;;16826:2:1;45577:56:0;;;16808:21:1;16865:2;16845:18;;;16838:30;16904;16884:18;;;16877:58;16952:18;;45577:56:0;16624:352:1;45577:56:0;45657:4;;-1:-1:-1;;;;;45651:10:0;;;45657:4;;45651:10;45648:114;;45697:15;;45687:6;45671:13;45681:2;-1:-1:-1;;;;;23258:18:0;23231:7;23258:18;;;;;;;;;;;;23157:127;45671:13;:22;;;;:::i;:::-;:41;;45663:99;;;;-1:-1:-1;;;45663:99:0;;17183:2:1;45663:99:0;;;17165:21:1;17222:2;17202:18;;;17195:30;17261:34;17241:18;;;17234:62;-1:-1:-1;;;17312:18:1;;;17305:43;17365:19;;45663:99:0;16981:409:1;45663:99:0;45817:8;;45786:14;;45817:8;;45816:9;:29;;;;-1:-1:-1;;;;;;45830:15:0;;;;;;:9;:15;;;;;;;;45829:16;45816:29;:47;;;;-1:-1:-1;;;;;;45850:13:0;;;;;;:9;:13;;;;;;;;45849:14;45816:47;45813:330;;;45888:4;;-1:-1:-1;;;;;45888:4:0;;;45882:10;;;;45879:253;;45945:3;45930:12;;45921:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;45912:36;;45879:253;;;45981:4;;-1:-1:-1;;;;;45981:4:0;;;45973:12;;;;45970:162;;46037:3;46023:11;;46014:6;:20;;;;:::i;45970:162::-;46113:3;46099:11;;46090:6;:20;;;;:::i;:::-;:26;;;;:::i;:::-;46081:35;;45970:162;46160:8;;;;46159:9;:24;;;;-1:-1:-1;46172:11:0;;;;;;;46159:24;:38;;;;-1:-1:-1;46193:4:0;;-1:-1:-1;;;;;46187:10:0;;;46193:4;;46187:10;46159:38;:58;;;;;46216:1;46201:12;;:16;46159:58;46155:104;;;46234:13;:11;:13::i;:::-;46271:42;46287:4;46293:2;46297:15;46306:6;46297;:15;:::i;:::-;46271;:42::i;:::-;46327:10;;46324:86;;46354:44;46370:4;46384;46391:6;46354:15;:44::i;35097:191::-;35190:6;;;-1:-1:-1;;;;;35207:17:0;;;-1:-1:-1;;;;;;35207:17:0;;;;;;;35240:40;;35190:6;;;35207:17;35190:6;;35240:40;;35171:16;;35240:40;35160:128;35097:191;:::o;46425:1453::-;36195:8;;;;36190:104;;36220:8;:15;;-1:-1:-1;;36220:15:0;36231:4;36220:15;;;46518:4:::1;-1:-1:-1::0;23258:18:0;;;;;;;;;;;46474:50:::1;;46558:13;;46539:15;:32;46535:1336;;46607:1;46591:13;;:17;46588:87;;;-1:-1:-1::0;46646:13:0::1;::::0;46588:87:::1;46744:19;46766:12;;46781:1;46766:16;;;;:::i;:::-;46744:38;;46797:32;46871:11;46850:8;:18;;;46832:15;:36;;;;:::i;:::-;:50;;;;:::i;:::-;46797:85:::0;-1:-1:-1;46897:14:0::1;46914:42;46797:85:::0;46914:15;:42:::1;:::i;:::-;46897:59:::0;-1:-1:-1;46998:21:0::1;47036:24;46897:59:::0;47036:16:::1;:24::i;:::-;47077:20;47100:38;47124:14:::0;47100:21:::1;:38;:::i;:::-;47204:8;:18:::0;47077:61;;-1:-1:-1;47153:19:0::1;::::0;47190:32:::1;::::0;:11;:32:::1;:::i;:::-;47174:49;::::0;:12;:49:::1;:::i;:::-;47284:8;:18:::0;47153:70;;-1:-1:-1;47238:29:0::1;::::0;47270:32:::1;::::0;47153:70;47270:32:::1;:::i;:::-;47238:64:::0;-1:-1:-1;47322:25:0;;47319:170:::1;;47412:61;47425:24;47451:21;47412:12;:61::i;:::-;47546:18:::0;;47505:20:::1;::::0;47528:15:::1;:11:::0;47542:1:::1;47528:15;:::i;:::-;:36;;;;:::i;:::-;47505:59:::0;-1:-1:-1;47582:16:0;;47579:103:::1;;47626:15;::::0;47618:48:::1;::::0;-1:-1:-1;;;;;47626:15:0::1;47653:12:::0;47618:34:::1;:48::i;:::-;47736:15:::0;;47698:17:::1;::::0;47718:15:::1;:11:::0;47736:15:::1;47718;:::i;:::-;:33;;;;:::i;:::-;47698:53:::0;-1:-1:-1;47769:13:0;;47766:94:::1;;47810:12;::::0;47802:42:::1;::::0;-1:-1:-1;;;;;47810:12:0::1;47834:9:::0;47802:31:::1;:42::i;:::-;46573:1298;;;;;;;;;46535:1336;-1:-1:-1::0;36266:8:0;:16;;-1:-1:-1;;36266:16:0;;;46425:1453::o;27349:671::-;-1:-1:-1;;;;;27480:18:0;;27472:68;;;;-1:-1:-1;;;27472:68:0;;17952:2:1;27472:68:0;;;17934:21:1;17991:2;17971:18;;;17964:30;18030:34;18010:18;;;18003:62;-1:-1:-1;;;18081:18:1;;;18074:35;18126:19;;27472:68:0;17750:401:1;27472:68:0;-1:-1:-1;;;;;27559:16:0;;27551:64;;;;-1:-1:-1;;;27551:64:0;;18358:2:1;27551:64:0;;;18340:21:1;18397:2;18377:18;;;18370:30;18436:34;18416:18;;;18409:62;-1:-1:-1;;;18487:18:1;;;18480:33;18530:19;;27551:64:0;18156:399:1;27551:64:0;-1:-1:-1;;;;;27701:15:0;;27679:19;27701:15;;;;;;;;;;;27735:21;;;;27727:72;;;;-1:-1:-1;;;27727:72:0;;18762:2:1;27727:72:0;;;18744:21:1;18801:2;18781:18;;;18774:30;18840:34;18820:18;;;18813:62;-1:-1:-1;;;18891:18:1;;;18884:36;18937:19;;27727:72:0;18560:402:1;27727:72:0;-1:-1:-1;;;;;27835:15:0;;;:9;:15;;;;;;;;;;;27853:20;;;27835:38;;27895:13;;;;;;;;:23;;27867:6;;27835:9;27895:23;;27867:6;;27895:23;:::i;:::-;;;;;;;;27951:2;-1:-1:-1;;;;;27936:26:0;27945:4;-1:-1:-1;;;;;27936:26:0;;27955:6;27936:26;;;;160:25:1;;148:2;133:18;;14:177;27936:26:0;;;;;;;;27975:37;44975:235;47886:459;48035:16;;;48049:1;48035:16;;;;;;;;48011:21;;48035:16;;;;;;;;;;-1:-1:-1;48035:16:0;48011:40;;48080:4;48062;48067:1;48062:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48062:23:0;;;:7;;;;;;;;;;:23;;;;48106:6;;:13;;;-1:-1:-1;;;48106:13:0;;;;:6;;;;;:11;;:13;;;;;48062:7;;48106:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48096:4;48101:1;48096:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48096:23:0;;;:7;;;;;;;;;:23;48164:6;;48132:53;;48149:4;;48164:6;48173:11;48132:8;:53::i;:::-;48224:6;;:111;;-1:-1:-1;;;48224:111:0;;-1:-1:-1;;;;;48224:6:0;;;;:57;;:111;;48282:11;;48224:6;;48298:4;;48312;;48319:15;;48224:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47941:404;47886:459;:::o;48353:506::-;48533:6;;48501:53;;48518:4;;-1:-1:-1;;;;;48533:6:0;48542:11;48501:8;:53::i;:::-;48597:6;;48792:18;;48597:254;;-1:-1:-1;;;48597:254:0;;48660:4;48597:254;;;20681:34:1;20731:18;;;20724:34;;;48597:6:0;20774:18:1;;;20767:34;;;20817:18;;;20810:34;-1:-1:-1;;;;;48792:18:0;;;20860:19:1;;;20853:44;48825:15:0;20913:19:1;;;20906:35;48597:6:0;;;:22;;48627:9;;20615:19:1;;48597:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48353:506;;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:316::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;-1:-1:-1;;1582:23:1;;;1652:2;1637:18;;1624:32;;-1:-1:-1;1703:2:1;1688:18;;;1675:32;;1397:316;-1:-1:-1;1397:316:1:o;1718:456::-;1795:6;1803;1811;1864:2;1852:9;1843:7;1839:23;1835:32;1832:52;;;1880:1;1877;1870:12;1832:52;1919:9;1906:23;1938:31;1963:5;1938:31;:::i;:::-;1988:5;-1:-1:-1;2045:2:1;2030:18;;2017:32;2058:33;2017:32;2058:33;:::i;:::-;1718:456;;2110:7;;-1:-1:-1;;;2164:2:1;2149:18;;;;2136:32;;1718:456::o;2179:180::-;2238:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:52;;;2307:1;2304;2297:12;2259:52;-1:-1:-1;2330:23:1;;2179:180;-1:-1:-1;2179:180:1:o;2553:529::-;2630:6;2638;2646;2699:2;2687:9;2678:7;2674:23;2670:32;2667:52;;;2715:1;2712;2705:12;2667:52;2754:9;2741:23;2773:31;2798:5;2773:31;:::i;:::-;2823:5;-1:-1:-1;2880:2:1;2865:18;;2852:32;2893:33;2852:32;2893:33;:::i;:::-;2945:7;-1:-1:-1;3004:2:1;2989:18;;2976:32;3017:33;2976:32;3017:33;:::i;:::-;3069:7;3059:17;;;2553:529;;;;;:::o;3295:247::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:31;3506:5;3481:31;:::i;:::-;3531:5;3295:247;-1:-1:-1;;;3295:247:1:o;3547:118::-;3633:5;3626:13;3619:21;3612:5;3609:32;3599:60;;3655:1;3652;3645:12;3670:382;3735:6;3743;3796:2;3784:9;3775:7;3771:23;3767:32;3764:52;;;3812:1;3809;3802:12;3764:52;3851:9;3838:23;3870:31;3895:5;3870:31;:::i;:::-;3920:5;-1:-1:-1;3977:2:1;3962:18;;3949:32;3990:30;3949:32;3990:30;:::i;:::-;4039:7;4029:17;;;3670:382;;;;;:::o;4057:388::-;4125:6;4133;4186:2;4174:9;4165:7;4161:23;4157:32;4154:52;;;4202:1;4199;4192:12;4154:52;4241:9;4228:23;4260:31;4285:5;4260:31;:::i;:::-;4310:5;-1:-1:-1;4367:2:1;4352:18;;4339:32;4380:33;4339:32;4380:33;:::i;4450:241::-;4506:6;4559:2;4547:9;4538:7;4534:23;4530:32;4527:52;;;4575:1;4572;4565:12;4527:52;4614:9;4601:23;4633:28;4655:5;4633:28;:::i;5020:615::-;5106:6;5114;5167:2;5155:9;5146:7;5142:23;5138:32;5135:52;;;5183:1;5180;5173:12;5135:52;5223:9;5210:23;5252:18;5293:2;5285:6;5282:14;5279:34;;;5309:1;5306;5299:12;5279:34;5347:6;5336:9;5332:22;5322:32;;5392:7;5385:4;5381:2;5377:13;5373:27;5363:55;;5414:1;5411;5404:12;5363:55;5454:2;5441:16;5480:2;5472:6;5469:14;5466:34;;;5496:1;5493;5486:12;5466:34;5549:7;5544:2;5534:6;5531:1;5527:14;5523:2;5519:23;5515:32;5512:45;5509:65;;;5570:1;5567;5560:12;5509:65;5601:2;5593:11;;;;;5623:6;;-1:-1:-1;5020:615:1;;-1:-1:-1;;;;5020:615:1:o;5863:380::-;5942:1;5938:12;;;;5985;;;6006:61;;6060:4;6052:6;6048:17;6038:27;;6006:61;6113:2;6105:6;6102:14;6082:18;6079:38;6076:161;;6159:10;6154:3;6150:20;6147:1;6140:31;6194:4;6191:1;6184:15;6222:4;6219:1;6212:15;6076:161;;5863:380;;;:::o;6248:127::-;6309:10;6304:3;6300:20;6297:1;6290:31;6340:4;6337:1;6330:15;6364:4;6361:1;6354:15;6380:125;6445:9;;;6466:10;;;6463:36;;;6479:18;;:::i;7985:168::-;8058:9;;;8089;;8106:15;;;8100:22;;8086:37;8076:71;;8127:18;;:::i;10136:184::-;10206:6;10259:2;10247:9;10238:7;10234:23;10230:32;10227:52;;;10275:1;10272;10265:12;10227:52;-1:-1:-1;10298:16:1;;10136:184;-1:-1:-1;10136:184:1:o;10959:245::-;11026:6;11079:2;11067:9;11058:7;11054:23;11050:32;11047:52;;;11095:1;11092;11085:12;11047:52;11127:9;11121:16;11146:28;11168:5;11146:28;:::i;12653:127::-;12714:10;12709:3;12705:20;12702:1;12695:31;12745:4;12742:1;12735:15;12769:4;12766:1;12759:15;12785:135;12824:3;12845:17;;;12842:43;;12865:18;;:::i;:::-;-1:-1:-1;12912:1:1;12901:13;;12785:135::o;17395:217::-;17435:1;17461;17451:132;;17505:10;17500:3;17496:20;17493:1;17486:31;17540:4;17537:1;17530:15;17568:4;17565:1;17558:15;17451:132;-1:-1:-1;17597:9:1;;17395:217::o;17617:128::-;17684:9;;;17705:11;;;17702:37;;;17719:18;;:::i;19099:251::-;19169:6;19222:2;19210:9;19201:7;19197:23;19193:32;19190:52;;;19238:1;19235;19228:12;19190:52;19270:9;19264:16;19289:31;19314:5;19289:31;:::i;19355:980::-;19617:4;19665:3;19654:9;19650:19;19696:6;19685:9;19678:25;19722:2;19760:6;19755:2;19744:9;19740:18;19733:34;19803:3;19798:2;19787:9;19783:18;19776:31;19827:6;19862;19856:13;19893:6;19885;19878:22;19931:3;19920:9;19916:19;19909:26;;19970:2;19962:6;19958:15;19944:29;;19991:1;20001:195;20015:6;20012:1;20009:13;20001:195;;;20080:13;;-1:-1:-1;;;;;20076:39:1;20064:52;;20171:15;;;;20136:12;;;;20112:1;20030:9;20001:195;;;-1:-1:-1;;;;;;;20252:32:1;;;;20247:2;20232:18;;20225:60;-1:-1:-1;;;20316:3:1;20301:19;20294:35;20213:3;19355:980;-1:-1:-1;;;19355:980:1:o;20952:306::-;21040:6;21048;21056;21109:2;21097:9;21088:7;21084:23;21080:32;21077:52;;;21125:1;21122;21115:12;21077:52;21154:9;21148:16;21138:26;;21204:2;21193:9;21189:18;21183:25;21173:35;;21248:2;21237:9;21233:18;21227:25;21217:35;;20952:306;;;;;:::o

Swarm Source

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