ETH Price: $3,408.82 (-1.04%)
Gas: 5 Gwei

Token

Tsuka Swap (Chukai)
 

Overview

Max Total Supply

100,000,000 Chukai

Holders

138

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
acutepuppy.eth
Balance
0.000000000000000039 Chukai

Value
$0.00
0xc52cdb4821427b719b176765447578293e4cf9cb
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:
TsukaSwap

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-28
*/

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract TsukaSwap 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 sellTotalFees;
    uint256 public sellDevFee;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Tsuka Swap", "Chukai") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyDevFee = 10;
        uint256 _sellDevFee = 10;

        uint256 totalSupply = 100_000_000 * 1e18;

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

        buyDevFee = _buyDevFee;
        buyTotalFees = buyDevFee;

        sellDevFee = _sellDevFee;
        sellTotalFees = sellDevFee;

        devWallet = address(0x2e33E3A879AE2868d70C5a9220b849ba7CD58116); // 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 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
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyTotalFees = buyDevFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellTotalFees = sellDevFee;
        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(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //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 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);
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

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

            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":"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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}],"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"}],"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"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280600a81526020016905473756b6120537761760b41b815250604051806040016040528060068152602001654368756b616960d01b81525081600390816200009a919062000627565b506004620000a9828262000627565b505050620000c6620000c06200031f60201b60201c565b62000323565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e881600162000375565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000133573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001599190620006f3565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d19190620006f3565b6001600160a01b031660a0819052620001ec90600162000375565b600a806a52b7d2dcc80cd2e400000060646200020a8260026200073b565b6200021691906200075d565b6008556064620002288260026200073b565b6200023491906200075d565b600a908155612710906200024a9083906200073b565b6200025691906200075d565b600955600d839055600c839055600f829055600e829055600780546001600160a01b031916732e33e3a879ae2868d70c5a9220b849ba7cd58116179055620002b2620002aa6005546001600160a01b031690565b6001620003ef565b620002bf306001620003ef565b620002ce61dead6001620003ef565b620002ed620002e56005546001600160a01b031690565b600162000375565b620002fa30600162000375565b6200030961dead600162000375565b62000315338262000499565b505050506200079c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003c45760405162461bcd60e51b81526020600482018190526024820152600080516020620025f083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200043a5760405162461bcd60e51b81526020600482018190526024820152600080516020620025f08339815191526044820152606401620003bb565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004f15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003bb565b806002600082825462000505919062000780565b90915550506001600160a01b038216600090815260208190526040812080548392906200053490849062000780565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005ae57607f821691505b602082108103620005cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057e57600081815260208120601f850160051c81016020861015620005fe5750805b601f850160051c820191505b818110156200061f578281556001016200060a565b505050505050565b81516001600160401b0381111562000643576200064362000583565b6200065b8162000654845462000599565b84620005d5565b602080601f8311600181146200069357600084156200067a5750858301515b600019600386901b1c1916600185901b1785556200061f565b600085815260208120601f198616915b82811015620006c457888601518255948401946001909101908401620006a3565b5085821015620006e35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200070657600080fd5b81516001600160a01b03811681146200071e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000758576200075862000725565b500290565b6000826200077b57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000796576200079662000725565b92915050565b60805160a051611e04620007ec600039600081816103e70152818161129b015281816114ac015281816115ba01526116460152600081816102e80152818161199501526119d40152611e046000f3fe60806040526004361061023f5760003560e01c806389a302711161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e146106d1578063e2f4560514610717578063eba4c3331461072d578063f2fde38b1461074d578063f8b45b051461076d57600080fd5b8063c024666814610645578063c18bc19514610665578063c8c8ebe414610685578063d257b34f1461069b578063d85ba063146106bb57600080fd5b806395d89b41116100f257806395d89b41146105c55780639c3b4fdc146105da578063a0d82dc5146105f0578063a9059cbb14610606578063bbc0c7421461062657600080fd5b806389a30271146105325780638a8c523c146105525780638da5cb5b146105675780638ea5220f14610585578063924de9b7146105a557600080fd5b806349bd5a5e116101bc57806370a082311161018057806370a0823114610492578063715018a6146104c857806371fc4688146104dd578063751039fc146104fd5780637571336a1461051257600080fd5b806349bd5a5e146103d55780634a62bb65146104095780634fbee193146104235780636a486a8e1461045c5780636ddd17131461047257600080fd5b80631816467f116102035780631816467f14610341578063203e727e1461036357806323b872dd1461038357806327c8f835146103a3578063313ce567146103b957600080fd5b806306fdde031461024b578063095ea7b31461027657806310d5de53146102a65780631694505e146102d657806318160ddd1461032257600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610783565b60405161026d9190611a4c565b60405180910390f35b34801561028257600080fd5b50610296610291366004611ab1565b610815565b604051901515815260200161026d565b3480156102b257600080fd5b506102966102c1366004611adb565b60116020526000908152604090205460ff1681565b3480156102e257600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b34801561032e57600080fd5b506002545b60405190815260200161026d565b34801561034d57600080fd5b5061036161035c366004611adb565b61082c565b005b34801561036f57600080fd5b5061036161037e366004611af6565b6108bc565b34801561038f57600080fd5b5061029661039e366004611b0f565b610999565b3480156103af57600080fd5b5061030a61dead81565b3480156103c557600080fd5b506040516012815260200161026d565b3480156103e157600080fd5b5061030a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561041557600080fd5b50600b546102969060ff1681565b34801561042f57600080fd5b5061029661043e366004611adb565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561046857600080fd5b50610333600e5481565b34801561047e57600080fd5b50600b546102969062010000900460ff1681565b34801561049e57600080fd5b506103336104ad366004611adb565b6001600160a01b031660009081526020819052604090205490565b3480156104d457600080fd5b50610361610a43565b3480156104e957600080fd5b506103616104f8366004611af6565b610a79565b34801561050957600080fd5b50610296610b01565b34801561051e57600080fd5b5061036161052d366004611b5b565b610b3e565b34801561053e57600080fd5b5060065461030a906001600160a01b031681565b34801561055e57600080fd5b50610361610b93565b34801561057357600080fd5b506005546001600160a01b031661030a565b34801561059157600080fd5b5060075461030a906001600160a01b031681565b3480156105b157600080fd5b506103616105c0366004611b8e565b610bd0565b3480156105d157600080fd5b50610260610c16565b3480156105e657600080fd5b50610333600d5481565b3480156105fc57600080fd5b50610333600f5481565b34801561061257600080fd5b50610296610621366004611ab1565b610c25565b34801561063257600080fd5b50600b5461029690610100900460ff1681565b34801561065157600080fd5b50610361610660366004611b5b565b610c32565b34801561067157600080fd5b50610361610680366004611af6565b610cbb565b34801561069157600080fd5b5061033360085481565b3480156106a757600080fd5b506102966106b6366004611af6565b610d8c565b3480156106c757600080fd5b50610333600c5481565b3480156106dd57600080fd5b506103336106ec366004611ba9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072357600080fd5b5061033360095481565b34801561073957600080fd5b50610361610748366004611af6565b610ee3565b34801561075957600080fd5b50610361610768366004611adb565b610f68565b34801561077957600080fd5b50610333600a5481565b60606003805461079290611bd3565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90611bd3565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b6000610822338484611000565b5060015b92915050565b6005546001600160a01b0316331461085f5760405162461bcd60e51b815260040161085690611c0d565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108e65760405162461bcd60e51b815260040161085690611c0d565b670de0b6b3a76400006103e86108fb60025490565b610906906001611c58565b6109109190611c77565b61091a9190611c77565b8110156109815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610856565b61099381670de0b6b3a7640000611c58565b60085550565b60006109a6848484611124565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a2b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610856565b610a388533858403611000565b506001949350505050565b6005546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161085690611c0d565b610a7760006116f9565b565b6005546001600160a01b03163314610aa35760405162461bcd60e51b815260040161085690611c0d565b600d819055600c819055600a811115610afe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610856565b50565b6005546000906001600160a01b03163314610b2e5760405162461bcd60e51b815260040161085690611c0d565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b685760405162461bcd60e51b815260040161085690611c0d565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161085690611c0d565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bfa5760405162461bcd60e51b815260040161085690611c0d565b600b8054911515620100000262ff000019909216919091179055565b60606004805461079290611bd3565b6000610822338484611124565b6005546001600160a01b03163314610c5c5760405162461bcd60e51b815260040161085690611c0d565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610ce55760405162461bcd60e51b815260040161085690611c0d565b670de0b6b3a76400006103e8610cfa60025490565b610d05906005611c58565b610d0f9190611c77565b610d199190611c77565b811015610d745760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610856565b610d8681670de0b6b3a7640000611c58565b600a5550565b6005546000906001600160a01b03163314610db95760405162461bcd60e51b815260040161085690611c0d565b620186a0610dc660025490565b610dd1906001611c58565b610ddb9190611c77565b821015610e485760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610856565b6103e8610e5460025490565b610e5f906005611c58565b610e699190611c77565b821115610ed55760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610856565b50600981905560015b919050565b6005546001600160a01b03163314610f0d5760405162461bcd60e51b815260040161085690611c0d565b600f819055600e819055600a811115610afe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610856565b6005546001600160a01b03163314610f925760405162461bcd60e51b815260040161085690611c0d565b6001600160a01b038116610ff75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610856565b610afe816116f9565b6001600160a01b0383166110625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610856565b6001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610856565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661114a5760405162461bcd60e51b815260040161085690611c99565b6001600160a01b0382166111705760405162461bcd60e51b815260040161085690611cde565b80600003611189576111848383600061174b565b505050565b600b5460ff1615611461576005546001600160a01b038481169116148015906111c057506005546001600160a01b03838116911614155b80156111d457506001600160a01b03821615155b80156111eb57506001600160a01b03821661dead14155b80156112015750600654600160a01b900460ff16155b1561146157600b54610100900460ff16611299576001600160a01b03831660009081526010602052604090205460ff168061125457506001600160a01b03821660009081526010602052604090205460ff165b6112995760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610856565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156112f357506001600160a01b03821660009081526011602052604090205460ff16155b156113d7576008548111156113685760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610856565b600a546001600160a01b03831660009081526020819052604090205461138e9083611d21565b11156113d25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b611461565b6001600160a01b03821660009081526011602052604090205460ff1661146157600a546001600160a01b03831660009081526020819052604090205461141d9083611d21565b11156114615760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b306000908152602081905260409020546009548110801590819061148d5750600b5462010000900460ff165b80156114a35750600654600160a01b900460ff16155b80156114e057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561150557506001600160a01b03851660009081526010602052604090205460ff16155b801561152a57506001600160a01b03841660009081526010602052604090205460ff16155b15611558576006805460ff60a01b1916600160a01b17905561154a6118a0565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526010602052604090205460ff600160a01b9092048216159116806115a657506001600160a01b03851660009081526010602052604090205460ff165b156115af575060005b60008082156116e4577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156115fb57506000600e54115b1561164457611620606461161a600e54896118ea90919063ffffffff16565b906118fd565b9150600e54600f54836116339190611c58565b61163d9190611c77565b90506116c6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561168757506000600c54115b156116c6576116a6606461161a600c54896118ea90919063ffffffff16565b9150600c54600d54836116b99190611c58565b6116c39190611c77565b90505b81156116d7576116d788308461174b565b6116e18287611d34565b95505b6116ef88888861174b565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117715760405162461bcd60e51b815260040161085690611c99565b6001600160a01b0382166117975760405162461bcd60e51b815260040161085690611cde565b6001600160a01b0383166000908152602081905260409020548181101561180f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610856565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611846908490611d21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189291815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036118bb5750565b6009546118c9906014611c58565b8111156118e1576009546118de906014611c58565b90505b610afe81611909565b60006118f68284611c58565b9392505050565b60006118f68284611c77565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061193e5761193e611d47565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061196f5761196f611d47565b60200260200101906001600160a01b031690816001600160a01b0316815250506119ba307f000000000000000000000000000000000000000000000000000000000000000084611000565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611a16928792600092889291909116904290600401611d5d565b600060405180830381600087803b158015611a3057600080fd5b505af1158015611a44573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611a7957858101830151858201604001528201611a5d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ede57600080fd5b60008060408385031215611ac457600080fd5b611acd83611a9a565b946020939093013593505050565b600060208284031215611aed57600080fd5b6118f682611a9a565b600060208284031215611b0857600080fd5b5035919050565b600080600060608486031215611b2457600080fd5b611b2d84611a9a565b9250611b3b60208501611a9a565b9150604084013590509250925092565b80358015158114610ede57600080fd5b60008060408385031215611b6e57600080fd5b611b7783611a9a565b9150611b8560208401611b4b565b90509250929050565b600060208284031215611ba057600080fd5b6118f682611b4b565b60008060408385031215611bbc57600080fd5b611bc583611a9a565b9150611b8560208401611a9a565b600181811c90821680611be757607f821691505b602082108103611c0757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611c7257611c72611c42565b500290565b600082611c9457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561082657610826611c42565b8181038181111561082657610826611c42565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dad5784516001600160a01b031683529383019391830191600101611d88565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202741babfa70978ec0697e2e82026b8c90b3c18d3608e7f301f2dc5e8e5dc5e7264736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806389a302711161012e578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e146106d1578063e2f4560514610717578063eba4c3331461072d578063f2fde38b1461074d578063f8b45b051461076d57600080fd5b8063c024666814610645578063c18bc19514610665578063c8c8ebe414610685578063d257b34f1461069b578063d85ba063146106bb57600080fd5b806395d89b41116100f257806395d89b41146105c55780639c3b4fdc146105da578063a0d82dc5146105f0578063a9059cbb14610606578063bbc0c7421461062657600080fd5b806389a30271146105325780638a8c523c146105525780638da5cb5b146105675780638ea5220f14610585578063924de9b7146105a557600080fd5b806349bd5a5e116101bc57806370a082311161018057806370a0823114610492578063715018a6146104c857806371fc4688146104dd578063751039fc146104fd5780637571336a1461051257600080fd5b806349bd5a5e146103d55780634a62bb65146104095780634fbee193146104235780636a486a8e1461045c5780636ddd17131461047257600080fd5b80631816467f116102035780631816467f14610341578063203e727e1461036357806323b872dd1461038357806327c8f835146103a3578063313ce567146103b957600080fd5b806306fdde031461024b578063095ea7b31461027657806310d5de53146102a65780631694505e146102d657806318160ddd1461032257600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610783565b60405161026d9190611a4c565b60405180910390f35b34801561028257600080fd5b50610296610291366004611ab1565b610815565b604051901515815260200161026d565b3480156102b257600080fd5b506102966102c1366004611adb565b60116020526000908152604090205460ff1681565b3480156102e257600080fd5b5061030a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026d565b34801561032e57600080fd5b506002545b60405190815260200161026d565b34801561034d57600080fd5b5061036161035c366004611adb565b61082c565b005b34801561036f57600080fd5b5061036161037e366004611af6565b6108bc565b34801561038f57600080fd5b5061029661039e366004611b0f565b610999565b3480156103af57600080fd5b5061030a61dead81565b3480156103c557600080fd5b506040516012815260200161026d565b3480156103e157600080fd5b5061030a7f000000000000000000000000bed0a9effcc7f577f79beb47bc5bb1d5a3b5ad3c81565b34801561041557600080fd5b50600b546102969060ff1681565b34801561042f57600080fd5b5061029661043e366004611adb565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561046857600080fd5b50610333600e5481565b34801561047e57600080fd5b50600b546102969062010000900460ff1681565b34801561049e57600080fd5b506103336104ad366004611adb565b6001600160a01b031660009081526020819052604090205490565b3480156104d457600080fd5b50610361610a43565b3480156104e957600080fd5b506103616104f8366004611af6565b610a79565b34801561050957600080fd5b50610296610b01565b34801561051e57600080fd5b5061036161052d366004611b5b565b610b3e565b34801561053e57600080fd5b5060065461030a906001600160a01b031681565b34801561055e57600080fd5b50610361610b93565b34801561057357600080fd5b506005546001600160a01b031661030a565b34801561059157600080fd5b5060075461030a906001600160a01b031681565b3480156105b157600080fd5b506103616105c0366004611b8e565b610bd0565b3480156105d157600080fd5b50610260610c16565b3480156105e657600080fd5b50610333600d5481565b3480156105fc57600080fd5b50610333600f5481565b34801561061257600080fd5b50610296610621366004611ab1565b610c25565b34801561063257600080fd5b50600b5461029690610100900460ff1681565b34801561065157600080fd5b50610361610660366004611b5b565b610c32565b34801561067157600080fd5b50610361610680366004611af6565b610cbb565b34801561069157600080fd5b5061033360085481565b3480156106a757600080fd5b506102966106b6366004611af6565b610d8c565b3480156106c757600080fd5b50610333600c5481565b3480156106dd57600080fd5b506103336106ec366004611ba9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072357600080fd5b5061033360095481565b34801561073957600080fd5b50610361610748366004611af6565b610ee3565b34801561075957600080fd5b50610361610768366004611adb565b610f68565b34801561077957600080fd5b50610333600a5481565b60606003805461079290611bd3565b80601f01602080910402602001604051908101604052809291908181526020018280546107be90611bd3565b801561080b5780601f106107e05761010080835404028352916020019161080b565b820191906000526020600020905b8154815290600101906020018083116107ee57829003601f168201915b5050505050905090565b6000610822338484611000565b5060015b92915050565b6005546001600160a01b0316331461085f5760405162461bcd60e51b815260040161085690611c0d565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108e65760405162461bcd60e51b815260040161085690611c0d565b670de0b6b3a76400006103e86108fb60025490565b610906906001611c58565b6109109190611c77565b61091a9190611c77565b8110156109815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610856565b61099381670de0b6b3a7640000611c58565b60085550565b60006109a6848484611124565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a2b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610856565b610a388533858403611000565b506001949350505050565b6005546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161085690611c0d565b610a7760006116f9565b565b6005546001600160a01b03163314610aa35760405162461bcd60e51b815260040161085690611c0d565b600d819055600c819055600a811115610afe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610856565b50565b6005546000906001600160a01b03163314610b2e5760405162461bcd60e51b815260040161085690611c0d565b50600b805460ff19169055600190565b6005546001600160a01b03163314610b685760405162461bcd60e51b815260040161085690611c0d565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161085690611c0d565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610bfa5760405162461bcd60e51b815260040161085690611c0d565b600b8054911515620100000262ff000019909216919091179055565b60606004805461079290611bd3565b6000610822338484611124565b6005546001600160a01b03163314610c5c5760405162461bcd60e51b815260040161085690611c0d565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610ce55760405162461bcd60e51b815260040161085690611c0d565b670de0b6b3a76400006103e8610cfa60025490565b610d05906005611c58565b610d0f9190611c77565b610d199190611c77565b811015610d745760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610856565b610d8681670de0b6b3a7640000611c58565b600a5550565b6005546000906001600160a01b03163314610db95760405162461bcd60e51b815260040161085690611c0d565b620186a0610dc660025490565b610dd1906001611c58565b610ddb9190611c77565b821015610e485760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610856565b6103e8610e5460025490565b610e5f906005611c58565b610e699190611c77565b821115610ed55760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610856565b50600981905560015b919050565b6005546001600160a01b03163314610f0d5760405162461bcd60e51b815260040161085690611c0d565b600f819055600e819055600a811115610afe5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610856565b6005546001600160a01b03163314610f925760405162461bcd60e51b815260040161085690611c0d565b6001600160a01b038116610ff75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610856565b610afe816116f9565b6001600160a01b0383166110625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610856565b6001600160a01b0382166110c35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610856565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661114a5760405162461bcd60e51b815260040161085690611c99565b6001600160a01b0382166111705760405162461bcd60e51b815260040161085690611cde565b80600003611189576111848383600061174b565b505050565b600b5460ff1615611461576005546001600160a01b038481169116148015906111c057506005546001600160a01b03838116911614155b80156111d457506001600160a01b03821615155b80156111eb57506001600160a01b03821661dead14155b80156112015750600654600160a01b900460ff16155b1561146157600b54610100900460ff16611299576001600160a01b03831660009081526010602052604090205460ff168061125457506001600160a01b03821660009081526010602052604090205460ff165b6112995760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610856565b7f000000000000000000000000bed0a9effcc7f577f79beb47bc5bb1d5a3b5ad3c6001600160a01b0316836001600160a01b03161480156112f357506001600160a01b03821660009081526011602052604090205460ff16155b156113d7576008548111156113685760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610856565b600a546001600160a01b03831660009081526020819052604090205461138e9083611d21565b11156113d25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b611461565b6001600160a01b03821660009081526011602052604090205460ff1661146157600a546001600160a01b03831660009081526020819052604090205461141d9083611d21565b11156114615760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610856565b306000908152602081905260409020546009548110801590819061148d5750600b5462010000900460ff165b80156114a35750600654600160a01b900460ff16155b80156114e057507f000000000000000000000000bed0a9effcc7f577f79beb47bc5bb1d5a3b5ad3c6001600160a01b0316846001600160a01b0316145b801561150557506001600160a01b03851660009081526010602052604090205460ff16155b801561152a57506001600160a01b03841660009081526010602052604090205460ff16155b15611558576006805460ff60a01b1916600160a01b17905561154a6118a0565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526010602052604090205460ff600160a01b9092048216159116806115a657506001600160a01b03851660009081526010602052604090205460ff165b156115af575060005b60008082156116e4577f000000000000000000000000bed0a9effcc7f577f79beb47bc5bb1d5a3b5ad3c6001600160a01b0316876001600160a01b03161480156115fb57506000600e54115b1561164457611620606461161a600e54896118ea90919063ffffffff16565b906118fd565b9150600e54600f54836116339190611c58565b61163d9190611c77565b90506116c6565b7f000000000000000000000000bed0a9effcc7f577f79beb47bc5bb1d5a3b5ad3c6001600160a01b0316886001600160a01b031614801561168757506000600c54115b156116c6576116a6606461161a600c54896118ea90919063ffffffff16565b9150600c54600d54836116b99190611c58565b6116c39190611c77565b90505b81156116d7576116d788308461174b565b6116e18287611d34565b95505b6116ef88888861174b565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117715760405162461bcd60e51b815260040161085690611c99565b6001600160a01b0382166117975760405162461bcd60e51b815260040161085690611cde565b6001600160a01b0383166000908152602081905260409020548181101561180f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610856565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611846908490611d21565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161189291815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036118bb5750565b6009546118c9906014611c58565b8111156118e1576009546118de906014611c58565b90505b610afe81611909565b60006118f68284611c58565b9392505050565b60006118f68284611c77565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061193e5761193e611d47565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061196f5761196f611d47565b60200260200101906001600160a01b031690816001600160a01b0316815250506119ba307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611000565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611a16928792600092889291909116904290600401611d5d565b600060405180830381600087803b158015611a3057600080fd5b505af1158015611a44573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611a7957858101830151858201604001528201611a5d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ede57600080fd5b60008060408385031215611ac457600080fd5b611acd83611a9a565b946020939093013593505050565b600060208284031215611aed57600080fd5b6118f682611a9a565b600060208284031215611b0857600080fd5b5035919050565b600080600060608486031215611b2457600080fd5b611b2d84611a9a565b9250611b3b60208501611a9a565b9150604084013590509250925092565b80358015158114610ede57600080fd5b60008060408385031215611b6e57600080fd5b611b7783611a9a565b9150611b8560208401611b4b565b90509250929050565b600060208284031215611ba057600080fd5b6118f682611b4b565b60008060408385031215611bbc57600080fd5b611bc583611a9a565b9150611b8560208401611a9a565b600181811c90821680611be757607f821691505b602082108103611c0757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611c7257611c72611c42565b500290565b600082611c9457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561082657610826611c42565b8181038181111561082657610826611c42565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dad5784516001600160a01b031683529383019391830191600101611d88565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212202741babfa70978ec0697e2e82026b8c90b3c18d3608e7f301f2dc5e8e5dc5e7264736f6c63430008100033

