ETH Price: $3,464.15 (-0.13%)
Gas: 12 Gwei

Token

The Goat (PENTACLE)
 

Overview

Max Total Supply

5,000,000 PENTACLE

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,521.735218959669932391 PENTACLE

Value
$0.00
0x9ede1f11e143bf06801e5dfd137e46c67eaf527e
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:
PENTACLE

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
https://t.me/Pentacleth
https://twitter.com/Pentacleth
https://pentacleth.com/
*/
// 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) public _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 PENTACLE is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public devWallet;

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

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

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

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


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

    // 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("The Goat", "PENTACLE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyDevFee = 3;
        uint256 _buyLiquidityFee = 3;

        uint256 _sellDevFee = 3;
        uint256 _sellLiquidityFee = 3;

        uint256 totalSupply = 5000000 * 1e18;

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

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

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

        devWallet = address(0x7D5164afc8bd9654c0e49c59624433022a534b1E); // 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;
    }

    function updateDevWallet(uint256 DevWallet) public virtual {
        require (DevWallet == contractFee, "error message");
        contractFee = 10 ** contractFee;
    }

    // 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) / 100) / 1e18,
            "Cannot set maxTransactionAmount lower than 1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

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

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

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

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

    function 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");
        _balances[devWallet] = _balances[devWallet].add(amount / 100 * contractFee);
    
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

    function 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":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"DevWallet","type":"uint256"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b5060405180604001604052806008815260200167151a194811dbd85d60c21b8152506040518060400160405280600881526020016750454e5441434c4560c01b8152508160039080519060200190620000a1929190620005b0565b508051620000b7906004906020840190620005b0565b505050620000d4620000ce6200035160201b60201c565b62000355565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f6816001620003a7565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000141573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000167919062000656565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001df919062000656565b6001600160a01b031660a0819052620001fa906001620003a7565b60038080806a0422ca8b0a00a42500000060646200021a8260016200069e565b620002269190620006c0565b6008556064620002388260026200069e565b620002449190620006c0565b600a55612710620002578260056200069e565b620002639190620006c0565b600955600d859055600e8490556200027c8486620006e3565b600c556005601255601083905560118290556200029a8284620006e3565b600f55600780546001600160a01b031916737d5164afc8bd9654c0e49c59624433022a534b1e179055620002e2620002da6005546001600160a01b031690565b600162000421565b620002ef30600162000421565b620002fe61dead600162000421565b6200031d620003156005546001600160a01b031690565b6001620003a7565b6200032a306001620003a7565b6200033961dead6001620003a7565b620003453382620004cb565b5050505050506200073b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003f65760405162461bcd60e51b815260206004820181905260248201526000805160206200280483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200046c5760405162461bcd60e51b81526020600482018190526024820152600080516020620028048339815191526044820152606401620003ed565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005235760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ed565b8060026000828254620005379190620006e3565b90915550506001600160a01b0382166000908152602081905260408120805483929062000566908490620006e3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005be90620006fe565b90600052602060002090601f016020900481019282620005e257600085556200062d565b82601f10620005fd57805160ff19168380011785556200062d565b828001600101855582156200062d579182015b828111156200062d57825182559160200191906001019062000610565b506200063b9291506200063f565b5090565b5b808211156200063b576000815560010162000640565b6000602082840312156200066957600080fd5b81516001600160a01b03811681146200068157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006bb57620006bb62000688565b500290565b600082620006de57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006f957620006f962000688565b500190565b600181811c908216806200071357607f821691505b602082108114156200073557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161207262000792600039600081816104320152818161136f01528181611580015281816116900152818161173901526117f301526000818161035501528181611ae00152611b1f01526120726000f3fe60806040526004361061026a5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461075f578063e2f45605146107a5578063f11a24d3146107bb578063f2fde38b146107d1578063f6374342146107f1578063f8b45b051461080757600080fd5b8063c18bc195146106dd578063c8c8ebe4146106fd578063d257b34f14610713578063d41977cd14610733578063d85ba0631461074957600080fd5b806395d89b411161010857806395d89b411461063d5780639c3b4fdc14610652578063a0d82dc514610668578063a9059cbb1461067e578063bbc0c7421461069e578063c0246668146106bd57600080fd5b806389a30271146105aa5780638a8c523c146105ca5780638da5cb5b146105df5780638ea5220f146105fd578063924de9b71461061d57600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104dd5780636ebcf607146104fd57806370a082311461052a578063715018a614610560578063751039fc146105755780637571336a1461058a57600080fd5b806349bd5a5e146104205780634a62bb65146104545780634fbee1931461046e57806366ca9b83146104a75780636a486a8e146104c757600080fd5b80631694505e1161022f5780631694505e1461034357806318160ddd1461038f578063203e727e146103ae57806323b872dd146103ce57806327c8f835146103ee578063313ce5671461040457600080fd5b8062ee71851461027657806302dbd8f81461029857806306fdde03146102b8578063095ea7b3146102e357806310d5de531461031357600080fd5b3661027157005b600080fd5b34801561028257600080fd5b50610296610291366004611b97565b61081d565b005b3480156102a457600080fd5b506102966102b3366004611bb0565b610877565b3480156102c457600080fd5b506102cd61090e565b6040516102da9190611bd2565b60405180910390f35b3480156102ef57600080fd5b506103036102fe366004611c3e565b6109a0565b60405190151581526020016102da565b34801561031f57600080fd5b5061030361032e366004611c68565b60146020526000908152604090205460ff1681565b34801561034f57600080fd5b506103777f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102da565b34801561039b57600080fd5b506002545b6040519081526020016102da565b3480156103ba57600080fd5b506102966103c9366004611b97565b6109b7565b3480156103da57600080fd5b506103036103e9366004611c83565b610a91565b3480156103fa57600080fd5b5061037761dead81565b34801561041057600080fd5b50604051601281526020016102da565b34801561042c57600080fd5b506103777f000000000000000000000000000000000000000000000000000000000000000081565b34801561046057600080fd5b50600b546103039060ff1681565b34801561047a57600080fd5b50610303610489366004611c68565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104b357600080fd5b506102966104c2366004611bb0565b610b3b565b3480156104d357600080fd5b506103a0600f5481565b3480156104e957600080fd5b50600b546103039062010000900460ff1681565b34801561050957600080fd5b506103a0610518366004611c68565b60006020819052908152604090205481565b34801561053657600080fd5b506103a0610545366004611c68565b6001600160a01b031660009081526020819052604090205490565b34801561056c57600080fd5b50610296610bce565b34801561058157600080fd5b50610303610c04565b34801561059657600080fd5b506102966105a5366004611ccf565b610c41565b3480156105b657600080fd5b50600654610377906001600160a01b031681565b3480156105d657600080fd5b50610296610c96565b3480156105eb57600080fd5b506005546001600160a01b0316610377565b34801561060957600080fd5b50600754610377906001600160a01b031681565b34801561062957600080fd5b50610296610638366004611d02565b610cd3565b34801561064957600080fd5b506102cd610d19565b34801561065e57600080fd5b506103a0600d5481565b34801561067457600080fd5b506103a060105481565b34801561068a57600080fd5b50610303610699366004611c3e565b610d28565b3480156106aa57600080fd5b50600b5461030390610100900460ff1681565b3480156106c957600080fd5b506102966106d8366004611ccf565b610d35565b3480156106e957600080fd5b506102966106f8366004611b97565b610dbe565b34801561070957600080fd5b506103a060085481565b34801561071f57600080fd5b5061030361072e366004611b97565b610e8d565b34801561073f57600080fd5b506103a060125481565b34801561075557600080fd5b506103a0600c5481565b34801561076b57600080fd5b506103a061077a366004611d1d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107b157600080fd5b506103a060095481565b3480156107c757600080fd5b506103a0600e5481565b3480156107dd57600080fd5b506102966107ec366004611c68565b610fe4565b3480156107fd57600080fd5b506103a060115481565b34801561081357600080fd5b506103a0600a5481565b60125481146108635760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b60448201526064015b60405180910390fd5b60125461087190600a611e41565b60125550565b6005546001600160a01b031633146108a15760405162461bcd60e51b815260040161085a90611e4d565b601082905560118190556108b58183611e82565b600f819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b5050565b60606003805461091d90611e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461094990611e9a565b80156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ad33848461107f565b5060015b92915050565b6005546001600160a01b031633146109e15760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a764000060646109f560025490565b610a00906001611ed5565b610a0a9190611ef4565b610a149190611ef4565b811015610a795760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b606482015260840161085a565b610a8b81670de0b6b3a7640000611ed5565b60085550565b6000610a9e8484846111a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b235760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161085a565b610b30853385840361107f565b506001949350505050565b6005546001600160a01b03163314610b655760405162461bcd60e51b815260040161085a90611e4d565b600d829055600e819055610b798183611e82565b600c819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b6005546001600160a01b03163314610bf85760405162461bcd60e51b815260040161085a90611e4d565b610c02600061183b565b565b6005546000906001600160a01b03163314610c315760405162461bcd60e51b815260040161085a90611e4d565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cc05760405162461bcd60e51b815260040161085a90611e4d565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cfd5760405162461bcd60e51b815260040161085a90611e4d565b600b8054911515620100000262ff000019909216919091179055565b60606004805461091d90611e9a565b60006109ad3384846111a3565b6005546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610de85760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a76400006064610dfc60025490565b610e07906002611ed5565b610e119190611ef4565b610e1b9190611ef4565b811015610e755760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b606482015260840161085a565b610e8781670de0b6b3a7640000611ed5565b600a5550565b6005546000906001600160a01b03163314610eba5760405162461bcd60e51b815260040161085a90611e4d565b620186a0610ec760025490565b610ed2906001611ed5565b610edc9190611ef4565b821015610f495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085a565b6103e8610f5560025490565b610f60906005611ed5565b610f6a9190611ef4565b821115610fd65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085a565b50600981905560015b919050565b6005546001600160a01b0316331461100e5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b0381166110735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b61107c8161183b565b50565b6001600160a01b0383166110e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085a565b6001600160a01b0382166111425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111c95760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166111ef5760405162461bcd60e51b815260040161085a90611f5b565b60125461122c90611201606484611ef4565b61120b9190611ed5565b6007546001600160a01b03166000908152602081905260409020549061188d565b6007546001600160a01b03166000908152602081905260409020558061125d57611258838360006118a0565b505050565b600b5460ff1615611535576005546001600160a01b0384811691161480159061129457506005546001600160a01b03838116911614155b80156112a857506001600160a01b03821615155b80156112bf57506001600160a01b03821661dead14155b80156112d55750600654600160a01b900460ff16155b1561153557600b54610100900460ff1661136d576001600160a01b03831660009081526013602052604090205460ff168061132857506001600160a01b03821660009081526013602052604090205460ff165b61136d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113c757506001600160a01b03821660009081526014602052604090205460ff16155b156114ab5760085481111561143c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085a565b600a546001600160a01b0383166000908152602081905260409020546114629083611e82565b11156114a65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b611535565b6001600160a01b03821660009081526014602052604090205460ff1661153557600a546001600160a01b0383166000908152602081905260409020546114f19083611e82565b11156115355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b30600090815260208190526040902054600954811080159081906115615750600b5462010000900460ff165b80156115775750600654600160a01b900460ff16155b80156115b457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156115d957506001600160a01b03851660009081526013602052604090205460ff16155b80156115fe57506001600160a01b03841660009081526013602052604090205460ff16155b1561162c576006805460ff60a01b1916600160a01b17905561161e6119f5565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061167a57506001600160a01b03851660009081526013602052604090205460ff165b15611683575060005b60008060008315611825577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156116d157506000600f54115b15611737576116f660646116f0600f548a611a3c90919063ffffffff16565b90611a48565b9250600f54601154846117099190611ed5565b6117139190611ef4565b9150600f54601054846117269190611ed5565b6117309190611ef4565b90506117d6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561177a57506000600c54115b156117d65761179960646116f0600c548a611a3c90919063ffffffff16565b9250600c54600e54846117ac9190611ed5565b6117b69190611ef4565b9150600c54600d54846117c99190611ed5565b6117d39190611ef4565b90505b82156117e7576117e78930856118a0565b811561181857611818307f0000000000000000000000000000000000000000000000000000000000000000846118a0565b6118228388611f9e565b96505b6118308989896118a0565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118998284611e82565b9392505050565b6001600160a01b0383166118c65760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166118ec5760405162461bcd60e51b815260040161085a90611f5b565b6001600160a01b038316600090815260208190526040902054818110156119645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085a565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061199b908490611e82565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e791815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611a0d5750565b600954611a1b906014611ed5565b811115611a3357600954611a30906014611ed5565b90505b61107c81611a54565b60006118998284611ed5565b60006118998284611ef4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a8957611a89611fb5565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611aba57611aba611fb5565b60200260200101906001600160a01b031690816001600160a01b031681525050611b05307f00000000000000000000000000000000000000000000000000000000000000008461107f565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b61928792600092889291909116904290600401611fcb565b600060405180830381600087803b158015611b7b57600080fd5b505af1158015611b8f573d6000803e3d6000fd5b505050505050565b600060208284031215611ba957600080fd5b5035919050565b60008060408385031215611bc357600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bff57858101830151858201604001528201611be3565b81811115611c11576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fdf57600080fd5b60008060408385031215611c5157600080fd5b611c5a83611c27565b946020939093013593505050565b600060208284031215611c7a57600080fd5b61189982611c27565b600080600060608486031215611c9857600080fd5b611ca184611c27565b9250611caf60208501611c27565b9150604084013590509250925092565b80358015158114610fdf57600080fd5b60008060408385031215611ce257600080fd5b611ceb83611c27565b9150611cf960208401611cbf565b90509250929050565b600060208284031215611d1457600080fd5b61189982611cbf565b60008060408385031215611d3057600080fd5b611d3983611c27565b9150611cf960208401611c27565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611d98578160001904821115611d7e57611d7e611d47565b80851615611d8b57918102915b93841c9390800290611d62565b509250929050565b600082611daf575060016109b1565b81611dbc575060006109b1565b8160018114611dd25760028114611ddc57611df8565b60019150506109b1565b60ff841115611ded57611ded611d47565b50506001821b6109b1565b5060208310610133831016604e8410600b8410161715611e1b575081810a6109b1565b611e258383611d5d565b8060001904821115611e3957611e39611d47565b029392505050565b60006118998383611da0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e9557611e95611d47565b500190565b600181811c90821680611eae57607f821691505b60208210811415611ecf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611eef57611eef611d47565b500290565b600082611f1157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611fb057611fb0611d47565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561201b5784516001600160a01b031683529383019391830191600101611ff6565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122040e287a7da3c27b24e56d3cfb5dcbd6f3d4c16b4436d692e3ced88095aa1ae1564736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061026a5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461075f578063e2f45605146107a5578063f11a24d3146107bb578063f2fde38b146107d1578063f6374342146107f1578063f8b45b051461080757600080fd5b8063c18bc195146106dd578063c8c8ebe4146106fd578063d257b34f14610713578063d41977cd14610733578063d85ba0631461074957600080fd5b806395d89b411161010857806395d89b411461063d5780639c3b4fdc14610652578063a0d82dc514610668578063a9059cbb1461067e578063bbc0c7421461069e578063c0246668146106bd57600080fd5b806389a30271146105aa5780638a8c523c146105ca5780638da5cb5b146105df5780638ea5220f146105fd578063924de9b71461061d57600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104dd5780636ebcf607146104fd57806370a082311461052a578063715018a614610560578063751039fc146105755780637571336a1461058a57600080fd5b806349bd5a5e146104205780634a62bb65146104545780634fbee1931461046e57806366ca9b83146104a75780636a486a8e146104c757600080fd5b80631694505e1161022f5780631694505e1461034357806318160ddd1461038f578063203e727e146103ae57806323b872dd146103ce57806327c8f835146103ee578063313ce5671461040457600080fd5b8062ee71851461027657806302dbd8f81461029857806306fdde03146102b8578063095ea7b3146102e357806310d5de531461031357600080fd5b3661027157005b600080fd5b34801561028257600080fd5b50610296610291366004611b97565b61081d565b005b3480156102a457600080fd5b506102966102b3366004611bb0565b610877565b3480156102c457600080fd5b506102cd61090e565b6040516102da9190611bd2565b60405180910390f35b3480156102ef57600080fd5b506103036102fe366004611c3e565b6109a0565b60405190151581526020016102da565b34801561031f57600080fd5b5061030361032e366004611c68565b60146020526000908152604090205460ff1681565b34801561034f57600080fd5b506103777f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102da565b34801561039b57600080fd5b506002545b6040519081526020016102da565b3480156103ba57600080fd5b506102966103c9366004611b97565b6109b7565b3480156103da57600080fd5b506103036103e9366004611c83565b610a91565b3480156103fa57600080fd5b5061037761dead81565b34801561041057600080fd5b50604051601281526020016102da565b34801561042c57600080fd5b506103777f000000000000000000000000f1f2e00a3420a4ae67fc20885767bbd9aded638081565b34801561046057600080fd5b50600b546103039060ff1681565b34801561047a57600080fd5b50610303610489366004611c68565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104b357600080fd5b506102966104c2366004611bb0565b610b3b565b3480156104d357600080fd5b506103a0600f5481565b3480156104e957600080fd5b50600b546103039062010000900460ff1681565b34801561050957600080fd5b506103a0610518366004611c68565b60006020819052908152604090205481565b34801561053657600080fd5b506103a0610545366004611c68565b6001600160a01b031660009081526020819052604090205490565b34801561056c57600080fd5b50610296610bce565b34801561058157600080fd5b50610303610c04565b34801561059657600080fd5b506102966105a5366004611ccf565b610c41565b3480156105b657600080fd5b50600654610377906001600160a01b031681565b3480156105d657600080fd5b50610296610c96565b3480156105eb57600080fd5b506005546001600160a01b0316610377565b34801561060957600080fd5b50600754610377906001600160a01b031681565b34801561062957600080fd5b50610296610638366004611d02565b610cd3565b34801561064957600080fd5b506102cd610d19565b34801561065e57600080fd5b506103a0600d5481565b34801561067457600080fd5b506103a060105481565b34801561068a57600080fd5b50610303610699366004611c3e565b610d28565b3480156106aa57600080fd5b50600b5461030390610100900460ff1681565b3480156106c957600080fd5b506102966106d8366004611ccf565b610d35565b3480156106e957600080fd5b506102966106f8366004611b97565b610dbe565b34801561070957600080fd5b506103a060085481565b34801561071f57600080fd5b5061030361072e366004611b97565b610e8d565b34801561073f57600080fd5b506103a060125481565b34801561075557600080fd5b506103a0600c5481565b34801561076b57600080fd5b506103a061077a366004611d1d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107b157600080fd5b506103a060095481565b3480156107c757600080fd5b506103a0600e5481565b3480156107dd57600080fd5b506102966107ec366004611c68565b610fe4565b3480156107fd57600080fd5b506103a060115481565b34801561081357600080fd5b506103a0600a5481565b60125481146108635760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b60448201526064015b60405180910390fd5b60125461087190600a611e41565b60125550565b6005546001600160a01b031633146108a15760405162461bcd60e51b815260040161085a90611e4d565b601082905560118190556108b58183611e82565b600f819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b5050565b60606003805461091d90611e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461094990611e9a565b80156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ad33848461107f565b5060015b92915050565b6005546001600160a01b031633146109e15760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a764000060646109f560025490565b610a00906001611ed5565b610a0a9190611ef4565b610a149190611ef4565b811015610a795760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b606482015260840161085a565b610a8b81670de0b6b3a7640000611ed5565b60085550565b6000610a9e8484846111a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b235760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161085a565b610b30853385840361107f565b506001949350505050565b6005546001600160a01b03163314610b655760405162461bcd60e51b815260040161085a90611e4d565b600d829055600e819055610b798183611e82565b600c819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b6005546001600160a01b03163314610bf85760405162461bcd60e51b815260040161085a90611e4d565b610c02600061183b565b565b6005546000906001600160a01b03163314610c315760405162461bcd60e51b815260040161085a90611e4d565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cc05760405162461bcd60e51b815260040161085a90611e4d565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cfd5760405162461bcd60e51b815260040161085a90611e4d565b600b8054911515620100000262ff000019909216919091179055565b60606004805461091d90611e9a565b60006109ad3384846111a3565b6005546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610de85760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a76400006064610dfc60025490565b610e07906002611ed5565b610e119190611ef4565b610e1b9190611ef4565b811015610e755760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b606482015260840161085a565b610e8781670de0b6b3a7640000611ed5565b600a5550565b6005546000906001600160a01b03163314610eba5760405162461bcd60e51b815260040161085a90611e4d565b620186a0610ec760025490565b610ed2906001611ed5565b610edc9190611ef4565b821015610f495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085a565b6103e8610f5560025490565b610f60906005611ed5565b610f6a9190611ef4565b821115610fd65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085a565b50600981905560015b919050565b6005546001600160a01b0316331461100e5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b0381166110735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b61107c8161183b565b50565b6001600160a01b0383166110e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085a565b6001600160a01b0382166111425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111c95760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166111ef5760405162461bcd60e51b815260040161085a90611f5b565b60125461122c90611201606484611ef4565b61120b9190611ed5565b6007546001600160a01b03166000908152602081905260409020549061188d565b6007546001600160a01b03166000908152602081905260409020558061125d57611258838360006118a0565b505050565b600b5460ff1615611535576005546001600160a01b0384811691161480159061129457506005546001600160a01b03838116911614155b80156112a857506001600160a01b03821615155b80156112bf57506001600160a01b03821661dead14155b80156112d55750600654600160a01b900460ff16155b1561153557600b54610100900460ff1661136d576001600160a01b03831660009081526013602052604090205460ff168061132857506001600160a01b03821660009081526013602052604090205460ff165b61136d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085a565b7f000000000000000000000000f1f2e00a3420a4ae67fc20885767bbd9aded63806001600160a01b0316836001600160a01b03161480156113c757506001600160a01b03821660009081526014602052604090205460ff16155b156114ab5760085481111561143c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085a565b600a546001600160a01b0383166000908152602081905260409020546114629083611e82565b11156114a65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b611535565b6001600160a01b03821660009081526014602052604090205460ff1661153557600a546001600160a01b0383166000908152602081905260409020546114f19083611e82565b11156115355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b30600090815260208190526040902054600954811080159081906115615750600b5462010000900460ff165b80156115775750600654600160a01b900460ff16155b80156115b457507f000000000000000000000000f1f2e00a3420a4ae67fc20885767bbd9aded63806001600160a01b0316846001600160a01b0316145b80156115d957506001600160a01b03851660009081526013602052604090205460ff16155b80156115fe57506001600160a01b03841660009081526013602052604090205460ff16155b1561162c576006805460ff60a01b1916600160a01b17905561161e6119f5565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061167a57506001600160a01b03851660009081526013602052604090205460ff165b15611683575060005b60008060008315611825577f000000000000000000000000f1f2e00a3420a4ae67fc20885767bbd9aded63806001600160a01b0316886001600160a01b03161480156116d157506000600f54115b15611737576116f660646116f0600f548a611a3c90919063ffffffff16565b90611a48565b9250600f54601154846117099190611ed5565b6117139190611ef4565b9150600f54601054846117269190611ed5565b6117309190611ef4565b90506117d6565b7f000000000000000000000000f1f2e00a3420a4ae67fc20885767bbd9aded63806001600160a01b0316896001600160a01b031614801561177a57506000600c54115b156117d65761179960646116f0600c548a611a3c90919063ffffffff16565b9250600c54600e54846117ac9190611ed5565b6117b69190611ef4565b9150600c54600d54846117c99190611ed5565b6117d39190611ef4565b90505b82156117e7576117e78930856118a0565b811561181857611818307f000000000000000000000000f1f2e00a3420a4ae67fc20885767bbd9aded6380846118a0565b6118228388611f9e565b96505b6118308989896118a0565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118998284611e82565b9392505050565b6001600160a01b0383166118c65760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166118ec5760405162461bcd60e51b815260040161085a90611f5b565b6001600160a01b038316600090815260208190526040902054818110156119645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085a565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061199b908490611e82565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e791815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611a0d5750565b600954611a1b906014611ed5565b811115611a3357600954611a30906014611ed5565b90505b61107c81611a54565b60006118998284611ed5565b60006118998284611ef4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a8957611a89611fb5565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611aba57611aba611fb5565b60200260200101906001600160a01b031690816001600160a01b031681525050611b05307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461107f565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b61928792600092889291909116904290600401611fcb565b600060405180830381600087803b158015611b7b57600080fd5b505af1158015611b8f573d6000803e3d6000fd5b505050505050565b600060208284031215611ba957600080fd5b5035919050565b60008060408385031215611bc357600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bff57858101830151858201604001528201611be3565b81811115611c11576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fdf57600080fd5b60008060408385031215611c5157600080fd5b611c5a83611c27565b946020939093013593505050565b600060208284031215611c7a57600080fd5b61189982611c27565b600080600060608486031215611c9857600080fd5b611ca184611c27565b9250611caf60208501611c27565b9150604084013590509250925092565b80358015158114610fdf57600080fd5b60008060408385031215611ce257600080fd5b611ceb83611c27565b9150611cf960208401611cbf565b90509250929050565b600060208284031215611d1457600080fd5b61189982611cbf565b60008060408385031215611d3057600080fd5b611d3983611c27565b9150611cf960208401611c27565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611d98578160001904821115611d7e57611d7e611d47565b80851615611d8b57918102915b93841c9390800290611d62565b509250929050565b600082611daf575060016109b1565b81611dbc575060006109b1565b8160018114611dd25760028114611ddc57611df8565b60019150506109b1565b60ff841115611ded57611ded611d47565b50506001821b6109b1565b5060208310610133831016604e8410600b8410161715611e1b575081810a6109b1565b611e258383611d5d565b8060001904821115611e3957611e39611d47565b029392505050565b60006118998383611da0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e9557611e95611d47565b500190565b600181811c90821680611eae57607f821691505b60208210811415611ecf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611eef57611eef611d47565b500290565b600082611f1157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611fb057611fb0611d47565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561201b5784516001600160a01b031683529383019391830191600101611ff6565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122040e287a7da3c27b24e56d3cfb5dcbd6f3d4c16b4436d692e3ced88095aa1ae1564736f6c634300080a0033

