ETH Price: $3,561.18 (-1.41%)

Token

ERC-20: Confucius (KONGQIU)
 

Overview

Max Total Supply

100,000,000,000 KONGQIU

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,128,000,001.792027864792055201 KONGQIU

Value
$0.00
0x7d0383d358c8751596dc2bb030addb1751b70da0
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:
Confucius

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-04
*/

// CONFUCIUS AWAITS YOU.
// https://www.confucius.finance/


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

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

/* pragma solidity ^0.8.10; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

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

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

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

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

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

    // Bot blacklist 
    mapping(address => bool) private bots;


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Confucius", "KONGQIU") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyDevFee = 3;
        uint256 _buyLiquidityFee = 3;

        uint256 _sellDevFee = 3;
        uint256 _sellLiquidityFee = 3;

        uint256 totalSupply = 100_000_000_000 * 1e18;

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

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

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

        devWallet = address(0x34C15fEa6E9f66Dfa8a7E3A72Ce6b34401d2AAcD); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }
        function addBots(address[] memory bots_) public onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function delBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }


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

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

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

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

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

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

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


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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForUSDC(contractBalance);
    }

}

Contract Security Audit

Contract ABI

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

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b506040805180820182526009815268436f6e66756369757360b81b6020808301918252835180850190945260078452664b4f4e4751495560c81b9084015281519192916200009791600391620005a3565b508051620000ad906004906020840190620005a3565b505050620000ca620000c46200034460201b60201c565b62000348565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ec8160016200039a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000137573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015d919062000649565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d5919062000649565b6001600160a01b031660a0819052620001f09060016200039a565b60038080806c01431e0fae6d7217caa000000060646200021282600162000691565b6200021e9190620006b3565b60085560646200023082600162000691565b6200023c9190620006b3565b600a556127106200024f82600562000691565b6200025b9190620006b3565b600955600d859055600e849055620002748486620006d6565b600c55601083905560118290556200028d8284620006d6565b600f55600780546001600160a01b0319167334c15fea6e9f66dfa8a7e3a72ce6b34401d2aacd179055620002d5620002cd6005546001600160a01b031690565b600162000414565b620002e230600162000414565b620002f161dead600162000414565b62000310620003086005546001600160a01b031690565b60016200039a565b6200031d3060016200039a565b6200032c61dead60016200039a565b620003383382620004be565b5050505050506200072e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003e95760405162461bcd60e51b81526020600482018190526024820152600080516020620028f983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200045f5760405162461bcd60e51b81526020600482018190526024820152600080516020620028f98339815191526044820152606401620003e0565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e0565b80600260008282546200052a9190620006d6565b90915550506001600160a01b0382166000908152602081905260408120805483929062000559908490620006d6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005b190620006f1565b90600052602060002090601f016020900481019282620005d5576000855562000620565b82601f10620005f057805160ff191683800117855562000620565b8280016001018555821562000620579182015b828111156200062057825182559160200191906001019062000603565b506200062e92915062000632565b5090565b5b808211156200062e576000815560010162000633565b6000602082840312156200065c57600080fd5b81516001600160a01b03811681146200067457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006ae57620006ae6200067b565b500290565b600082620006d157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006ec57620006ec6200067b565b500190565b600181811c908216806200070657607f821691505b602082108114156200072857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161217462000785600039600081816104530152818161147701528181611688015281816117980152818161184101526118fb01526000818161033601528181611bdc0152611c1b01526121746000f3fe60806040526004361061026b5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461075d578063e2f45605146107a3578063f11a24d3146107b9578063f2fde38b146107cf578063f6374342146107ef578063f8b45b051461080557600080fd5b8063c18bc195146106d1578063c8c8ebe4146106f1578063d257b34f14610707578063d34628cc14610727578063d85ba0631461074757600080fd5b806395d89b411161010857806395d89b41146106315780639c3b4fdc14610646578063a0d82dc51461065c578063a9059cbb14610672578063bbc0c74214610692578063c0246668146106b157600080fd5b806389a302711461059e5780638a8c523c146105be5780638da5cb5b146105d35780638ea5220f146105f1578063924de9b71461061157600080fd5b8063313ce567116101dd5780636a486a8e116101a15780636a486a8e146104e85780636ddd1713146104fe57806370a082311461051e578063715018a614610554578063751039fc146105695780637571336a1461057e57600080fd5b8063313ce5671461042557806349bd5a5e146104415780634a62bb65146104755780634fbee1931461048f57806366ca9b83146104c857600080fd5b806318160ddd1161022f57806318160ddd146103705780631816467f1461038f578063203e727e146103af57806323b872dd146103cf578063273123b7146103ef57806327c8f8351461040f57600080fd5b806302dbd8f81461027757806306fdde0314610299578063095ea7b3146102c457806310d5de53146102f45780631694505e1461032457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611c93565b61081b565b005b3480156102a557600080fd5b506102ae6108bb565b6040516102bb9190611cb5565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004611d21565b61094d565b60405190151581526020016102bb565b34801561030057600080fd5b506102e461030f366004611d4b565b60136020526000908152604090205460ff1681565b34801561033057600080fd5b506103587f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102bb565b34801561037c57600080fd5b506002545b6040519081526020016102bb565b34801561039b57600080fd5b506102976103aa366004611d4b565b610963565b3480156103bb57600080fd5b506102976103ca366004611d66565b6109ea565b3480156103db57600080fd5b506102e46103ea366004611d7f565b610ac7565b3480156103fb57600080fd5b5061029761040a366004611d4b565b610b71565b34801561041b57600080fd5b5061035861dead81565b34801561043157600080fd5b50604051601281526020016102bb565b34801561044d57600080fd5b506103587f000000000000000000000000000000000000000000000000000000000000000081565b34801561048157600080fd5b50600b546102e49060ff1681565b34801561049b57600080fd5b506102e46104aa366004611d4b565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104d457600080fd5b506102976104e3366004611c93565b610bbc565b3480156104f457600080fd5b50610381600f5481565b34801561050a57600080fd5b50600b546102e49062010000900460ff1681565b34801561052a57600080fd5b50610381610539366004611d4b565b6001600160a01b031660009081526020819052604090205490565b34801561056057600080fd5b50610297610c4f565b34801561057557600080fd5b506102e4610c85565b34801561058a57600080fd5b50610297610599366004611dcb565b610cc2565b3480156105aa57600080fd5b50600654610358906001600160a01b031681565b3480156105ca57600080fd5b50610297610d17565b3480156105df57600080fd5b506005546001600160a01b0316610358565b3480156105fd57600080fd5b50600754610358906001600160a01b031681565b34801561061d57600080fd5b5061029761062c366004611dfe565b610d54565b34801561063d57600080fd5b506102ae610d9a565b34801561065257600080fd5b50610381600d5481565b34801561066857600080fd5b5061038160105481565b34801561067e57600080fd5b506102e461068d366004611d21565b610da9565b34801561069e57600080fd5b50600b546102e490610100900460ff1681565b3480156106bd57600080fd5b506102976106cc366004611dcb565b610db6565b3480156106dd57600080fd5b506102976106ec366004611d66565b610e3f565b3480156106fd57600080fd5b5061038160085481565b34801561071357600080fd5b506102e4610722366004611d66565b610f10565b34801561073357600080fd5b50610297610742366004611e2f565b611067565b34801561075357600080fd5b50610381600c5481565b34801561076957600080fd5b50610381610778366004611ef4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107af57600080fd5b5061038160095481565b3480156107c557600080fd5b50610381600e5481565b3480156107db57600080fd5b506102976107ea366004611d4b565b6110f9565b3480156107fb57600080fd5b5061038160115481565b34801561081157600080fd5b50610381600a5481565b6005546001600160a01b0316331461084e5760405162461bcd60e51b815260040161084590611f1e565b60405180910390fd5b601082905560118190556108628183611f69565b600f819055600a10156108b75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610845565b5050565b6060600380546108ca90611f81565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611f81565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095a338484611194565b50600192915050565b6005546001600160a01b0316331461098d5760405162461bcd60e51b815260040161084590611f1e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a145760405162461bcd60e51b815260040161084590611f1e565b670de0b6b3a76400006103e8610a2960025490565b610a34906001611fbc565b610a3e9190611fdb565b610a489190611fdb565b811015610aaf5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610845565b610ac181670de0b6b3a7640000611fbc565b60085550565b6000610ad48484846112b8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b595760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610845565b610b668533858403611194565b506001949350505050565b6005546001600160a01b03163314610b9b5760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b03166000908152601460205260409020805460ff19169055565b6005546001600160a01b03163314610be65760405162461bcd60e51b815260040161084590611f1e565b600d829055600e819055610bfa8183611f69565b600c819055600a10156108b75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610845565b6005546001600160a01b03163314610c795760405162461bcd60e51b815260040161084590611f1e565b610c836000611943565b565b6005546000906001600160a01b03163314610cb25760405162461bcd60e51b815260040161084590611f1e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cec5760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d415760405162461bcd60e51b815260040161084590611f1e565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d7e5760405162461bcd60e51b815260040161084590611f1e565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108ca90611f81565b600061095a3384846112b8565b6005546001600160a01b03163314610de05760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e695760405162461bcd60e51b815260040161084590611f1e565b670de0b6b3a76400006103e8610e7e60025490565b610e89906005611fbc565b610e939190611fdb565b610e9d9190611fdb565b811015610ef85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610845565b610f0a81670de0b6b3a7640000611fbc565b600a5550565b6005546000906001600160a01b03163314610f3d5760405162461bcd60e51b815260040161084590611f1e565b620186a0610f4a60025490565b610f55906001611fbc565b610f5f9190611fdb565b821015610fcc5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610845565b6103e8610fd860025490565b610fe3906005611fbc565b610fed9190611fdb565b8211156110595760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610845565b50600981905560015b919050565b6005546001600160a01b031633146110915760405162461bcd60e51b815260040161084590611f1e565b60005b81518110156108b7576001601460008484815181106110b5576110b5611ffd565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110f181612013565b915050611094565b6005546001600160a01b031633146111235760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b0381166111885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610845565b61119181611943565b50565b6001600160a01b0383166111f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610845565b6001600160a01b0382166112575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610845565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112de5760405162461bcd60e51b81526004016108459061202e565b6001600160a01b0382166113045760405162461bcd60e51b815260040161084590612073565b8061131a5761131583836000611995565b505050565b600b5460ff161561163d576005546001600160a01b0384811691161480159061135157506005546001600160a01b03838116911614155b801561136557506001600160a01b03821615155b801561137c57506001600160a01b03821661dead14155b80156113925750600654600160a01b900460ff16155b1561163d57600b54610100900460ff16611475576001600160a01b03831660009081526014602052604090205460ff161580156113e857506001600160a01b03821660009081526014602052604090205460ff16155b6113f157600080fd5b6001600160a01b03831660009081526012602052604090205460ff168061143057506001600160a01b03821660009081526012602052604090205460ff165b6114755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610845565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156114cf57506001600160a01b03821660009081526013602052604090205460ff16155b156115b3576008548111156115445760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610845565b600a546001600160a01b03831660009081526020819052604090205461156a9083611f69565b11156115ae5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610845565b61163d565b6001600160a01b03821660009081526013602052604090205460ff1661163d57600a546001600160a01b0383166000908152602081905260409020546115f99083611f69565b111561163d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610845565b30600090815260208190526040902054600954811080159081906116695750600b5462010000900460ff165b801561167f5750600654600160a01b900460ff16155b80156116bc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156116e157506001600160a01b03851660009081526012602052604090205460ff16155b801561170657506001600160a01b03841660009081526012602052604090205460ff16155b15611734576006805460ff60a01b1916600160a01b179055611726611aea565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061178257506001600160a01b03851660009081526012602052604090205460ff165b1561178b575060005b6000806000831561192d577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156117d957506000600f54115b1561183f576117fe60646117f8600f548a611b3190919063ffffffff16565b90611b44565b9250600f54601154846118119190611fbc565b61181b9190611fdb565b9150600f546010548461182e9190611fbc565b6118389190611fdb565b90506118de565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561188257506000600c54115b156118de576118a160646117f8600c548a611b3190919063ffffffff16565b9250600c54600e54846118b49190611fbc565b6118be9190611fdb565b9150600c54600d54846118d19190611fbc565b6118db9190611fdb565b90505b82156118ef576118ef893085611995565b811561192057611920307f000000000000000000000000000000000000000000000000000000000000000084611995565b61192a83886120b6565b96505b611938898989611995565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119bb5760405162461bcd60e51b81526004016108459061202e565b6001600160a01b0382166119e15760405162461bcd60e51b815260040161084590612073565b6001600160a01b03831660009081526020819052604090205481811015611a595760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610845565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a90908490611f69565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611adc91815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611b025750565b600954611b10906014611fbc565b811115611b2857600954611b25906014611fbc565b90505b61119181611b50565b6000611b3d8284611fbc565b9392505050565b6000611b3d8284611fdb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b8557611b85611ffd565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611bb657611bb6611ffd565b60200260200101906001600160a01b031690816001600160a01b031681525050611c01307f000000000000000000000000000000000000000000000000000000000000000084611194565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611c5d9287926000928892919091169042906004016120cd565b600060405180830381600087803b158015611c7757600080fd5b505af1158015611c8b573d6000803e3d6000fd5b505050505050565b60008060408385031215611ca657600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611ce257858101830151858201604001528201611cc6565b81811115611cf4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461106257600080fd5b60008060408385031215611d3457600080fd5b611d3d83611d0a565b946020939093013593505050565b600060208284031215611d5d57600080fd5b611b3d82611d0a565b600060208284031215611d7857600080fd5b5035919050565b600080600060608486031215611d9457600080fd5b611d9d84611d0a565b9250611dab60208501611d0a565b9150604084013590509250925092565b8035801515811461106257600080fd5b60008060408385031215611dde57600080fd5b611de783611d0a565b9150611df560208401611dbb565b90509250929050565b600060208284031215611e1057600080fd5b611b3d82611dbb565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611e4257600080fd5b823567ffffffffffffffff80821115611e5a57600080fd5b818501915085601f830112611e6e57600080fd5b813581811115611e8057611e80611e19565b8060051b604051601f19603f83011681018181108582111715611ea557611ea5611e19565b604052918252848201925083810185019188831115611ec357600080fd5b938501935b82851015611ee857611ed985611d0a565b84529385019392850192611ec8565b98975050505050505050565b60008060408385031215611f0757600080fd5b611f1083611d0a565b9150611df560208401611d0a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f7c57611f7c611f53565b500190565b600181811c90821680611f9557607f821691505b60208210811415611fb657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611fd657611fd6611f53565b500290565b600082611ff857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060001982141561202757612027611f53565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156120c8576120c8611f53565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561211d5784516001600160a01b0316835293830193918301916001016120f8565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206089ff598bbc3e571c36adcb1da28d9329f439df98125f07e7a21dd8e923c7fe64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461075d578063e2f45605146107a3578063f11a24d3146107b9578063f2fde38b146107cf578063f6374342146107ef578063f8b45b051461080557600080fd5b8063c18bc195146106d1578063c8c8ebe4146106f1578063d257b34f14610707578063d34628cc14610727578063d85ba0631461074757600080fd5b806395d89b411161010857806395d89b41146106315780639c3b4fdc14610646578063a0d82dc51461065c578063a9059cbb14610672578063bbc0c74214610692578063c0246668146106b157600080fd5b806389a302711461059e5780638a8c523c146105be5780638da5cb5b146105d35780638ea5220f146105f1578063924de9b71461061157600080fd5b8063313ce567116101dd5780636a486a8e116101a15780636a486a8e146104e85780636ddd1713146104fe57806370a082311461051e578063715018a614610554578063751039fc146105695780637571336a1461057e57600080fd5b8063313ce5671461042557806349bd5a5e146104415780634a62bb65146104755780634fbee1931461048f57806366ca9b83146104c857600080fd5b806318160ddd1161022f57806318160ddd146103705780631816467f1461038f578063203e727e146103af57806323b872dd146103cf578063273123b7146103ef57806327c8f8351461040f57600080fd5b806302dbd8f81461027757806306fdde0314610299578063095ea7b3146102c457806310d5de53146102f45780631694505e1461032457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611c93565b61081b565b005b3480156102a557600080fd5b506102ae6108bb565b6040516102bb9190611cb5565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004611d21565b61094d565b60405190151581526020016102bb565b34801561030057600080fd5b506102e461030f366004611d4b565b60136020526000908152604090205460ff1681565b34801561033057600080fd5b506103587f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102bb565b34801561037c57600080fd5b506002545b6040519081526020016102bb565b34801561039b57600080fd5b506102976103aa366004611d4b565b610963565b3480156103bb57600080fd5b506102976103ca366004611d66565b6109ea565b3480156103db57600080fd5b506102e46103ea366004611d7f565b610ac7565b3480156103fb57600080fd5b5061029761040a366004611d4b565b610b71565b34801561041b57600080fd5b5061035861dead81565b34801561043157600080fd5b50604051601281526020016102bb565b34801561044d57600080fd5b506103587f000000000000000000000000a82264debc587929d8b0481636839f9aff3599ef81565b34801561048157600080fd5b50600b546102e49060ff1681565b34801561049b57600080fd5b506102e46104aa366004611d4b565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104d457600080fd5b506102976104e3366004611c93565b610bbc565b3480156104f457600080fd5b50610381600f5481565b34801561050a57600080fd5b50600b546102e49062010000900460ff1681565b34801561052a57600080fd5b50610381610539366004611d4b565b6001600160a01b031660009081526020819052604090205490565b34801561056057600080fd5b50610297610c4f565b34801561057557600080fd5b506102e4610c85565b34801561058a57600080fd5b50610297610599366004611dcb565b610cc2565b3480156105aa57600080fd5b50600654610358906001600160a01b031681565b3480156105ca57600080fd5b50610297610d17565b3480156105df57600080fd5b506005546001600160a01b0316610358565b3480156105fd57600080fd5b50600754610358906001600160a01b031681565b34801561061d57600080fd5b5061029761062c366004611dfe565b610d54565b34801561063d57600080fd5b506102ae610d9a565b34801561065257600080fd5b50610381600d5481565b34801561066857600080fd5b5061038160105481565b34801561067e57600080fd5b506102e461068d366004611d21565b610da9565b34801561069e57600080fd5b50600b546102e490610100900460ff1681565b3480156106bd57600080fd5b506102976106cc366004611dcb565b610db6565b3480156106dd57600080fd5b506102976106ec366004611d66565b610e3f565b3480156106fd57600080fd5b5061038160085481565b34801561071357600080fd5b506102e4610722366004611d66565b610f10565b34801561073357600080fd5b50610297610742366004611e2f565b611067565b34801561075357600080fd5b50610381600c5481565b34801561076957600080fd5b50610381610778366004611ef4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107af57600080fd5b5061038160095481565b3480156107c557600080fd5b50610381600e5481565b3480156107db57600080fd5b506102976107ea366004611d4b565b6110f9565b3480156107fb57600080fd5b5061038160115481565b34801561081157600080fd5b50610381600a5481565b6005546001600160a01b0316331461084e5760405162461bcd60e51b815260040161084590611f1e565b60405180910390fd5b601082905560118190556108628183611f69565b600f819055600a10156108b75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610845565b5050565b6060600380546108ca90611f81565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611f81565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600061095a338484611194565b50600192915050565b6005546001600160a01b0316331461098d5760405162461bcd60e51b815260040161084590611f1e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a145760405162461bcd60e51b815260040161084590611f1e565b670de0b6b3a76400006103e8610a2960025490565b610a34906001611fbc565b610a3e9190611fdb565b610a489190611fdb565b811015610aaf5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610845565b610ac181670de0b6b3a7640000611fbc565b60085550565b6000610ad48484846112b8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b595760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610845565b610b668533858403611194565b506001949350505050565b6005546001600160a01b03163314610b9b5760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b03166000908152601460205260409020805460ff19169055565b6005546001600160a01b03163314610be65760405162461bcd60e51b815260040161084590611f1e565b600d829055600e819055610bfa8183611f69565b600c819055600a10156108b75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610845565b6005546001600160a01b03163314610c795760405162461bcd60e51b815260040161084590611f1e565b610c836000611943565b565b6005546000906001600160a01b03163314610cb25760405162461bcd60e51b815260040161084590611f1e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cec5760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d415760405162461bcd60e51b815260040161084590611f1e565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d7e5760405162461bcd60e51b815260040161084590611f1e565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108ca90611f81565b600061095a3384846112b8565b6005546001600160a01b03163314610de05760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e695760405162461bcd60e51b815260040161084590611f1e565b670de0b6b3a76400006103e8610e7e60025490565b610e89906005611fbc565b610e939190611fdb565b610e9d9190611fdb565b811015610ef85760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610845565b610f0a81670de0b6b3a7640000611fbc565b600a5550565b6005546000906001600160a01b03163314610f3d5760405162461bcd60e51b815260040161084590611f1e565b620186a0610f4a60025490565b610f55906001611fbc565b610f5f9190611fdb565b821015610fcc5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610845565b6103e8610fd860025490565b610fe3906005611fbc565b610fed9190611fdb565b8211156110595760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610845565b50600981905560015b919050565b6005546001600160a01b031633146110915760405162461bcd60e51b815260040161084590611f1e565b60005b81518110156108b7576001601460008484815181106110b5576110b5611ffd565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110f181612013565b915050611094565b6005546001600160a01b031633146111235760405162461bcd60e51b815260040161084590611f1e565b6001600160a01b0381166111885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610845565b61119181611943565b50565b6001600160a01b0383166111f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610845565b6001600160a01b0382166112575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610845565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112de5760405162461bcd60e51b81526004016108459061202e565b6001600160a01b0382166113045760405162461bcd60e51b815260040161084590612073565b8061131a5761131583836000611995565b505050565b600b5460ff161561163d576005546001600160a01b0384811691161480159061135157506005546001600160a01b03838116911614155b801561136557506001600160a01b03821615155b801561137c57506001600160a01b03821661dead14155b80156113925750600654600160a01b900460ff16155b1561163d57600b54610100900460ff16611475576001600160a01b03831660009081526014602052604090205460ff161580156113e857506001600160a01b03821660009081526014602052604090205460ff16155b6113f157600080fd5b6001600160a01b03831660009081526012602052604090205460ff168061143057506001600160a01b03821660009081526012602052604090205460ff165b6114755760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610845565b7f000000000000000000000000a82264debc587929d8b0481636839f9aff3599ef6001600160a01b0316836001600160a01b03161480156114cf57506001600160a01b03821660009081526013602052604090205460ff16155b156115b3576008548111156115445760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610845565b600a546001600160a01b03831660009081526020819052604090205461156a9083611f69565b11156115ae5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610845565b61163d565b6001600160a01b03821660009081526013602052604090205460ff1661163d57600a546001600160a01b0383166000908152602081905260409020546115f99083611f69565b111561163d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610845565b30600090815260208190526040902054600954811080159081906116695750600b5462010000900460ff165b801561167f5750600654600160a01b900460ff16155b80156116bc57507f000000000000000000000000a82264debc587929d8b0481636839f9aff3599ef6001600160a01b0316846001600160a01b0316145b80156116e157506001600160a01b03851660009081526012602052604090205460ff16155b801561170657506001600160a01b03841660009081526012602052604090205460ff16155b15611734576006805460ff60a01b1916600160a01b179055611726611aea565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061178257506001600160a01b03851660009081526012602052604090205460ff165b1561178b575060005b6000806000831561192d577f000000000000000000000000a82264debc587929d8b0481636839f9aff3599ef6001600160a01b0316886001600160a01b03161480156117d957506000600f54115b1561183f576117fe60646117f8600f548a611b3190919063ffffffff16565b90611b44565b9250600f54601154846118119190611fbc565b61181b9190611fdb565b9150600f546010548461182e9190611fbc565b6118389190611fdb565b90506118de565b7f000000000000000000000000a82264debc587929d8b0481636839f9aff3599ef6001600160a01b0316896001600160a01b031614801561188257506000600c54115b156118de576118a160646117f8600c548a611b3190919063ffffffff16565b9250600c54600e54846118b49190611fbc565b6118be9190611fdb565b9150600c54600d54846118d19190611fbc565b6118db9190611fdb565b90505b82156118ef576118ef893085611995565b811561192057611920307f000000000000000000000000a82264debc587929d8b0481636839f9aff3599ef84611995565b61192a83886120b6565b96505b611938898989611995565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119bb5760405162461bcd60e51b81526004016108459061202e565b6001600160a01b0382166119e15760405162461bcd60e51b815260040161084590612073565b6001600160a01b03831660009081526020819052604090205481811015611a595760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610845565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a90908490611f69565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611adc91815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611b025750565b600954611b10906014611fbc565b811115611b2857600954611b25906014611fbc565b90505b61119181611b50565b6000611b3d8284611fbc565b9392505050565b6000611b3d8284611fdb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b8557611b85611ffd565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611bb657611bb6611ffd565b60200260200101906001600160a01b031690816001600160a01b031681525050611c01307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611194565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611c5d9287926000928892919091169042906004016120cd565b600060405180830381600087803b158015611c7757600080fd5b505af1158015611c8b573d6000803e3d6000fd5b505050505050565b60008060408385031215611ca657600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611ce257858101830151858201604001528201611cc6565b81811115611cf4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461106257600080fd5b60008060408385031215611d3457600080fd5b611d3d83611d0a565b946020939093013593505050565b600060208284031215611d5d57600080fd5b611b3d82611d0a565b600060208284031215611d7857600080fd5b5035919050565b600080600060608486031215611d9457600080fd5b611d9d84611d0a565b9250611dab60208501611d0a565b9150604084013590509250925092565b8035801515811461106257600080fd5b60008060408385031215611dde57600080fd5b611de783611d0a565b9150611df560208401611dbb565b90509250929050565b600060208284031215611e1057600080fd5b611b3d82611dbb565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611e4257600080fd5b823567ffffffffffffffff80821115611e5a57600080fd5b818501915085601f830112611e6e57600080fd5b813581811115611e8057611e80611e19565b8060051b604051601f19603f83011681018181108582111715611ea557611ea5611e19565b604052918252848201925083810185019188831115611ec357600080fd5b938501935b82851015611ee857611ed985611d0a565b84529385019392850192611ec8565b98975050505050505050565b60008060408385031215611f0757600080fd5b611f1083611d0a565b9150611df560208401611d0a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f7c57611f7c611f53565b500190565b600181811c90821680611f9557607f821691505b60208210811415611fb657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611fd657611fd6611f53565b500290565b600082611ff857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060001982141561202757612027611f53565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156120c8576120c8611f53565b500390565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561211d5784516001600160a01b0316835293830193918301916001016120f8565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206089ff598bbc3e571c36adcb1da28d9329f439df98125f07e7a21dd8e923c7fe64736f6c634300080a0033

Deployed Bytecode Sourcemap

24741:11180:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30398:318;;;;;;;;;;-1:-1:-1;30398:318:0;;;;;:::i;:::-;;:::i;:::-;;9597:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11764:169;;;;;;;;;;-1:-1:-1;11764:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;11764:169:0;1306:187:1;25711:63:0;;;;;;;;;;-1:-1:-1;25711:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24820:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;24820:51:0;1689:229:1;10717:108:0;;;;;;;;;;-1:-1:-1;10805:12:0;;10717:108;;;2069:25:1;;;2057:2;2042:18;10717:108:0;1923:177:1;30914:189:0;;;;;;;;;;-1:-1:-1;30914:189:0;;;;;:::i;:::-;;:::i;29161:275::-;;;;;;;;;;-1:-1:-1;29161:275:0;;;;;:::i;:::-;;:::i;12415:492::-;;;;;;;;;;-1:-1:-1;12415:492:0;;;;;:::i;:::-;;:::i;29063:88::-;;;;;;;;;;-1:-1:-1;29063:88:0;;;;;:::i;:::-;;:::i;24923:53::-;;;;;;;;;;;;24969:6;24923:53;;10559:93;;;;;;;;;;-1:-1:-1;10559:93:0;;10642:2;2973:36:1;;2961:2;2946:18;10559:93:0;2831:184:1;24878:38:0;;;;;;;;;;;;;;;25234:33;;;;;;;;;;-1:-1:-1;25234:33:0;;;;;;;;31113:126;;;;;;;;;;-1:-1:-1;31113:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31203:28:0;31179:4;31203:28;;;:19;:28;;;;;;;;;31113:126;30079:311;;;;;;;;;;-1:-1:-1;30079:311:0;;;;;:::i;:::-;;:::i;25464:28::-;;;;;;;;;;;;;;;;25314:31;;;;;;;;;;-1:-1:-1;25314:31:0;;;;;;;;;;;10888:127;;;;;;;;;;-1:-1:-1;10888:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10989:18:0;10962:7;10989:18;;;;;;;;;;;;10888:127;2832:103;;;;;;;;;;;;;:::i;28193:121::-;;;;;;;;;;;;;:::i;29708:167::-;;;;;;;;;;-1:-1:-1;29708:167:0;;;;;:::i;:::-;;:::i;24983:64::-;;;;;;;;;;-1:-1:-1;24983:64:0;;;;-1:-1:-1;;;;;24983:64:0;;;28029:112;;;;;;;;;;;;;:::i;2181:87::-;;;;;;;;;;-1:-1:-1;2254:6:0;;-1:-1:-1;;;;;2254:6:0;2181:87;;25086:24;;;;;;;;;;-1:-1:-1;25086:24:0;;;;-1:-1:-1;;;;;25086:24:0;;;29971:100;;;;;;;;;;-1:-1:-1;29971:100:0;;;;;:::i;:::-;;:::i;9816:104::-;;;;;;;;;;;;;:::i;25394:24::-;;;;;;;;;;;;;;;;25499:25;;;;;;;;;;;;;;;;11228:175;;;;;;;;;;-1:-1:-1;11228:175:0;;;;;:::i;:::-;;:::i;25274:33::-;;;;;;;;;;-1:-1:-1;25274:33:0;;;;;;;;;;;30724:182;;;;;;;;;;-1:-1:-1;30724:182:0;;;;;:::i;:::-;;:::i;29444:256::-;;;;;;;;;;-1:-1:-1;29444:256:0;;;;;:::i;:::-;;:::i;25119:35::-;;;;;;;;;;;;;;;;28384:497;;;;;;;;;;-1:-1:-1;28384:497:0;;;;;:::i;:::-;;:::i;28891:164::-;;;;;;;;;;-1:-1:-1;28891:164:0;;;;;:::i;:::-;;:::i;25360:27::-;;;;;;;;;;;;;;;;11466:151;;;;;;;;;;-1:-1:-1;11466:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11582:18:0;;;11555:7;11582:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11466:151;25161:33;;;;;;;;;;;;;;;;25425:30;;;;;;;;;;;;;;;;3090:201;;;;;;;;;;-1:-1:-1;3090:201:0;;;;;:::i;:::-;;:::i;25531:31::-;;;;;;;;;;;;;;;;25201:24;;;;;;;;;;;;;;;;30398:318;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;;;;;;;;;30517:10:::1;:20:::0;;;30548:16:::1;:32:::0;;;30607:29:::1;30567:13:::0;30530:7;30607:29:::1;:::i;:::-;30591:13;:45:::0;;;30672:2:::1;-1:-1:-1::0;30655:19:0::1;30647:61;;;::::0;-1:-1:-1;;;30647:61:0;;5980:2:1;30647:61:0::1;::::0;::::1;5962:21:1::0;6019:2;5999:18;;;5992:30;6058:31;6038:18;;;6031:59;6107:18;;30647:61:0::1;5778:353:1::0;30647:61:0::1;30398:318:::0;;:::o;9597:100::-;9651:13;9684:5;9677:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9597:100;:::o;11764:169::-;11847:4;11864:39;934:10;11887:7;11896:6;11864:8;:39::i;:::-;-1:-1:-1;11921:4:0;11764:169;;;;:::o;30914:189::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;31050:9:::1;::::0;31019:41:::1;::::0;-1:-1:-1;;;;;31050:9:0;;::::1;::::0;31019:41;::::1;::::0;::::1;::::0;31050:9:::1;::::0;31019:41:::1;31071:9;:24:::0;;-1:-1:-1;;;;;;31071:24:0::1;-1:-1:-1::0;;;;;31071:24:0;;;::::1;::::0;;;::::1;::::0;;30914:189::o;29161:275::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;29298:4:::1;29290;29269:13;10805:12:::0;;;10717:108;29269:13:::1;:17;::::0;29285:1:::1;29269:17;:::i;:::-;29268:26;;;;:::i;:::-;29267:35;;;;:::i;:::-;29257:6;:45;;29235:142;;;::::0;-1:-1:-1;;;29235:142:0;;7118:2:1;29235:142:0::1;::::0;::::1;7100:21:1::0;7157:2;7137:18;;;7130:30;7196:34;7176:18;;;7169:62;-1:-1:-1;;;7247:18:1;;;7240:45;7302:19;;29235:142:0::1;6916:411:1::0;29235:142:0::1;29411:17;:6:::0;29421::::1;29411:17;:::i;:::-;29388:20;:40:::0;-1:-1:-1;29161:275:0:o;12415:492::-;12555:4;12572:36;12582:6;12590:9;12601:6;12572:9;:36::i;:::-;-1:-1:-1;;;;;12648:19:0;;12621:24;12648:19;;;:11;:19;;;;;;;;934:10;12648:33;;;;;;;;12700:26;;;;12692:79;;;;-1:-1:-1;;;12692:79:0;;7534:2:1;12692:79:0;;;7516:21:1;7573:2;7553:18;;;7546:30;7612:34;7592:18;;;7585:62;-1:-1:-1;;;7663:18:1;;;7656:38;7711:19;;12692:79:0;7332:404:1;12692:79:0;12807:57;12816:6;934:10;12857:6;12838:16;:25;12807:8;:57::i;:::-;-1:-1:-1;12895:4:0;;12415:492;-1:-1:-1;;;;12415:492:0:o;29063:88::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29123:12:0::1;29138:5;29123:12:::0;;;:4:::1;:12;::::0;;;;:20;;-1:-1:-1;;29123:20:0::1;::::0;;29063:88::o;30079:311::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;30197:9:::1;:19:::0;;;30227:15:::1;:31:::0;;;30284:27:::1;30245:13:::0;30209:7;30284:27:::1;:::i;:::-;30269:12;:42:::0;;;30346:2:::1;-1:-1:-1::0;30330:18:0::1;30322:60;;;::::0;-1:-1:-1;;;30322:60:0;;5980:2:1;30322:60:0::1;::::0;::::1;5962:21:1::0;6019:2;5999:18;;;5992:30;6058:31;6038:18;;;6031:59;6107:18;;30322:60:0::1;5778:353:1::0;2832:103:0;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;2897:30:::1;2924:1;2897:18;:30::i;:::-;2832:103::o:0;28193:121::-;2254:6;;28245:4;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;-1:-1:-1;28262:14:0::1;:22:::0;;-1:-1:-1;;28262:22:0::1;::::0;;;28193:121;:::o;29708:167::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29821:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29821:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29708:167::o;28029:112::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;28084:13:::1;:20:::0;;-1:-1:-1;;28115:18:0;;;;;28029:112::o;29971:100::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;30042:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30042:21:0;;::::1;::::0;;;::::1;::::0;;29971:100::o;9816:104::-;9872:13;9905:7;9898:14;;;;;:::i;11228:175::-;11314:4;11331:42;934:10;11355:9;11366:6;11331:9;:42::i;30724:182::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30809:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30809:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30864:34;;1446:41:1;;;30864:34:0::1;::::0;1419:18:1;30864:34:0::1;;;;;;;30724:182:::0;;:::o;29444:256::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;29584:4:::1;29576;29555:13;10805:12:::0;;;10717:108;29555:13:::1;:17;::::0;29571:1:::1;29555:17;:::i;:::-;29554:26;;;;:::i;:::-;29553:35;;;;:::i;:::-;29543:6;:45;;29521:131;;;::::0;-1:-1:-1;;;29521:131:0;;7943:2:1;29521:131:0::1;::::0;::::1;7925:21:1::0;7982:2;7962:18;;;7955:30;8021:34;8001:18;;;7994:62;-1:-1:-1;;;8072:18:1;;;8065:34;8116:19;;29521:131:0::1;7741:400:1::0;29521:131:0::1;29675:17;:6:::0;29685::::1;29675:17;:::i;:::-;29663:9;:29:::0;-1:-1:-1;29444:256:0:o;28384:497::-;2254:6;;28492:4;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;28571:6:::1;28550:13;10805:12:::0;;;10717:108;28550:13:::1;:17;::::0;28566:1:::1;28550:17;:::i;:::-;28549:28;;;;:::i;:::-;28536:9;:41;;28514:144;;;::::0;-1:-1:-1;;;28514:144:0;;8348:2:1;28514:144:0::1;::::0;::::1;8330:21:1::0;8387:2;8367:18;;;8360:30;8426:34;8406:18;;;8399:62;-1:-1:-1;;;8477:18:1;;;8470:51;8538:19;;28514:144:0::1;8146:417:1::0;28514:144:0::1;28726:4;28705:13;10805:12:::0;;;10717:108;28705:13:::1;:17;::::0;28721:1:::1;28705:17;:::i;:::-;28704:26;;;;:::i;:::-;28691:9;:39;;28669:141;;;::::0;-1:-1:-1;;;28669:141:0;;8770:2:1;28669:141:0::1;::::0;::::1;8752:21:1::0;8809:2;8789:18;;;8782:30;8848:34;8828:18;;;8821:62;-1:-1:-1;;;8899:18:1;;;8892:50;8959:19;;28669:141:0::1;8568:416:1::0;28669:141:0::1;-1:-1:-1::0;28821:18:0::1;:30:::0;;;28869:4:::1;2472:1;28384:497:::0;;;:::o;28891:164::-;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;28965:6:::1;28960:88;28981:5;:12;28977:1;:16;28960:88;;;29032:4;29015;:14;29020:5;29026:1;29020:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;29015:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;29015:14:0;:21;;-1:-1:-1;;29015:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28995:3;::::1;::::0;::::1;:::i;:::-;;;;28960:88;;3090:201:::0;2254:6;;-1:-1:-1;;;;;2254:6:0;934:10;2401:23;2393:68;;;;-1:-1:-1;;;2393:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3179:22:0;::::1;3171:73;;;::::0;-1:-1:-1;;;3171:73:0;;9463:2:1;3171:73:0::1;::::0;::::1;9445:21:1::0;9502:2;9482:18;;;9475:30;9541:34;9521:18;;;9514:62;-1:-1:-1;;;9592:18:1;;;9585:36;9638:19;;3171:73:0::1;9261:402:1::0;3171:73:0::1;3255:28;3274:8;3255:18;:28::i;:::-;3090:201:::0;:::o;15256:380::-;-1:-1:-1;;;;;15392:19:0;;15384:68;;;;-1:-1:-1;;;15384:68:0;;9870:2:1;15384:68:0;;;9852:21:1;9909:2;9889:18;;;9882:30;9948:34;9928:18;;;9921:62;-1:-1:-1;;;9999:18:1;;;9992:34;10043:19;;15384:68:0;9668:400:1;15384:68:0;-1:-1:-1;;;;;15471:21:0;;15463:68;;;;-1:-1:-1;;;15463:68:0;;10275:2:1;15463:68:0;;;10257:21:1;10314:2;10294:18;;;10287:30;10353:34;10333:18;;;10326:62;-1:-1:-1;;;10404:18:1;;;10397:32;10446:19;;15463:68:0;10073:398:1;15463:68:0;-1:-1:-1;;;;;15544:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15596:32;;2069:25:1;;;15596:32:0;;2042:18:1;15596:32:0;;;;;;;15256:380;;;:::o;31247:3741::-;-1:-1:-1;;;;;31379:18:0;;31371:68;;;;-1:-1:-1;;;31371:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31458:16:0;;31450:64;;;;-1:-1:-1;;;31450:64:0;;;;;;;:::i;:::-;31531:11;31527:93;;31559:28;31575:4;31581:2;31585:1;31559:15;:28::i;:::-;31247:3741;;;:::o;31527:93::-;31642:14;;;;31638:1486;;;2254:6;;-1:-1:-1;;;;;31695:15:0;;;2254:6;;31695:15;;;;:49;;-1:-1:-1;2254:6:0;;-1:-1:-1;;;;;31731:13:0;;;2254:6;;31731:13;;31695:49;:86;;;;-1:-1:-1;;;;;;31765:16:0;;;;31695:86;:128;;;;-1:-1:-1;;;;;;31802:21:0;;31816:6;31802:21;;31695:128;:158;;;;-1:-1:-1;31845:8:0;;-1:-1:-1;;;31845:8:0;;;;31844:9;31695:158;31673:1440;;;31893:13;;;;;;;31888:279;;-1:-1:-1;;;;;31940:10:0;;;;;;:4;:10;;;;;;;;31939:11;:24;;;;-1:-1:-1;;;;;;31955:8:0;;;;;;:4;:8;;;;;;;;31954:9;31939:24;31931:33;;;;;;-1:-1:-1;;;;;32021:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32050:23:0;;;;;;:19;:23;;;;;;;;32021:52;31987:160;;;;-1:-1:-1;;;31987:160:0;;11488:2:1;31987:160:0;;;11470:21:1;11527:2;11507:18;;;11500:30;-1:-1:-1;;;11546:18:1;;;11539:52;11608:18;;31987:160:0;11286:346:1;31987:160:0;32381:13;-1:-1:-1;;;;;32373:21:0;:4;-1:-1:-1;;;;;32373:21:0;;:82;;;;-1:-1:-1;;;;;;32420:35:0;;;;;;:31;:35;;;;;;;;32419:36;32373:82;32347:751;;;32542:20;;32532:6;:30;;32498:169;;;;-1:-1:-1;;;32498:169:0;;11839:2:1;32498:169:0;;;11821:21:1;11878:2;11858:18;;;11851:30;11917:34;11897:18;;;11890:62;-1:-1:-1;;;11968:18:1;;;11961:51;12029:19;;32498:169:0;11637:417:1;32498:169:0;32750:9;;-1:-1:-1;;;;;10989:18:0;;10962:7;10989:18;;;;;;;;;;;32724:22;;:6;:22;:::i;:::-;:35;;32690:140;;;;-1:-1:-1;;;32690:140:0;;12261:2:1;32690:140:0;;;12243:21:1;12300:2;12280:18;;;12273:30;-1:-1:-1;;;12319:18:1;;;12312:49;12378:18;;32690:140:0;12059:343:1;32690:140:0;32347:751;;;-1:-1:-1;;;;;32878:35:0;;;;;;:31;:35;;;;;;;;32873:225;;32998:9;;-1:-1:-1;;;;;10989:18:0;;10962:7;10989:18;;;;;;;;;;;32972:22;;:6;:22;:::i;:::-;:35;;32938:140;;;;-1:-1:-1;;;32938:140:0;;12261:2:1;32938:140:0;;;12243:21:1;12300:2;12280:18;;;12273:30;-1:-1:-1;;;12319:18:1;;;12312:49;12378:18;;32938:140:0;12059:343:1;32938:140:0;33185:4;33136:28;10989:18;;;;;;;;;;;33243;;33219:42;;;;;;;33292:35;;-1:-1:-1;33316:11:0;;;;;;;33292:35;:61;;;;-1:-1:-1;33345:8:0;;-1:-1:-1;;;33345:8:0;;;;33344:9;33292:61;:97;;;;;33376:13;-1:-1:-1;;;;;33370:19:0;:2;-1:-1:-1;;;;;33370:19:0;;33292:97;:140;;;;-1:-1:-1;;;;;;33407:25:0;;;;;;:19;:25;;;;;;;;33406:26;33292:140;:181;;;;-1:-1:-1;;;;;;33450:23:0;;;;;;:19;:23;;;;;;;;33449:24;33292:181;33274:313;;;33500:8;:15;;-1:-1:-1;;;;33500:15:0;-1:-1:-1;;;33500:15:0;;;33532:10;:8;:10::i;:::-;33559:8;:16;;-1:-1:-1;;;;33559:16:0;;;33274:313;33615:8;;-1:-1:-1;;;;;33725:25:0;;33599:12;33725:25;;;:19;:25;;;;;;33615:8;-1:-1:-1;;;33615:8:0;;;;;33614:9;;33725:25;;:52;;-1:-1:-1;;;;;;33754:23:0;;;;;;:19;:23;;;;;;;;33725:52;33721:100;;;-1:-1:-1;33804:5:0;33721:100;33833:12;33860:26;33901:20;34014:7;34010:925;;;34072:13;-1:-1:-1;;;;;34066:19:0;:2;-1:-1:-1;;;;;34066:19:0;;:40;;;;;34105:1;34089:13;;:17;34066:40;34062:583;;;34134:34;34164:3;34134:25;34145:13;;34134:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;34127:41;;34236:13;;34216:16;;34209:4;:23;;;;:::i;:::-;34208:41;;;;:::i;:::-;34187:62;;34305:13;;34291:10;;34284:4;:17;;;;:::i;:::-;34283:35;;;;:::i;:::-;34268:50;;34062:583;;;34388:13;-1:-1:-1;;;;;34380:21:0;:4;-1:-1:-1;;;;;34380:21:0;;:41;;;;;34420:1;34405:12;;:16;34380:41;34376:269;;;34449:33;34478:3;34449:24;34460:12;;34449:6;:10;;:24;;;;:::i;:33::-;34442:40;;34549:12;;34530:15;;34523:4;:22;;;;:::i;:::-;34522:39;;;;:::i;:::-;34501:60;;34617:12;;34604:9;;34597:4;:16;;;;:::i;:::-;34596:33;;;;:::i;:::-;34581:48;;34376:269;34665:7;;34661:90;;34693:42;34709:4;34723;34730;34693:15;:42::i;:::-;34769:22;;34765:128;;34812:65;34836:4;34843:13;34858:18;34812:15;:65::i;:::-;34909:14;34919:4;34909:14;;:::i;:::-;;;34010:925;34947:33;34963:4;34969:2;34973:6;34947:15;:33::i;:::-;31360:3628;;;;;;31247:3741;;;:::o;3451:191::-;3544:6;;;-1:-1:-1;;;;;3561:17:0;;;-1:-1:-1;;;;;;3561:17:0;;;;;;;3594:40;;3544:6;;;3561:17;3544:6;;3594:40;;3525:16;;3594:40;3514:128;3451:191;:::o;13397:733::-;-1:-1:-1;;;;;13537:20:0;;13529:70;;;;-1:-1:-1;;;13529:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13618:23:0;;13610:71;;;;-1:-1:-1;;;13610:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13778:17:0;;13754:21;13778:17;;;;;;;;;;;13814:23;;;;13806:74;;;;-1:-1:-1;;;13806:74:0;;12739:2:1;13806:74:0;;;12721:21:1;12778:2;12758:18;;;12751:30;12817:34;12797:18;;;12790:62;-1:-1:-1;;;12868:18:1;;;12861:36;12914:19;;13806:74:0;12537:402:1;13806:74:0;-1:-1:-1;;;;;13916:17:0;;;:9;:17;;;;;;;;;;;13936:22;;;13916:42;;13980:20;;;;;;;;:30;;13952:6;;13916:9;13980:30;;13952:6;;13980:30;:::i;:::-;;;;;;;;14045:9;-1:-1:-1;;;;;14028:35:0;14037:6;-1:-1:-1;;;;;14028:35:0;;14056:6;14028:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;14028:35:0;;;;;;;;13518:612;13397:733;;;:::o;35576:340::-;35659:4;35615:23;10989:18;;;;;;;;;;;;35676:59;;35717:7;35576:340::o;35676:59::-;35769:18;;:23;;35790:2;35769:23;:::i;:::-;35751:15;:41;35747:115;;;35827:18;;:23;;35848:2;35827:23;:::i;:::-;35809:41;;35747:115;35874:34;35892:15;35874:17;:34::i;20709:98::-;20767:7;20794:5;20798:1;20794;:5;:::i;:::-;20787:12;20709:98;-1:-1:-1;;;20709:98:0:o;21108:::-;21166:7;21193:5;21197:1;21193;:5;:::i;34996:572::-;35147:16;;;35161:1;35147:16;;;;;;;;35123:21;;35147:16;;;;;;;;;;-1:-1:-1;35147:16:0;35123:40;;35192:4;35174;35179:1;35174:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35174:23:0;;;:7;;;;;;;;;:23;35218:4;;35208:7;;35218:4;;;35208;;35218;;35208:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;35208:14:0;;;-1:-1:-1;;;;;35208:14:0;;;;;35235:62;35252:4;35267:15;35285:11;35235:8;:62::i;:::-;35510:9;;35336:224;;-1:-1:-1;;;35336:224:0;;-1:-1:-1;;;;;35336:15:0;:69;;;;;:224;;35420:11;;35446:1;;35491:4;;35510:9;;;;;35534:15;;35336:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35052:516;34996:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:127::-;3690:10;3685:3;3681:20;3678:1;3671:31;3721:4;3718:1;3711:15;3745:4;3742:1;3735:15;3761:1121;3845:6;3876:2;3919;3907:9;3898:7;3894:23;3890:32;3887:52;;;3935:1;3932;3925:12;3887:52;3975:9;3962:23;4004:18;4045:2;4037:6;4034:14;4031:34;;;4061:1;4058;4051:12;4031:34;4099:6;4088:9;4084:22;4074:32;;4144:7;4137:4;4133:2;4129:13;4125:27;4115:55;;4166:1;4163;4156:12;4115:55;4202:2;4189:16;4224:2;4220;4217:10;4214:36;;;4230:18;;:::i;:::-;4276:2;4273:1;4269:10;4308:2;4302:9;4371:2;4367:7;4362:2;4358;4354:11;4350:25;4342:6;4338:38;4426:6;4414:10;4411:22;4406:2;4394:10;4391:18;4388:46;4385:72;;;4437:18;;:::i;:::-;4473:2;4466:22;4523:18;;;4557:15;;;;-1:-1:-1;4599:11:1;;;4595:20;;;4627:19;;;4624:39;;;4659:1;4656;4649:12;4624:39;4683:11;;;;4703:148;4719:6;4714:3;4711:15;4703:148;;;4785:23;4804:3;4785:23;:::i;:::-;4773:36;;4736:12;;;;4829;;;;4703:148;;;4870:6;3761:1121;-1:-1:-1;;;;;;;;3761:1121:1:o;4887:260::-;4955:6;4963;5016:2;5004:9;4995:7;4991:23;4987:32;4984:52;;;5032:1;5029;5022:12;4984:52;5055:29;5074:9;5055:29;:::i;:::-;5045:39;;5103:38;5137:2;5126:9;5122:18;5103:38;:::i;5152:356::-;5354:2;5336:21;;;5373:18;;;5366:30;5432:34;5427:2;5412:18;;5405:62;5499:2;5484:18;;5152:356::o;5513:127::-;5574:10;5569:3;5565:20;5562:1;5555:31;5605:4;5602:1;5595:15;5629:4;5626:1;5619:15;5645:128;5685:3;5716:1;5712:6;5709:1;5706:13;5703:39;;;5722:18;;:::i;:::-;-1:-1:-1;5758:9:1;;5645:128::o;6136:380::-;6215:1;6211:12;;;;6258;;;6279:61;;6333:4;6325:6;6321:17;6311:27;;6279:61;6386:2;6378:6;6375:14;6355:18;6352:38;6349:161;;;6432:10;6427:3;6423:20;6420:1;6413:31;6467:4;6464:1;6457:15;6495:4;6492:1;6485:15;6349:161;;6136:380;;;:::o;6521:168::-;6561:7;6627:1;6623;6619:6;6615:14;6612:1;6609:21;6604:1;6597:9;6590:17;6586:45;6583:71;;;6634:18;;:::i;:::-;-1:-1:-1;6674:9:1;;6521:168::o;6694:217::-;6734:1;6760;6750:132;;6804:10;6799:3;6795:20;6792:1;6785:31;6839:4;6836:1;6829:15;6867:4;6864:1;6857:15;6750:132;-1:-1:-1;6896:9:1;;6694:217::o;8989:127::-;9050:10;9045:3;9041:20;9038:1;9031:31;9081:4;9078:1;9071:15;9105:4;9102:1;9095:15;9121:135;9160:3;-1:-1:-1;;9181:17:1;;9178:43;;;9201:18;;:::i;:::-;-1:-1:-1;9248:1:1;9237:13;;9121:135::o;10476:401::-;10678:2;10660:21;;;10717:2;10697:18;;;10690:30;10756:34;10751:2;10736:18;;10729:62;-1:-1:-1;;;10822:2:1;10807:18;;10800:35;10867:3;10852:19;;10476:401::o;10882:399::-;11084:2;11066:21;;;11123:2;11103:18;;;11096:30;11162:34;11157:2;11142:18;;11135:62;-1:-1:-1;;;11228:2:1;11213:18;;11206:33;11271:3;11256:19;;10882:399::o;12407:125::-;12447:4;12475:1;12472;12469:8;12466:34;;;12480:18;;:::i;:::-;-1:-1:-1;12517:9:1;;12407:125::o;12944:980::-;13206:4;13254:3;13243:9;13239:19;13285:6;13274:9;13267:25;13311:2;13349:6;13344:2;13333:9;13329:18;13322:34;13392:3;13387:2;13376:9;13372:18;13365:31;13416:6;13451;13445:13;13482:6;13474;13467:22;13520:3;13509:9;13505:19;13498:26;;13559:2;13551:6;13547:15;13533:29;;13580:1;13590:195;13604:6;13601:1;13598:13;13590:195;;;13669:13;;-1:-1:-1;;;;;13665:39:1;13653:52;;13760:15;;;;13725:12;;;;13701:1;13619:9;13590:195;;;-1:-1:-1;;;;;;;13841:32:1;;;;13836:2;13821:18;;13814:60;-1:-1:-1;;;13905:3:1;13890:19;13883:35;13802:3;12944:980;-1:-1:-1;;;12944:980:1:o

Swarm Source

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