Deployed Bytecode Sourcemap

24675:9822:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:169;;;;;;;;;;-1:-1:-1;11698:169:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11698:169:0;1004:187:1;25564:63:0;;;;;;;;;;-1:-1:-1;25564:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24754:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1577:32:1;;;1559:51;;1547:2;1532:18;24754:51:0;1387:229:1;10651:108:0;;;;;;;;;;-1:-1:-1;10739:12:0;;10651:108;;;1767:25:1;;;1755:2;1740:18;10651:108:0;1621:177:1;30028:189:0;;;;;;;;;;-1:-1:-1;30028:189:0;;;;;:::i;:::-;;:::i;:::-;;28461:275;;;;;;;;;;-1:-1:-1;28461:275:0;;;;;:::i;:::-;;:::i;12349:492::-;;;;;;;;;;-1:-1:-1;12349:492:0;;;;;:::i;:::-;;:::i;24857:53::-;;;;;;;;;;;;24903:6;24857:53;;10493:93;;;;;;;;;;-1:-1:-1;10493:93:0;;10576:2;2671:36:1;;2659:2;2644:18;10493:93:0;2529:184:1;24812:38:0;;;;;;;;;;;;;;;25168:33;;;;;;;;;;-1:-1:-1;25168:33:0;;;;;;;;30227:126;;;;;;;;;;-1:-1:-1;30227:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30317:28:0;30293:4;30317:28;;;:19;:28;;;;;;;;;30227:126;25355:28;;;;;;;;;;;;;;;;25248:31;;;;;;;;;;-1:-1:-1;25248:31:0;;;;;;;;;;;10822:127;;;;;;;;;;-1:-1:-1;10822:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10923:18:0;10896:7;10923:18;;;;;;;;;;;;10822:127;2766:103;;;;;;;;;;;;;:::i;29379:219::-;;;;;;;;;;-1:-1:-1;29379:219:0;;;;;:::i;:::-;;:::i;27765:121::-;;;;;;;;;;;;;:::i;29008:167::-;;;;;;;;;;-1:-1:-1;29008:167:0;;;;;:::i;:::-;;:::i;24917:64::-;;;;;;;;;;-1:-1:-1;24917:64:0;;;;-1:-1:-1;;;;;24917:64:0;;;27601:112;;;;;;;;;;;;;:::i;2115:87::-;;;;;;;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;2188:6:0;2115:87;;25020:24;;;;;;;;;;-1:-1:-1;25020:24:0;;;;-1:-1:-1;;;;;25020:24:0;;;29271:100;;;;;;;;;;-1:-1:-1;29271:100:0;;;;;:::i;:::-;;:::i;9750:104::-;;;;;;;;;;;;;:::i;25322:24::-;;;;;;;;;;;;;;;;25390:25;;;;;;;;;;;;;;;;11162:175;;;;;;;;;;-1:-1:-1;11162:175:0;;;;;:::i;:::-;;:::i;25208:33::-;;;;;;;;;;-1:-1:-1;25208:33:0;;;;;;;;;;;29838:182;;;;;;;;;;-1:-1:-1;29838:182:0;;;;;:::i;:::-;;:::i;28744:256::-;;;;;;;;;;-1:-1:-1;28744:256:0;;;;;:::i;:::-;;:::i;25053:35::-;;;;;;;;;;;;;;;;27956:497;;;;;;;;;;-1:-1:-1;27956:497:0;;;;;:::i;:::-;;:::i;25288:27::-;;;;;;;;;;;;;;;;11400:151;;;;;;;;;;-1:-1:-1;11400:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11516:18:0;;;11489:7;11516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11400:151;25095:33;;;;;;;;;;;;;;;;29606:224;;;;;;;;;;-1:-1:-1;29606:224:0;;;;;:::i;:::-;;:::i;3024:201::-;;;;;;;;;;-1:-1:-1;3024:201:0;;;;;:::i;:::-;;:::i;25135:24::-;;;;;;;;;;;;;;;;9531:100;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11698:169::-;11781:4;11798:39;868:10;11821:7;11830:6;11798:8;:39::i;:::-;-1:-1:-1;11855:4:0;11698:169;;;;;:::o;30028:189::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;;;;;;;;;30164:9:::1;::::0;30133:41:::1;::::0;-1:-1:-1;;;;;30164:9:0;;::::1;::::0;30133:41;::::1;::::0;::::1;::::0;30164:9:::1;::::0;30133:41:::1;30185:9;:24:::0;;-1:-1:-1;;;;;;30185:24:0::1;-1:-1:-1::0;;;;;30185:24:0;;;::::1;::::0;;;::::1;::::0;;30028:189::o;28461:275::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;28598:4:::1;28590;28569:13;10739:12:::0;;;10651:108;28569:13:::1;:17;::::0;28585:1:::1;28569:17;:::i;:::-;28568:26;;;;:::i;:::-;28567:35;;;;:::i;:::-;28557:6;:45;;28535:142;;;::::0;-1:-1:-1;;;28535:142:0;;5067:2:1;28535:142:0::1;::::0;::::1;5049:21:1::0;5106:2;5086:18;;;5079:30;5145:34;5125:18;;;5118:62;-1:-1:-1;;;5196:18:1;;;5189:45;5251:19;;28535:142:0::1;4865:411:1::0;28535:142:0::1;28711:17;:6:::0;28721::::1;28711:17;:::i;:::-;28688:20;:40:::0;-1:-1:-1;28461:275:0:o;12349:492::-;12489:4;12506:36;12516:6;12524:9;12535:6;12506:9;:36::i;:::-;-1:-1:-1;;;;;12582:19:0;;12555:24;12582:19;;;:11;:19;;;;;;;;868:10;12582:33;;;;;;;;12634:26;;;;12626:79;;;;-1:-1:-1;;;12626:79:0;;5483:2:1;12626:79:0;;;5465:21:1;5522:2;5502:18;;;5495:30;5561:34;5541:18;;;5534:62;-1:-1:-1;;;5612:18:1;;;5605:38;5660:19;;12626:79:0;5281:404:1;12626:79:0;12741:57;12750:6;868:10;12791:6;12772:16;:25;12741:8;:57::i;:::-;-1:-1:-1;12829:4:0;;12349:492;-1:-1:-1;;;;12349:492:0:o;2766:103::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;29379:219::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29465:9:::1;:19:::0;;;29495:12:::1;:24:::0;;;29554:2:::1;29538:18:::0;::::1;;29530:60;;;::::0;-1:-1:-1;;;29530:60:0;;5892:2:1;29530:60:0::1;::::0;::::1;5874:21:1::0;5931:2;5911:18;;;5904:30;5970:31;5950:18;;;5943:59;6019:18;;29530:60:0::1;5690:353:1::0;29530:60:0::1;29379:219:::0;:::o;27765:121::-;2188:6;;27817:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;27834:14:0::1;:22:::0;;-1:-1:-1;;27834:22:0::1;::::0;;;27765:121;:::o;29008:167::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29121:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29121:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29008:167::o;27601:112::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;27656:13:::1;:20:::0;;-1:-1:-1;;27687:18:0;;;;;27601:112::o;29271:100::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29342:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29342:21:0;;::::1;::::0;;;::::1;::::0;;29271:100::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;11162:175::-;11248:4;11265:42;868:10;11289:9;11300:6;11265:9;:42::i;29838:182::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29923:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29923:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29978:34;;1144:41:1;;;29978:34:0::1;::::0;1117:18:1;29978:34:0::1;;;;;;;29838:182:::0;;:::o;28744:256::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;28884:4:::1;28876;28855:13;10739:12:::0;;;10651:108;28855:13:::1;:17;::::0;28871:1:::1;28855:17;:::i;:::-;28854:26;;;;:::i;:::-;28853:35;;;;:::i;:::-;28843:6;:45;;28821:131;;;::::0;-1:-1:-1;;;28821:131:0;;6250:2:1;28821:131:0::1;::::0;::::1;6232:21:1::0;6289:2;6269:18;;;6262:30;6328:34;6308:18;;;6301:62;-1:-1:-1;;;6379:18:1;;;6372:34;6423:19;;28821:131:0::1;6048:400:1::0;28821:131:0::1;28975:17;:6:::0;28985::::1;28975:17;:::i;:::-;28963:9;:29:::0;-1:-1:-1;28744:256:0:o;27956:497::-;2188:6;;28064:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;28143:6:::1;28122:13;10739:12:::0;;;10651:108;28122:13:::1;:17;::::0;28138:1:::1;28122:17;:::i;:::-;28121:28;;;;:::i;:::-;28108:9;:41;;28086:144;;;::::0;-1:-1:-1;;;28086:144:0;;6655:2:1;28086:144:0::1;::::0;::::1;6637:21:1::0;6694:2;6674:18;;;6667:30;6733:34;6713:18;;;6706:62;-1:-1:-1;;;6784:18:1;;;6777:51;6845:19;;28086:144:0::1;6453:417:1::0;28086:144:0::1;28298:4;28277:13;10739:12:::0;;;10651:108;28277:13:::1;:17;::::0;28293:1:::1;28277:17;:::i;:::-;28276:26;;;;:::i;:::-;28263:9;:39;;28241:141;;;::::0;-1:-1:-1;;;28241:141:0;;7077:2:1;28241:141:0::1;::::0;::::1;7059:21:1::0;7116:2;7096:18;;;7089:30;7155:34;7135:18;;;7128:62;-1:-1:-1;;;7206:18:1;;;7199:50;7266:19;;28241:141:0::1;6875:416:1::0;28241:141:0::1;-1:-1:-1::0;28393:18:0::1;:30:::0;;;28441:4:::1;2406:1;27956:497:::0;;;:::o;29606:224::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29693:10:::1;:20:::0;;;29724:13:::1;:26:::0;;;29786:2:::1;29769:19:::0;::::1;;29761:61;;;::::0;-1:-1:-1;;;29761:61:0;;5892:2:1;29761:61:0::1;::::0;::::1;5874:21:1::0;5931:2;5911:18;;;5904:30;5970:31;5950:18;;;5943:59;6019:18;;29761:61:0::1;5690:353:1::0;3024:201:0;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3113:22:0;::::1;3105:73;;;::::0;-1:-1:-1;;;3105:73:0;;7498:2:1;3105:73:0::1;::::0;::::1;7480:21:1::0;7537:2;7517:18;;;7510:30;7576:34;7556:18;;;7549:62;-1:-1:-1;;;7627:18:1;;;7620:36;7673:19;;3105:73:0::1;7296:402:1::0;3105:73:0::1;3189:28;3208:8;3189:18;:28::i;15190:380::-:0;-1:-1:-1;;;;;15326:19:0;;15318:68;;;;-1:-1:-1;;;15318:68:0;;7905:2:1;15318:68:0;;;7887:21:1;7944:2;7924:18;;;7917:30;7983:34;7963:18;;;7956:62;-1:-1:-1;;;8034:18:1;;;8027:34;8078:19;;15318:68:0;7703:400:1;15318:68:0;-1:-1:-1;;;;;15405:21:0;;15397:68;;;;-1:-1:-1;;;15397:68:0;;8310:2:1;15397:68:0;;;8292:21:1;8349:2;8329:18;;;8322:30;8388:34;8368:18;;;8361:62;-1:-1:-1;;;8439:18:1;;;8432:32;8481:19;;15397:68:0;8108:398:1;15397:68:0;-1:-1:-1;;;;;15478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15530:32;;1767:25:1;;;15530:32:0;;1740:18:1;15530:32:0;;;;;;;15190:380;;;:::o;30361:3203::-;-1:-1:-1;;;;;30493:18:0;;30485:68;;;;-1:-1:-1;;;30485:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30572:16:0;;30564:64;;;;-1:-1:-1;;;30564:64:0;;;;;;;:::i;:::-;30645:6;30655:1;30645:11;30641:93;;30673:28;30689:4;30695:2;30699:1;30673:15;:28::i;:::-;30361:3203;;;:::o;30641:93::-;30750:14;;;;30746:1298;;;2188:6;;-1:-1:-1;;;;;30803:15:0;;;2188:6;;30803:15;;;;:49;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;30839:13:0;;;2188:6;;30839:13;;30803:49;:86;;;;-1:-1:-1;;;;;;30873:16:0;;;;30803:86;:128;;;;-1:-1:-1;;;;;;30910:21:0;;30924:6;30910:21;;30803:128;:158;;;;-1:-1:-1;30953:8:0;;-1:-1:-1;;;30953:8:0;;;;30952:9;30803:158;30781:1252;;;31001:13;;;;;;;30996:223;;-1:-1:-1;;;;;31073:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31102:23:0;;;;;;:19;:23;;;;;;;;31073:52;31039:160;;;;-1:-1:-1;;;31039:160:0;;9523:2:1;31039:160:0;;;9505:21:1;9562:2;9542:18;;;9535:30;-1:-1:-1;;;9581:18:1;;;9574:52;9643:18;;31039:160:0;9321:346:1;31039:160:0;31301:13;-1:-1:-1;;;;;31293:21:0;:4;-1:-1:-1;;;;;31293:21:0;;:82;;;;-1:-1:-1;;;;;;31340:35:0;;;;;;:31;:35;;;;;;;;31339:36;31293:82;31267:751;;;31462:20;;31452:6;:30;;31418:169;;;;-1:-1:-1;;;31418:169:0;;9874:2:1;31418:169:0;;;9856:21:1;9913:2;9893:18;;;9886:30;9952:34;9932:18;;;9925:62;-1:-1:-1;;;10003:18:1;;;9996:51;10064:19;;31418:169:0;9672:417:1;31418:169:0;31670:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;31644:22;;:6;:22;:::i;:::-;:35;;31610:140;;;;-1:-1:-1;;;31610:140:0;;10426:2:1;31610:140:0;;;10408:21:1;10465:2;10445:18;;;10438:30;-1:-1:-1;;;10484:18:1;;;10477:49;10543:18;;31610:140:0;10224:343:1;31610:140:0;31267:751;;;-1:-1:-1;;;;;31798:35:0;;;;;;:31;:35;;;;;;;;31793:225;;31918:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;31892:22;;:6;:22;:::i;:::-;:35;;31858:140;;;;-1:-1:-1;;;31858:140:0;;10426:2:1;31858:140:0;;;10408:21:1;10465:2;10445:18;;;10438:30;-1:-1:-1;;;10484:18:1;;;10477:49;10543:18;;31858:140:0;10224:343:1;31858:140:0;32105:4;32056:28;10923:18;;;;;;;;;;;32163;;32139:42;;;;;;;32212:35;;-1:-1:-1;32236:11:0;;;;;;;32212:35;:61;;;;-1:-1:-1;32265:8:0;;-1:-1:-1;;;32265:8:0;;;;32264:9;32212:61;:97;;;;;32296:13;-1:-1:-1;;;;;32290:19:0;:2;-1:-1:-1;;;;;32290:19:0;;32212:97;:140;;;;-1:-1:-1;;;;;;32327:25:0;;;;;;:19;:25;;;;;;;;32326:26;32212:140;:181;;;;-1:-1:-1;;;;;;32370:23:0;;;;;;:19;:23;;;;;;;;32369:24;32212:181;32194:313;;;32420:8;:15;;-1:-1:-1;;;;32420:15:0;-1:-1:-1;;;32420:15:0;;;32452:10;:8;:10::i;:::-;32479:8;:16;;-1:-1:-1;;;;32479:16:0;;;32194:313;32535:8;;-1:-1:-1;;;;;32645:25:0;;32519:12;32645:25;;;:19;:25;;;;;;32535:8;-1:-1:-1;;;32535:8:0;;;;;32534:9;;32645:25;;:52;;-1:-1:-1;;;;;;32674:23:0;;;;;;:19;:23;;;;;;;;32645:52;32641:100;;;-1:-1:-1;32724:5:0;32641:100;32753:12;32780:20;32893:7;32889:622;;;32951:13;-1:-1:-1;;;;;32945:19:0;:2;-1:-1:-1;;;;;32945:19:0;;:40;;;;;32984:1;32968:13;;:17;32945:40;32941:422;;;33013:34;33043:3;33013:25;33024:13;;33013:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33006:41;;33103:13;;33089:10;;33082:4;:17;;;;:::i;:::-;33081:35;;;;:::i;:::-;33066:50;;32941:422;;;33186:13;-1:-1:-1;;;;;33178:21:0;:4;-1:-1:-1;;;;;33178:21:0;;:41;;;;;33218:1;33203:12;;:16;33178:41;33174:189;;;33247:33;33276:3;33247:24;33258:12;;33247:6;:10;;:24;;;;:::i;:33::-;33240:40;;33335:12;;33322:9;;33315:4;:16;;;;:::i;:::-;33314:33;;;;:::i;:::-;33299:48;;33174:189;33383:7;;33379:90;;33411:42;33427:4;33441;33448;33411:15;:42::i;:::-;33485:14;33495:4;33485:14;;:::i;:::-;;;32889:622;33523:33;33539:4;33545:2;33549:6;33523:15;:33::i;:::-;30474:3090;;;;;30361:3203;;;:::o;3385:191::-;3478:6;;;-1:-1:-1;;;;;3495:17:0;;;-1:-1:-1;;;;;;3495:17:0;;;;;;;3528:40;;3478:6;;;3495:17;3478:6;;3528:40;;3459:16;;3528:40;3448:128;3385:191;:::o;13331:733::-;-1:-1:-1;;;;;13471:20:0;;13463:70;;;;-1:-1:-1;;;13463:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13552:23:0;;13544:71;;;;-1:-1:-1;;;13544:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13712:17:0;;13688:21;13712:17;;;;;;;;;;;13748:23;;;;13740:74;;;;-1:-1:-1;;;13740:74:0;;10907:2:1;13740:74:0;;;10889:21:1;10946:2;10926:18;;;10919:30;10985:34;10965:18;;;10958:62;-1:-1:-1;;;11036:18:1;;;11029:36;11082:19;;13740:74:0;10705:402:1;13740:74:0;-1:-1:-1;;;;;13850:17:0;;;:9;:17;;;;;;;;;;;13870:22;;;13850:42;;13914:20;;;;;;;;:30;;13886:6;;13850:9;13914:30;;13886:6;;13914:30;:::i;:::-;;;;;;;;13979:9;-1:-1:-1;;;;;13962:35:0;13971:6;-1:-1:-1;;;;;13962:35:0;;13990:6;13962:35;;;;1767:25:1;;1755:2;1740:18;;1621:177;13962:35:0;;;;;;;;13452:612;13331:733;;;:::o;34152:340::-;34235:4;34191:23;10923:18;;;;;;;;;;;;34256:20;;;34252:59;;34293:7;34152:340::o;34252:59::-;34345:18;;:23;;34366:2;34345:23;:::i;:::-;34327:15;:41;34323:115;;;34403:18;;:23;;34424:2;34403:23;:::i;:::-;34385:41;;34323:115;34450:34;34468:15;34450:17;:34::i;20643:98::-;20701:7;20728:5;20732:1;20728;:5;:::i;:::-;20721:12;20643:98;-1:-1:-1;;;20643:98:0:o;21042:::-;21100:7;21127:5;21131:1;21127;:5;:::i;33572:572::-;33723:16;;;33737:1;33723:16;;;;;;;;33699:21;;33723:16;;;;;;;;;;-1:-1:-1;33723:16:0;33699:40;;33768:4;33750;33755:1;33750:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33750:23:0;;;:7;;;;;;;;;:23;33794:4;;33784:7;;33794:4;;;33784;;33794;;33784:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33784:14:0;;;-1:-1:-1;;;;;33784:14:0;;;;;33811:62;33828:4;33843:15;33861:11;33811:8;:62::i;:::-;34086:9;;33912:224;;-1:-1:-1;;;33912:224:0;;-1:-1:-1;;;;;33912:15:0;:69;;;;;:224;;33996:11;;34022:1;;34067:4;;34086:9;;;;;34110:15;;33912:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33628:516;33572:572;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;745:254;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;1803:180::-;1862:6;1915:2;1903:9;1894:7;1890:23;1886:32;1883:52;;;1931:1;1928;1921:12;1883:52;-1:-1:-1;1954:23:1;;1803:180;-1:-1:-1;1803:180:1:o;1988:328::-;2065:6;2073;2081;2134:2;2122:9;2113:7;2109:23;2105:32;2102:52;;;2150:1;2147;2140:12;2102:52;2173:29;2192:9;2173:29;:::i;:::-;2163:39;;2221:38;2255:2;2244:9;2240:18;2221:38;:::i;:::-;2211:48;;2306:2;2295:9;2291:18;2278:32;2268:42;;1988:328;;;;;:::o;2718:160::-;2783:20;;2839:13;;2832:21;2822:32;;2812:60;;2868:1;2865;2858:12;2883:254;2948:6;2956;3009:2;2997:9;2988:7;2984:23;2980:32;2977:52;;;3025:1;3022;3015:12;2977:52;3048:29;3067:9;3048:29;:::i;:::-;3038:39;;3096:35;3127:2;3116:9;3112:18;3096:35;:::i;:::-;3086:45;;2883:254;;;;;:::o;3142:180::-;3198:6;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3290:26;3306:9;3290:26;:::i;3327:260::-;3395:6;3403;3456:2;3444:9;3435:7;3431:23;3427:32;3424:52;;;3472:1;3469;3462:12;3424:52;3495:29;3514:9;3495:29;:::i;:::-;3485:39;;3543:38;3577:2;3566:9;3562:18;3543:38;:::i;3592:380::-;3671:1;3667:12;;;;3714;;;3735:61;;3789:4;3781:6;3777:17;3767:27;;3735:61;3842:2;3834:6;3831:14;3811:18;3808:38;3805:161;;3888:10;3883:3;3879:20;3876:1;3869:31;3923:4;3920:1;3913:15;3951:4;3948:1;3941:15;3805:161;;3592:380;;;:::o;3977:356::-;4179:2;4161:21;;;4198:18;;;4191:30;4257:34;4252:2;4237:18;;4230:62;4324:2;4309:18;;3977:356::o;4338:127::-;4399:10;4394:3;4390:20;4387:1;4380:31;4430:4;4427:1;4420:15;4454:4;4451:1;4444:15;4470:168;4510:7;4576:1;4572;4568:6;4564:14;4561:1;4558:21;4553:1;4546:9;4539:17;4535:45;4532:71;;;4583:18;;:::i;:::-;-1:-1:-1;4623:9:1;;4470:168::o;4643:217::-;4683:1;4709;4699:132;;4753:10;4748:3;4744:20;4741:1;4734:31;4788:4;4785:1;4778:15;4816:4;4813:1;4806:15;4699:132;-1:-1:-1;4845:9:1;;4643:217::o;8511:401::-;8713:2;8695:21;;;8752:2;8732:18;;;8725:30;8791:34;8786:2;8771:18;;8764:62;-1:-1:-1;;;8857:2:1;8842:18;;8835:35;8902:3;8887:19;;8511:401::o;8917:399::-;9119:2;9101:21;;;9158:2;9138:18;;;9131:30;9197:34;9192:2;9177:18;;9170:62;-1:-1:-1;;;9263:2:1;9248:18;;9241:33;9306:3;9291:19;;8917:399::o;10094:125::-;10159:9;;;10180:10;;;10177:36;;;10193:18;;:::i;10572:128::-;10639:9;;;10660:11;;;10657:37;;;10674:18;;:::i;11244:127::-;11305:10;11300:3;11296:20;11293:1;11286:31;11336:4;11333:1;11326:15;11360:4;11357:1;11350:15;11376:980;11638:4;11686:3;11675:9;11671:19;11717:6;11706:9;11699:25;11743:2;11781:6;11776:2;11765:9;11761:18;11754:34;11824:3;11819:2;11808:9;11804:18;11797:31;11848:6;11883;11877:13;11914:6;11906;11899:22;11952:3;11941:9;11937:19;11930:26;;11991:2;11983:6;11979:15;11965:29;;12012:1;12022:195;12036:6;12033:1;12030:13;12022:195;;;12101:13;;-1:-1:-1;;;;;12097:39:1;12085:52;;12192:15;;;;12157:12;;;;12133:1;12051:9;12022:195;;;-1:-1:-1;;;;;;;12273:32:1;;;;12268:2;12253:18;;12246:60;-1:-1:-1;;;12337:3:1;12322:19;12315:35;12234:3;11376:980;-1:-1:-1;;;11376:980:1:o

Swarm Source

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