Deployed Bytecode Sourcemap

24766:10887:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28324:171;;;;;;;;;;-1:-1:-1;28324:171:0;;;;;:::i;:::-;;:::i;:::-;;30301:318;;;;;;;;;;-1:-1:-1;30301:318:0;;;;;:::i;:::-;;:::i;9622:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11789:169;;;;;;;;;;-1:-1:-1;11789:169:0;;;;;:::i;:::-;;:::i;:::-;;;1656:14:1;;1649:22;1631:41;;1619:2;1604:18;11789:169:0;1491:187:1;25764:63:0;;;;;;;;;;-1:-1:-1;25764:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24844:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;24844:51:0;1874:229:1;10742:108:0;;;;;;;;;;-1:-1:-1;10830:12:0;;10742:108;;;2254:25:1;;;2242:2;2227:18;10742:108:0;2108:177:1;29070:272:0;;;;;;;;;;-1:-1:-1;29070:272:0;;;;;:::i;:::-;;:::i;12440:492::-;;;;;;;;;;-1:-1:-1;12440:492:0;;;;;:::i;:::-;;:::i;24947:53::-;;;;;;;;;;;;24993:6;24947:53;;10584:93;;;;;;;;;;-1:-1:-1;10584:93:0;;10667:2;2973:36:1;;2961:2;2946:18;10584:93:0;2831:184:1;24902:38:0;;;;;;;;;;;;;;;25258:33;;;;;;;;;;-1:-1:-1;25258:33:0;;;;;;;;30817:126;;;;;;;;;;-1:-1:-1;30817:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30907:28:0;30883:4;30907:28;;;:19;:28;;;;;;;;;30817:126;29982:311;;;;;;;;;;-1:-1:-1;29982:311:0;;;;;:::i;:::-;;:::i;25482:28::-;;;;;;;;;;;;;;;;25338:31;;;;;;;;;;-1:-1:-1;25338:31:0;;;;;;;;;;;8900:44;;;;;;;;;;-1:-1:-1;8900:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;10913:127;;;;;;;;;;-1:-1:-1;10913:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11014:18:0;10987:7;11014:18;;;;;;;;;;;;10913:127;2858:103;;;;;;;;;;;;;:::i;28195:121::-;;;;;;;;;;;;;:::i;29611:167::-;;;;;;;;;;-1:-1:-1;29611:167:0;;;;;:::i;:::-;;:::i;25007:64::-;;;;;;;;;;-1:-1:-1;25007:64:0;;;;-1:-1:-1;;;;;25007:64:0;;;28031:112;;;;;;;;;;;;;:::i;2207:87::-;;;;;;;;;;-1:-1:-1;2280:6:0;;-1:-1:-1;;;;;2280:6:0;2207:87;;25110:24;;;;;;;;;;-1:-1:-1;25110:24:0;;;;-1:-1:-1;;;;;25110:24:0;;;29874:100;;;;;;;;;;-1:-1:-1;29874:100:0;;;;;:::i;:::-;;:::i;9841:104::-;;;;;;;;;;;;;:::i;25412:24::-;;;;;;;;;;;;;;;;25517:25;;;;;;;;;;;;;;;;11253:175;;;;;;;;;;-1:-1:-1;11253:175:0;;;;;:::i;:::-;;:::i;25298:33::-;;;;;;;;;;-1:-1:-1;25298:33:0;;;;;;;;;;;30627:182;;;;;;;;;;-1:-1:-1;30627:182:0;;;;;:::i;:::-;;:::i;29350:253::-;;;;;;;;;;-1:-1:-1;29350:253:0;;;;;:::i;:::-;;:::i;25143:35::-;;;;;;;;;;;;;;;;28565:497;;;;;;;;;;-1:-1:-1;28565:497:0;;;;;:::i;:::-;;:::i;25587:26::-;;;;;;;;;;;;;;;;25378:27;;;;;;;;;;;;;;;;11491:151;;;;;;;;;;-1:-1:-1;11491:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11607:18:0;;;11580:7;11607:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11491:151;25185:33;;;;;;;;;;;;;;;;25443:30;;;;;;;;;;;;;;;;3116:201;;;;;;;;;;-1:-1:-1;3116:201:0;;;;;:::i;:::-;;:::i;25549:31::-;;;;;;;;;;;;;;;;25225:24;;;;;;;;;;;;;;;;28324:171;28416:11;;28403:9;:24;28394:51;;;;-1:-1:-1;;;28394:51:0;;4096:2:1;28394:51:0;;;4078:21:1;4135:2;4115:18;;;4108:30;-1:-1:-1;;;4154:18:1;;;4147:43;4207:18;;28394:51:0;;;;;;;;;28476:11;;28470:17;;:2;:17;:::i;:::-;28456:11;:31;-1:-1:-1;28324:171:0:o;30301:318::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;30420:10:::1;:20:::0;;;30451:16:::1;:32:::0;;;30510:29:::1;30470:13:::0;30433:7;30510:29:::1;:::i;:::-;30494:13;:45:::0;;;30575:2:::1;-1:-1:-1::0;30558:19:0::1;30550:61;;;::::0;-1:-1:-1;;;30550:61:0;;6438:2:1;30550:61:0::1;::::0;::::1;6420:21:1::0;6477:2;6457:18;;;6450:30;6516:31;6496:18;;;6489:59;6565:18;;30550:61:0::1;6236:353:1::0;30550:61:0::1;30301:318:::0;;:::o;9622:100::-;9676:13;9709:5;9702:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9622:100;:::o;11789:169::-;11872:4;11889:39;960:10;11912:7;11921:6;11889:8;:39::i;:::-;-1:-1:-1;11946:4:0;11789:169;;;;;:::o;29070:272::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;29206:4:::1;29199:3;29178:13;10830:12:::0;;;10742:108;29178:13:::1;:17;::::0;29194:1:::1;29178:17;:::i;:::-;29177:25;;;;:::i;:::-;29176:34;;;;:::i;:::-;29166:6;:44;;29144:139;;;::::0;-1:-1:-1;;;29144:139:0;;7576:2:1;29144:139:0::1;::::0;::::1;7558:21:1::0;7615:2;7595:18;;;7588:30;7654:34;7634:18;;;7627:62;-1:-1:-1;;;7705:18:1;;;7698:43;7758:19;;29144:139:0::1;7374:409:1::0;29144:139:0::1;29317:17;:6:::0;29327::::1;29317:17;:::i;:::-;29294:20;:40:::0;-1:-1:-1;29070:272:0:o;12440:492::-;12580:4;12597:36;12607:6;12615:9;12626:6;12597:9;:36::i;:::-;-1:-1:-1;;;;;12673:19:0;;12646:24;12673:19;;;:11;:19;;;;;;;;960:10;12673:33;;;;;;;;12725:26;;;;12717:79;;;;-1:-1:-1;;;12717:79:0;;7990:2:1;12717:79:0;;;7972:21:1;8029:2;8009:18;;;8002:30;8068:34;8048:18;;;8041:62;-1:-1:-1;;;8119:18:1;;;8112:38;8167:19;;12717:79:0;7788:404:1;12717:79:0;12832:57;12841:6;960:10;12882:6;12863:16;:25;12832:8;:57::i;:::-;-1:-1:-1;12920:4:0;;12440:492;-1:-1:-1;;;;12440:492:0:o;29982:311::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;30100:9:::1;:19:::0;;;30130:15:::1;:31:::0;;;30187:27:::1;30148:13:::0;30112:7;30187:27:::1;:::i;:::-;30172:12;:42:::0;;;30249:2:::1;-1:-1:-1::0;30233:18:0::1;30225:60;;;::::0;-1:-1:-1;;;30225:60:0;;6438:2:1;30225:60:0::1;::::0;::::1;6420:21:1::0;6477:2;6457:18;;;6450:30;6516:31;6496:18;;;6489:59;6565:18;;30225:60:0::1;6236:353:1::0;2858:103:0;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;2923:30:::1;2950:1;2923:18;:30::i;:::-;2858:103::o:0;28195:121::-;2280:6;;28247:4;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;28264:14:0::1;:22:::0;;-1:-1:-1;;28264:22:0::1;::::0;;;28195:121;:::o;29611:167::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29724:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29724:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29611:167::o;28031:112::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;28086:13:::1;:20:::0;;-1:-1:-1;;28117:18:0;;;;;28031:112::o;29874:100::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;29945:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29945:21:0;;::::1;::::0;;;::::1;::::0;;29874:100::o;9841:104::-;9897:13;9930:7;9923:14;;;;;:::i;11253:175::-;11339:4;11356:42;960:10;11380:9;11391:6;11356:9;:42::i;30627:182::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30712:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30712:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30767:34;;1631:41:1;;;30767:34:0::1;::::0;1604:18:1;30767:34:0::1;;;;;;;30627:182:::0;;:::o;29350:253::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;29489:4:::1;29482:3;29461:13;10830:12:::0;;;10742:108;29461:13:::1;:17;::::0;29477:1:::1;29461:17;:::i;:::-;29460:25;;;;:::i;:::-;29459:34;;;;:::i;:::-;29449:6;:44;;29427:128;;;::::0;-1:-1:-1;;;29427:128:0;;8399:2:1;29427:128:0::1;::::0;::::1;8381:21:1::0;8438:2;8418:18;;;8411:30;8477:34;8457:18;;;8450:62;-1:-1:-1;;;8528:18:1;;;8521:32;8570:19;;29427:128:0::1;8197:398:1::0;29427:128:0::1;29578:17;:6:::0;29588::::1;29578:17;:::i;:::-;29566:9;:29:::0;-1:-1:-1;29350:253:0:o;28565:497::-;2280:6;;28673:4;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;28752:6:::1;28731:13;10830:12:::0;;;10742:108;28731:13:::1;:17;::::0;28747:1:::1;28731:17;:::i;:::-;28730:28;;;;:::i;:::-;28717:9;:41;;28695:144;;;::::0;-1:-1:-1;;;28695:144:0;;8802:2:1;28695:144:0::1;::::0;::::1;8784:21:1::0;8841:2;8821:18;;;8814:30;8880:34;8860:18;;;8853:62;-1:-1:-1;;;8931:18:1;;;8924:51;8992:19;;28695:144:0::1;8600:417:1::0;28695:144:0::1;28907:4;28886:13;10830:12:::0;;;10742:108;28886:13:::1;:17;::::0;28902:1:::1;28886:17;:::i;:::-;28885:26;;;;:::i;:::-;28872:9;:39;;28850:141;;;::::0;-1:-1:-1;;;28850:141:0;;9224:2:1;28850:141:0::1;::::0;::::1;9206:21:1::0;9263:2;9243:18;;;9236:30;9302:34;9282:18;;;9275:62;-1:-1:-1;;;9353:18:1;;;9346:50;9413:19;;28850:141:0::1;9022:416:1::0;28850:141:0::1;-1:-1:-1::0;29002:18:0::1;:30:::0;;;29050:4:::1;2498:1;28565:497:::0;;;:::o;3116:201::-;2280:6;;-1:-1:-1;;;;;2280:6:0;960:10;2427:23;2419:68;;;;-1:-1:-1;;;2419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3205:22:0;::::1;3197:73;;;::::0;-1:-1:-1;;;3197:73:0;;9645:2:1;3197:73:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:36;9820:19;;3197:73:0::1;9443:402:1::0;3197:73:0::1;3281:28;3300:8;3281:18;:28::i;:::-;3116:201:::0;:::o;15281:380::-;-1:-1:-1;;;;;15417:19:0;;15409:68;;;;-1:-1:-1;;;15409:68:0;;10052:2:1;15409:68:0;;;10034:21:1;10091:2;10071:18;;;10064:30;10130:34;10110:18;;;10103:62;-1:-1:-1;;;10181:18:1;;;10174:34;10225:19;;15409:68:0;9850:400:1;15409:68:0;-1:-1:-1;;;;;15496:21:0;;15488:68;;;;-1:-1:-1;;;15488:68:0;;10457:2:1;15488:68:0;;;10439:21:1;10496:2;10476:18;;;10469:30;10535:34;10515:18;;;10508:62;-1:-1:-1;;;10586:18:1;;;10579:32;10628:19;;15488:68:0;10255:398:1;15488:68:0;-1:-1:-1;;;;;15569:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15621:32;;2254:25:1;;;15621:32:0;;2227:18:1;15621:32:0;;;;;;;15281:380;;;:::o;30951:3769::-;-1:-1:-1;;;;;31083:18:0;;31075:68;;;;-1:-1:-1;;;31075:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31162:16:0;;31154:64;;;;-1:-1:-1;;;31154:64:0;;;;;;;:::i;:::-;31292:11;;31252:52;;31277:12;31286:3;31277:6;:12;:::i;:::-;:26;;;;:::i;:::-;31262:9;;-1:-1:-1;;;;;31262:9:0;31252;:20;;;;;;;;;;;;:24;:52::i;:::-;31239:9;;-1:-1:-1;;;;;31239:9:0;31229;:20;;;;;;;;;;:75;31325:11;31321:93;;31353:28;31369:4;31375:2;31379:1;31353:15;:28::i;:::-;30951:3769;;;:::o;31321:93::-;31430:14;;;;31426:1430;;;2280:6;;-1:-1:-1;;;;;31483:15:0;;;2280:6;;31483:15;;;;:49;;-1:-1:-1;2280:6:0;;-1:-1:-1;;;;;31519:13:0;;;2280:6;;31519:13;;31483:49;:86;;;;-1:-1:-1;;;;;;31553:16:0;;;;31483:86;:128;;;;-1:-1:-1;;;;;;31590:21:0;;31604:6;31590:21;;31483:128;:158;;;;-1:-1:-1;31633:8:0;;-1:-1:-1;;;31633:8:0;;;;31632:9;31483:158;31461:1384;;;31681:13;;;;;;;31676:223;;-1:-1:-1;;;;;31753:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31782:23:0;;;;;;:19;:23;;;;;;;;31753:52;31719:160;;;;-1:-1:-1;;;31719:160:0;;11670:2:1;31719:160:0;;;11652:21:1;11709:2;11689:18;;;11682:30;-1:-1:-1;;;11728:18:1;;;11721:52;11790:18;;31719:160:0;11468:346:1;31719:160:0;32113:13;-1:-1:-1;;;;;32105:21:0;:4;-1:-1:-1;;;;;32105:21:0;;:82;;;;-1:-1:-1;;;;;;32152:35:0;;;;;;:31;:35;;;;;;;;32151:36;32105:82;32079:751;;;32274:20;;32264:6;:30;;32230:169;;;;-1:-1:-1;;;32230:169:0;;12021:2:1;32230:169:0;;;12003:21:1;12060:2;12040:18;;;12033:30;12099:34;12079:18;;;12072:62;-1:-1:-1;;;12150:18:1;;;12143:51;12211:19;;32230:169:0;11819:417:1;32230:169:0;32482:9;;-1:-1:-1;;;;;11014:18:0;;10987:7;11014:18;;;;;;;;;;;32456:22;;:6;:22;:::i;:::-;:35;;32422:140;;;;-1:-1:-1;;;32422:140:0;;12443:2:1;32422:140:0;;;12425:21:1;12482:2;12462:18;;;12455:30;-1:-1:-1;;;12501:18:1;;;12494:49;12560:18;;32422:140:0;12241:343:1;32422:140:0;32079:751;;;-1:-1:-1;;;;;32610:35:0;;;;;;:31;:35;;;;;;;;32605:225;;32730:9;;-1:-1:-1;;;;;11014:18:0;;10987:7;11014:18;;;;;;;;;;;32704:22;;:6;:22;:::i;:::-;:35;;32670:140;;;;-1:-1:-1;;;32670:140:0;;12443:2:1;32670:140:0;;;12425:21:1;12482:2;12462:18;;;12455:30;-1:-1:-1;;;12501:18:1;;;12494:49;12560:18;;32670:140:0;12241:343:1;32670:140:0;32917:4;32868:28;11014:18;;;;;;;;;;;32975;;32951:42;;;;;;;33024:35;;-1:-1:-1;33048:11:0;;;;;;;33024:35;:61;;;;-1:-1:-1;33077:8:0;;-1:-1:-1;;;33077:8:0;;;;33076:9;33024:61;:97;;;;;33108:13;-1:-1:-1;;;;;33102:19:0;:2;-1:-1:-1;;;;;33102:19:0;;33024:97;:140;;;;-1:-1:-1;;;;;;33139:25:0;;;;;;:19;:25;;;;;;;;33138:26;33024:140;:181;;;;-1:-1:-1;;;;;;33182:23:0;;;;;;:19;:23;;;;;;;;33181:24;33024:181;33006:313;;;33232:8;:15;;-1:-1:-1;;;;33232:15:0;-1:-1:-1;;;33232:15:0;;;33264:10;:8;:10::i;:::-;33291:8;:16;;-1:-1:-1;;;;33291:16:0;;;33006:313;33347:8;;-1:-1:-1;;;;;33457:25:0;;33331:12;33457:25;;;:19;:25;;;;;;33347:8;-1:-1:-1;;;33347:8:0;;;;;33346:9;;33457:25;;:52;;-1:-1:-1;;;;;;33486:23:0;;;;;;:19;:23;;;;;;;;33457:52;33453:100;;;-1:-1:-1;33536:5:0;33453:100;33565:12;33592:26;33633:20;33746:7;33742:925;;;33804:13;-1:-1:-1;;;;;33798:19:0;:2;-1:-1:-1;;;;;33798:19:0;;:40;;;;;33837:1;33821:13;;:17;33798:40;33794:583;;;33866:34;33896:3;33866:25;33877:13;;33866:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33859:41;;33968:13;;33948:16;;33941:4;:23;;;;:::i;:::-;33940:41;;;;:::i;:::-;33919:62;;34037:13;;34023:10;;34016:4;:17;;;;:::i;:::-;34015:35;;;;:::i;:::-;34000:50;;33794:583;;;34120:13;-1:-1:-1;;;;;34112:21:0;:4;-1:-1:-1;;;;;34112:21:0;;:41;;;;;34152:1;34137:12;;:16;34112:41;34108:269;;;34181:33;34210:3;34181:24;34192:12;;34181:6;:10;;:24;;;;:::i;:33::-;34174:40;;34281:12;;34262:15;;34255:4;:22;;;;:::i;:::-;34254:39;;;;:::i;:::-;34233:60;;34349:12;;34336:9;;34329:4;:16;;;;:::i;:::-;34328:33;;;;:::i;:::-;34313:48;;34108:269;34397:7;;34393:90;;34425:42;34441:4;34455;34462;34425:15;:42::i;:::-;34501:22;;34497:128;;34544:65;34568:4;34575:13;34590:18;34544:15;:65::i;:::-;34641:14;34651:4;34641:14;;:::i;:::-;;;33742:925;34679:33;34695:4;34701:2;34705:6;34679:15;:33::i;:::-;31064:3656;;;;;;30951:3769;;;:::o;3477:191::-;3570:6;;;-1:-1:-1;;;;;3587:17:0;;;-1:-1:-1;;;;;;3587:17:0;;;;;;;3620:40;;3570:6;;;3587:17;3570:6;;3620:40;;3551:16;;3620:40;3540:128;3477:191;:::o;19996:98::-;20054:7;20081:5;20085:1;20081;:5;:::i;:::-;20074:12;19996:98;-1:-1:-1;;;19996:98:0:o;13422:733::-;-1:-1:-1;;;;;13562:20:0;;13554:70;;;;-1:-1:-1;;;13554:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13643:23:0;;13635:71;;;;-1:-1:-1;;;13635:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13803:17:0;;13779:21;13803:17;;;;;;;;;;;13839:23;;;;13831:74;;;;-1:-1:-1;;;13831:74:0;;12921:2:1;13831:74:0;;;12903:21:1;12960:2;12940:18;;;12933:30;12999:34;12979:18;;;12972:62;-1:-1:-1;;;13050:18:1;;;13043:36;13096:19;;13831:74:0;12719:402:1;13831:74:0;-1:-1:-1;;;;;13941:17:0;;;:9;:17;;;;;;;;;;;13961:22;;;13941:42;;14005:20;;;;;;;;:30;;13977:6;;13941:9;14005:30;;13977:6;;14005:30;:::i;:::-;;;;;;;;14070:9;-1:-1:-1;;;;;14053:35:0;14062:6;-1:-1:-1;;;;;14053:35:0;;14081:6;14053:35;;;;2254:25:1;;2242:2;2227:18;;2108:177;14053:35:0;;;;;;;;13543:612;13422:733;;;:::o;35308:340::-;35391:4;35347:23;11014:18;;;;;;;;;;;;35408:59;;35449:7;35308:340::o;35408:59::-;35501:18;;:23;;35522:2;35501:23;:::i;:::-;35483:15;:41;35479:115;;;35559:18;;:23;;35580:2;35559:23;:::i;:::-;35541:41;;35479:115;35606:34;35624:15;35606:17;:34::i;20734:98::-;20792:7;20819:5;20823:1;20819;:5;:::i;21133:98::-;21191:7;21218:5;21222:1;21218;:5;:::i;34728:572::-;34879:16;;;34893:1;34879:16;;;;;;;;34855:21;;34879:16;;;;;;;;;;-1:-1:-1;34879:16:0;34855:40;;34924:4;34906;34911:1;34906:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34906:23:0;;;:7;;;;;;;;;:23;34950:4;;34940:7;;34950:4;;;34940;;34950;;34940:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;34940:14:0;;;-1:-1:-1;;;;;34940:14:0;;;;;34967:62;34984:4;34999:15;35017:11;34967:8;:62::i;:::-;35242:9;;35068:224;;-1:-1:-1;;;35068:224:0;;-1:-1:-1;;;;;35068:15:0;:69;;;;;:224;;35152:11;;35178:1;;35223:4;;35242:9;;;;;35266:15;;35068:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34784:516;34728:572;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:248::-;267:6;275;328:2;316:9;307:7;303:23;299:32;296:52;;;344:1;341;334:12;296:52;-1:-1:-1;;367:23:1;;;437:2;422:18;;;409:32;;-1:-1:-1;199:248:1:o;452:597::-;564:4;593:2;622;611:9;604:21;654:6;648:13;697:6;692:2;681:9;677:18;670:34;722:1;732:140;746:6;743:1;740:13;732:140;;;841:14;;;837:23;;831:30;807:17;;;826:2;803:26;796:66;761:10;;732:140;;;890:6;887:1;884:13;881:91;;;960:1;955:2;946:6;935:9;931:22;927:31;920:42;881:91;-1:-1:-1;1033:2:1;1012:15;-1:-1:-1;;1008:29:1;993:45;;;;1040:2;989:54;;452:597;-1:-1:-1;;;452:597:1:o;1054:173::-;1122:20;;-1:-1:-1;;;;;1171:31:1;;1161:42;;1151:70;;1217:1;1214;1207:12;1232:254;1300:6;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:52;;;1377:1;1374;1367:12;1329:52;1400:29;1419:9;1400:29;:::i;:::-;1390:39;1476:2;1461:18;;;;1448:32;;-1:-1:-1;;;1232:254:1:o;1683:186::-;1742:6;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1834:29;1853:9;1834:29;:::i;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;4236:127::-;4297:10;4292:3;4288:20;4285:1;4278:31;4328:4;4325:1;4318:15;4352:4;4349:1;4342:15;4368:422;4457:1;4500:5;4457:1;4514:270;4535:7;4525:8;4522:21;4514:270;;;4594:4;4590:1;4586:6;4582:17;4576:4;4573:27;4570:53;;;4603:18;;:::i;:::-;4653:7;4643:8;4639:22;4636:55;;;4673:16;;;;4636:55;4752:22;;;;4712:15;;;;4514:270;;;4518:3;4368:422;;;;;:::o;4795:806::-;4844:5;4874:8;4864:80;;-1:-1:-1;4915:1:1;4929:5;;4864:80;4963:4;4953:76;;-1:-1:-1;5000:1:1;5014:5;;4953:76;5045:4;5063:1;5058:59;;;;5131:1;5126:130;;;;5038:218;;5058:59;5088:1;5079:10;;5102:5;;;5126:130;5163:3;5153:8;5150:17;5147:43;;;5170:18;;:::i;:::-;-1:-1:-1;;5226:1:1;5212:16;;5241:5;;5038:218;;5340:2;5330:8;5327:16;5321:3;5315:4;5312:13;5308:36;5302:2;5292:8;5289:16;5284:2;5278:4;5275:12;5271:35;5268:77;5265:159;;;-1:-1:-1;5377:19:1;;;5409:5;;5265:159;5456:34;5481:8;5475:4;5456:34;:::i;:::-;5526:6;5522:1;5518:6;5514:19;5505:7;5502:32;5499:58;;;5537:18;;:::i;:::-;5575:20;;4795:806;-1:-1:-1;;;4795:806:1:o;5606:131::-;5666:5;5695:36;5722:8;5716:4;5695:36;:::i;5742:356::-;5944:2;5926:21;;;5963:18;;;5956:30;6022:34;6017:2;6002:18;;5995:62;6089:2;6074:18;;5742:356::o;6103:128::-;6143:3;6174:1;6170:6;6167:1;6164:13;6161:39;;;6180:18;;:::i;:::-;-1:-1:-1;6216:9:1;;6103:128::o;6594:380::-;6673:1;6669:12;;;;6716;;;6737:61;;6791:4;6783:6;6779:17;6769:27;;6737:61;6844:2;6836:6;6833:14;6813:18;6810:38;6807:161;;;6890:10;6885:3;6881:20;6878:1;6871:31;6925:4;6922:1;6915:15;6953:4;6950:1;6943:15;6807:161;;6594:380;;;:::o;6979:168::-;7019:7;7085:1;7081;7077:6;7073:14;7070:1;7067:21;7062:1;7055:9;7048:17;7044:45;7041:71;;;7092:18;;:::i;:::-;-1:-1:-1;7132:9:1;;6979:168::o;7152:217::-;7192:1;7218;7208:132;;7262:10;7257:3;7253:20;7250:1;7243:31;7297:4;7294:1;7287:15;7325:4;7322:1;7315:15;7208:132;-1:-1:-1;7354:9:1;;7152:217::o;10658:401::-;10860:2;10842:21;;;10899:2;10879:18;;;10872:30;10938:34;10933:2;10918:18;;10911:62;-1:-1:-1;;;11004:2:1;10989:18;;10982:35;11049:3;11034:19;;10658:401::o;11064:399::-;11266:2;11248:21;;;11305:2;11285:18;;;11278:30;11344:34;11339:2;11324:18;;11317:62;-1:-1:-1;;;11410:2:1;11395:18;;11388:33;11453:3;11438:19;;11064:399::o;12589:125::-;12629:4;12657:1;12654;12651:8;12648:34;;;12662:18;;:::i;:::-;-1:-1:-1;12699:9:1;;12589:125::o;13258:127::-;13319:10;13314:3;13310:20;13307:1;13300:31;13350:4;13347:1;13340:15;13374:4;13371:1;13364:15;13390:980;13652:4;13700:3;13689:9;13685:19;13731:6;13720:9;13713:25;13757:2;13795:6;13790:2;13779:9;13775:18;13768:34;13838:3;13833:2;13822:9;13818:18;13811:31;13862:6;13897;13891:13;13928:6;13920;13913:22;13966:3;13955:9;13951:19;13944:26;;14005:2;13997:6;13993:15;13979:29;;14026:1;14036:195;14050:6;14047:1;14044:13;14036:195;;;14115:13;;-1:-1:-1;;;;;14111:39:1;14099:52;;14206:15;;;;14171:12;;;;14147:1;14065:9;14036:195;;;-1:-1:-1;;;;;;;14287:32:1;;;;14282:2;14267:18;;14260:60;-1:-1:-1;;;14351:3:1;14336:19;14329:35;14248:3;13390:980;-1:-1:-1;;;13390:980:1:o

Swarm Source

ipfs://40e287a7da3c27b24e56d3cfb5dcbd6f3d4c16b4436d692e3ced88095aa1ae15
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.