ETH Price: $3,423.13 (-0.50%)
Gas: 2 Gwei

Token

Pepe Green Swap (PEPEG)
 

Overview

Max Total Supply

900,000,000 PEPEG

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,896,394.065577950877219143 PEPEG

Value
$0.00
0xcb31c8b2ce9d229b1968ceb2516b2eb650151227
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:
PEPEG

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-18
*/

/**

Telegram: https://t.me/pepegreenswap
Twitter: https://twitter.com/pepegreenswap/
Website: https://pepegreenswap.com/
Medium: https://medium.com/@PEPEG

*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function WETH() external pure returns (address);

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

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

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

    bool private swapping;

    address public projectWallet;

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

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

    uint256 public buyFee;
    uint256 public sellFee;

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

    // 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 projectWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Pepe Green Swap", "PEPEG") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyFee = 3;
        uint256 _sellFee = 3;

        uint256 totalSupply = 900_000_000 * 1e18;

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

        buyFee = _buyFee;
        sellFee = _sellFee;

        projectWallet = address(0xe29Bff6D57ea2c65Ecbd5A0E1Ce9A4828F0CE182); // set as project wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(projectWallet, 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;
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

    function updateFees(
        uint256 _buyFee,
        uint256 _sellFee
    ) external onlyOwner {
        buyFee = _buyFee;
        sellFee = _sellFee;
        require(buyFee.div(2) <= 15, "Buy tax too high");
        require(sellFee.div(2) <= 15, "Sell tax too high");
    }

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

    function updateProjectWallet(address newProjectWallet)
        external
        onlyOwner
    {
        emit projectWalletUpdated(newProjectWallet, projectWallet);
        projectWallet = newProjectWallet;
    }

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !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;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellFee > 0) {
                fees = amount.mul(sellFee).div(100);
            }
            // on buy
            else if (from == uniswapV2Pair && buyFee > 0) {
                fees = amount.mul(buyFee).div(100);
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForETH(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":"projectWalletUpdated","type":"event"},{"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":"buyFee","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":"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":"projectWallet","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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","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":"address","name":"newProjectWallet","type":"address"}],"name":"updateProjectWallet","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"}]

60c0604052600a805461ffff191660011790553480156200001f57600080fd5b506040518060400160405280600f81526020016e05065706520477265656e205377617608c1b81525060405180604001604052806005815260200164504550454760d81b81525081600390816200007791906200069a565b5060046200008682826200069a565b505050620000a36200009d6200039260201b60201c565b62000396565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c5816001620003e8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000110573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000136919062000766565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000184573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001aa919062000766565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021e919062000766565b6001600160a01b031660a081905262000239906001620003e8565b6003806b02e87669c308736a04000000606462000258826002620007ae565b620002649190620007ce565b600755606462000276826002620007ae565b620002829190620007ce565b60095561271062000295826004620007ae565b620002a19190620007ce565b600855600b839055600c829055600680546001600160a01b03191673e29bff6d57ea2c65ecbd5a0e1ce9a4828f0ce182179055620002f3620002eb6005546001600160a01b031690565b600162000462565b6006546200030c906001600160a01b0316600162000462565b6200031930600162000462565b6200032861dead600162000462565b620003476200033f6005546001600160a01b031690565b6001620003e8565b60065462000360906001600160a01b03166001620003e8565b6200036d306001620003e8565b6200037c61dead6001620003e8565b6200038833826200050c565b5050505062000807565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004375760405162461bcd60e51b815260206004820181905260248201526000805160206200254c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004ad5760405162461bcd60e51b815260206004820181905260248201526000805160206200254c83398151915260448201526064016200042e565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005645760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200042e565b8060026000828254620005789190620007f1565b90915550506001600160a01b03821660009081526020819052604081208054839290620005a7908490620007f1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200062157607f821691505b6020821081036200064257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005f157600081815260208120601f850160051c81016020861015620006715750805b601f850160051c820191505b8181101562000692578281556001016200067d565b505050505050565b81516001600160401b03811115620006b657620006b6620005f6565b620006ce81620006c784546200060c565b8462000648565b602080601f831160018114620007065760008415620006ed5750858301515b600019600386901b1c1916600185901b17855562000692565b600085815260208120601f198616915b82811015620007375788860151825594840194600190910190840162000716565b5085821015620007565787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200077957600080fd5b81516001600160a01b03811681146200079157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007c857620007c862000798565b92915050565b600082620007ec57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007c857620007c862000798565b60805160a051611cee6200085e600039600081816103b10152818161112f0152818161132c0152818161143901526114a80152600081816102a6015281816117a40152818161185d015261189c0152611cee6000f3fe6080604052600436106101fd5760003560e01c8063719276281161010d578063beb08ab9116100a0578063d257b34f1161006f578063d257b34f146105e3578063dd62ed3e14610603578063e2f4560514610649578063f2fde38b1461065f578063f8b45b051461067f57600080fd5b8063beb08ab91461056d578063c02466681461058d578063c18bc195146105ad578063c8c8ebe4146105cd57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104fb57806395d89b4114610519578063a9059cbb1461052e578063bbc0c7421461054e57600080fd5b80637192762814610491578063751039fc146104b15780637571336a146104c65780638a8c523c146104e657600080fd5b80632b14ca56116101905780634a62bb651161015f5780634a62bb65146103d35780634fbee193146103ed5780636db794371461042657806370a0823114610446578063715018a61461047c57600080fd5b80632b14ca5614610357578063313ce5671461036d578063470624021461038957806349bd5a5e1461039f57600080fd5b806318160ddd116101cc57806318160ddd146102e0578063203e727e146102ff57806323b872dd1461032157806327c8f8351461034157600080fd5b806306fdde0314610209578063095ea7b31461023457806310d5de53146102645780631694505e1461029457600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610695565b60405161022b9190611914565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611977565b610727565b604051901515815260200161022b565b34801561027057600080fd5b5061025461027f3660046119a3565b600e6020526000908152604090205460ff1681565b3480156102a057600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161022b565b3480156102ec57600080fd5b506002545b60405190815260200161022b565b34801561030b57600080fd5b5061031f61031a3660046119c0565b61073e565b005b34801561032d57600080fd5b5061025461033c3660046119d9565b610824565b34801561034d57600080fd5b506102c861dead81565b34801561036357600080fd5b506102f1600c5481565b34801561037957600080fd5b506040516012815260200161022b565b34801561039557600080fd5b506102f1600b5481565b3480156103ab57600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000000081565b3480156103df57600080fd5b50600a546102549060ff1681565b3480156103f957600080fd5b506102546104083660046119a3565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561043257600080fd5b5061031f610441366004611a1a565b6108ce565b34801561045257600080fd5b506102f16104613660046119a3565b6001600160a01b031660009081526020819052604090205490565b34801561048857600080fd5b5061031f6109a7565b34801561049d57600080fd5b5061031f6104ac3660046119a3565b6109dd565b3480156104bd57600080fd5b50610254610a64565b3480156104d257600080fd5b5061031f6104e1366004611a3c565b610aa1565b3480156104f257600080fd5b5061031f610af6565b34801561050757600080fd5b506005546001600160a01b03166102c8565b34801561052557600080fd5b5061021e610b31565b34801561053a57600080fd5b50610254610549366004611977565b610b40565b34801561055a57600080fd5b50600a5461025490610100900460ff1681565b34801561057957600080fd5b506006546102c8906001600160a01b031681565b34801561059957600080fd5b5061031f6105a8366004611a3c565b610b4d565b3480156105b957600080fd5b5061031f6105c83660046119c0565b610bd6565b3480156105d957600080fd5b506102f160075481565b3480156105ef57600080fd5b506102546105fe3660046119c0565b610ca7565b34801561060f57600080fd5b506102f161061e366004611a7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561065557600080fd5b506102f160085481565b34801561066b57600080fd5b5061031f61067a3660046119a3565b610df9565b34801561068b57600080fd5b506102f160095481565b6060600380546106a490611aa8565b80601f01602080910402602001604051908101604052809291908181526020018280546106d090611aa8565b801561071d5780601f106106f25761010080835404028352916020019161071d565b820191906000526020600020905b81548152906001019060200180831161070057829003601f168201915b5050505050905090565b6000610734338484610e94565b5060015b92915050565b6005546001600160a01b031633146107715760405162461bcd60e51b815260040161076890611ae2565b60405180910390fd5b670de0b6b3a76400006103e861078660025490565b610791906001611b2d565b61079b9190611b44565b6107a59190611b44565b81101561080c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610768565b61081e81670de0b6b3a7640000611b2d565b60075550565b6000610831848484610fb8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108b65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610768565b6108c38533858403610e94565b506001949350505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260040161076890611ae2565b600b829055600c819055600f61090f83600261153d565b11156109505760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b6044820152606401610768565b600c54600f9061096190600261153d565b11156109a35760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610768565b5050565b6005546001600160a01b031633146109d15760405162461bcd60e51b815260040161076890611ae2565b6109db6000611550565b565b6005546001600160a01b03163314610a075760405162461bcd60e51b815260040161076890611ae2565b6006546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db7271190600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610a915760405162461bcd60e51b815260040161076890611ae2565b50600a805460ff19169055600190565b6005546001600160a01b03163314610acb5760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b205760405162461bcd60e51b815260040161076890611ae2565b600a805461ff001916610100179055565b6060600480546106a490611aa8565b6000610734338484610fb8565b6005546001600160a01b03163314610b775760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c005760405162461bcd60e51b815260040161076890611ae2565b670de0b6b3a76400006103e8610c1560025490565b610c20906005611b2d565b610c2a9190611b44565b610c349190611b44565b811015610c8f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610768565b610ca181670de0b6b3a7640000611b2d565b60095550565b6005546000906001600160a01b03163314610cd45760405162461bcd60e51b815260040161076890611ae2565b620186a0610ce160025490565b610cec906001611b2d565b610cf69190611b44565b821015610d635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610768565b6103e8610d6f60025490565b610d7a906005611b2d565b610d849190611b44565b821115610df05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610768565b50600855600190565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610768565b610e9181611550565b50565b6001600160a01b038316610ef65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610768565b6001600160a01b038216610f575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610768565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610fde5760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166110045760405162461bcd60e51b815260040161076890611bab565b8060000361101d57611018838360006115a2565b505050565b600a5460ff16156112f5576005546001600160a01b0384811691161480159061105457506005546001600160a01b03838116911614155b801561106857506001600160a01b03821615155b801561107f57506001600160a01b03821661dead14155b80156110955750600554600160a01b900460ff16155b156112f557600a54610100900460ff1661112d576001600160a01b0383166000908152600d602052604090205460ff16806110e857506001600160a01b0382166000908152600d602052604090205460ff165b61112d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610768565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561118757506001600160a01b0382166000908152600e602052604090205460ff16155b1561126b576007548111156111fc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610768565b6009546001600160a01b0383166000908152602081905260409020546112229083611bee565b11156112665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b6112f5565b6001600160a01b0382166000908152600e602052604090205460ff166112f5576009546001600160a01b0383166000908152602081905260409020546112b19083611bee565b11156112f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b30600090815260208190526040902054600854811080159081906113235750600554600160a01b900460ff16155b801561136057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561138557506001600160a01b0385166000908152600d602052604090205460ff16155b80156113aa57506001600160a01b0384166000908152600d602052604090205460ff16155b156113d8576005805460ff60a01b1916600160a01b1790556113ca6116f7565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600d602052604090205460ff600160a01b90920482161591168061142657506001600160a01b0385166000908152600d602052604090205460ff165b1561142f575060005b60008115611529577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561147a57506000600c54115b156114a65761149f6064611499600c548861174190919063ffffffff16565b9061153d565b905061150b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156114e957506000600b54115b1561150b576115086064611499600b548861174190919063ffffffff16565b90505b801561151c5761151c8730836115a2565b6115268186611c01565b94505b6115348787876115a2565b50505050505050565b60006115498284611b44565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115c85760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166115ee5760405162461bcd60e51b815260040161076890611bab565b6001600160a01b038316600090815260208190526040902054818110156116665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610768565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061169d908490611bee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116e991815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036117125750565b600854611720906014611b2d565b81111561173857600854611735906014611b2d565b90505b610e918161174d565b60006115498284611b2d565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061178257611782611c14565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190611c2a565b8160018151811061183757611837611c14565b60200260200101906001600160a01b031690816001600160a01b031681525050611882307f000000000000000000000000000000000000000000000000000000000000000084610e94565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926118de928792600092889291909116904290600401611c47565b600060405180830381600087803b1580156118f857600080fd5b505af115801561190c573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561194157858101830151858201604001528201611925565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e9157600080fd5b6000806040838503121561198a57600080fd5b823561199581611962565b946020939093013593505050565b6000602082840312156119b557600080fd5b813561154981611962565b6000602082840312156119d257600080fd5b5035919050565b6000806000606084860312156119ee57600080fd5b83356119f981611962565b92506020840135611a0981611962565b929592945050506040919091013590565b60008060408385031215611a2d57600080fd5b50508035926020909101359150565b60008060408385031215611a4f57600080fd5b8235611a5a81611962565b915060208301358015158114611a6f57600080fd5b809150509250929050565b60008060408385031215611a8d57600080fd5b8235611a9881611962565b91506020830135611a6f81611962565b600181811c90821680611abc57607f821691505b602082108103611adc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761073857610738611b17565b600082611b6157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561073857610738611b17565b8181038181111561073857610738611b17565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c3c57600080fd5b815161154981611962565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c975784516001600160a01b031683529383019391830191600101611c72565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fe590486e10f0dad072f950d295cc34fa55ce3d0a374e1f6c8650edcb7c2bef664736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063719276281161010d578063beb08ab9116100a0578063d257b34f1161006f578063d257b34f146105e3578063dd62ed3e14610603578063e2f4560514610649578063f2fde38b1461065f578063f8b45b051461067f57600080fd5b8063beb08ab91461056d578063c02466681461058d578063c18bc195146105ad578063c8c8ebe4146105cd57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104fb57806395d89b4114610519578063a9059cbb1461052e578063bbc0c7421461054e57600080fd5b80637192762814610491578063751039fc146104b15780637571336a146104c65780638a8c523c146104e657600080fd5b80632b14ca56116101905780634a62bb651161015f5780634a62bb65146103d35780634fbee193146103ed5780636db794371461042657806370a0823114610446578063715018a61461047c57600080fd5b80632b14ca5614610357578063313ce5671461036d578063470624021461038957806349bd5a5e1461039f57600080fd5b806318160ddd116101cc57806318160ddd146102e0578063203e727e146102ff57806323b872dd1461032157806327c8f8351461034157600080fd5b806306fdde0314610209578063095ea7b31461023457806310d5de53146102645780631694505e1461029457600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610695565b60405161022b9190611914565b60405180910390f35b34801561024057600080fd5b5061025461024f366004611977565b610727565b604051901515815260200161022b565b34801561027057600080fd5b5061025461027f3660046119a3565b600e6020526000908152604090205460ff1681565b3480156102a057600080fd5b506102c87f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161022b565b3480156102ec57600080fd5b506002545b60405190815260200161022b565b34801561030b57600080fd5b5061031f61031a3660046119c0565b61073e565b005b34801561032d57600080fd5b5061025461033c3660046119d9565b610824565b34801561034d57600080fd5b506102c861dead81565b34801561036357600080fd5b506102f1600c5481565b34801561037957600080fd5b506040516012815260200161022b565b34801561039557600080fd5b506102f1600b5481565b3480156103ab57600080fd5b506102c87f0000000000000000000000002477f5705f087f64393657b7069272d84126e47281565b3480156103df57600080fd5b50600a546102549060ff1681565b3480156103f957600080fd5b506102546104083660046119a3565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561043257600080fd5b5061031f610441366004611a1a565b6108ce565b34801561045257600080fd5b506102f16104613660046119a3565b6001600160a01b031660009081526020819052604090205490565b34801561048857600080fd5b5061031f6109a7565b34801561049d57600080fd5b5061031f6104ac3660046119a3565b6109dd565b3480156104bd57600080fd5b50610254610a64565b3480156104d257600080fd5b5061031f6104e1366004611a3c565b610aa1565b3480156104f257600080fd5b5061031f610af6565b34801561050757600080fd5b506005546001600160a01b03166102c8565b34801561052557600080fd5b5061021e610b31565b34801561053a57600080fd5b50610254610549366004611977565b610b40565b34801561055a57600080fd5b50600a5461025490610100900460ff1681565b34801561057957600080fd5b506006546102c8906001600160a01b031681565b34801561059957600080fd5b5061031f6105a8366004611a3c565b610b4d565b3480156105b957600080fd5b5061031f6105c83660046119c0565b610bd6565b3480156105d957600080fd5b506102f160075481565b3480156105ef57600080fd5b506102546105fe3660046119c0565b610ca7565b34801561060f57600080fd5b506102f161061e366004611a7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561065557600080fd5b506102f160085481565b34801561066b57600080fd5b5061031f61067a3660046119a3565b610df9565b34801561068b57600080fd5b506102f160095481565b6060600380546106a490611aa8565b80601f01602080910402602001604051908101604052809291908181526020018280546106d090611aa8565b801561071d5780601f106106f25761010080835404028352916020019161071d565b820191906000526020600020905b81548152906001019060200180831161070057829003601f168201915b5050505050905090565b6000610734338484610e94565b5060015b92915050565b6005546001600160a01b031633146107715760405162461bcd60e51b815260040161076890611ae2565b60405180910390fd5b670de0b6b3a76400006103e861078660025490565b610791906001611b2d565b61079b9190611b44565b6107a59190611b44565b81101561080c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610768565b61081e81670de0b6b3a7640000611b2d565b60075550565b6000610831848484610fb8565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108b65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610768565b6108c38533858403610e94565b506001949350505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260040161076890611ae2565b600b829055600c819055600f61090f83600261153d565b11156109505760405162461bcd60e51b815260206004820152601060248201526f084eaf240e8c2f040e8dede40d0d2ced60831b6044820152606401610768565b600c54600f9061096190600261153d565b11156109a35760405162461bcd60e51b81526020600482015260116024820152700a6cad8d840e8c2f040e8dede40d0d2ced607b1b6044820152606401610768565b5050565b6005546001600160a01b031633146109d15760405162461bcd60e51b815260040161076890611ae2565b6109db6000611550565b565b6005546001600160a01b03163314610a075760405162461bcd60e51b815260040161076890611ae2565b6006546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db7271190600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b03163314610a915760405162461bcd60e51b815260040161076890611ae2565b50600a805460ff19169055600190565b6005546001600160a01b03163314610acb5760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b205760405162461bcd60e51b815260040161076890611ae2565b600a805461ff001916610100179055565b6060600480546106a490611aa8565b6000610734338484610fb8565b6005546001600160a01b03163314610b775760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610c005760405162461bcd60e51b815260040161076890611ae2565b670de0b6b3a76400006103e8610c1560025490565b610c20906005611b2d565b610c2a9190611b44565b610c349190611b44565b811015610c8f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610768565b610ca181670de0b6b3a7640000611b2d565b60095550565b6005546000906001600160a01b03163314610cd45760405162461bcd60e51b815260040161076890611ae2565b620186a0610ce160025490565b610cec906001611b2d565b610cf69190611b44565b821015610d635760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610768565b6103e8610d6f60025490565b610d7a906005611b2d565b610d849190611b44565b821115610df05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610768565b50600855600190565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161076890611ae2565b6001600160a01b038116610e885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610768565b610e9181611550565b50565b6001600160a01b038316610ef65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610768565b6001600160a01b038216610f575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610768565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610fde5760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166110045760405162461bcd60e51b815260040161076890611bab565b8060000361101d57611018838360006115a2565b505050565b600a5460ff16156112f5576005546001600160a01b0384811691161480159061105457506005546001600160a01b03838116911614155b801561106857506001600160a01b03821615155b801561107f57506001600160a01b03821661dead14155b80156110955750600554600160a01b900460ff16155b156112f557600a54610100900460ff1661112d576001600160a01b0383166000908152600d602052604090205460ff16806110e857506001600160a01b0382166000908152600d602052604090205460ff165b61112d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610768565b7f0000000000000000000000002477f5705f087f64393657b7069272d84126e4726001600160a01b0316836001600160a01b031614801561118757506001600160a01b0382166000908152600e602052604090205460ff16155b1561126b576007548111156111fc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610768565b6009546001600160a01b0383166000908152602081905260409020546112229083611bee565b11156112665760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b6112f5565b6001600160a01b0382166000908152600e602052604090205460ff166112f5576009546001600160a01b0383166000908152602081905260409020546112b19083611bee565b11156112f55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610768565b30600090815260208190526040902054600854811080159081906113235750600554600160a01b900460ff16155b801561136057507f0000000000000000000000002477f5705f087f64393657b7069272d84126e4726001600160a01b0316846001600160a01b0316145b801561138557506001600160a01b0385166000908152600d602052604090205460ff16155b80156113aa57506001600160a01b0384166000908152600d602052604090205460ff16155b156113d8576005805460ff60a01b1916600160a01b1790556113ca6116f7565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152600d602052604090205460ff600160a01b90920482161591168061142657506001600160a01b0385166000908152600d602052604090205460ff165b1561142f575060005b60008115611529577f0000000000000000000000002477f5705f087f64393657b7069272d84126e4726001600160a01b0316866001600160a01b031614801561147a57506000600c54115b156114a65761149f6064611499600c548861174190919063ffffffff16565b9061153d565b905061150b565b7f0000000000000000000000002477f5705f087f64393657b7069272d84126e4726001600160a01b0316876001600160a01b03161480156114e957506000600b54115b1561150b576115086064611499600b548861174190919063ffffffff16565b90505b801561151c5761151c8730836115a2565b6115268186611c01565b94505b6115348787876115a2565b50505050505050565b60006115498284611b44565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115c85760405162461bcd60e51b815260040161076890611b66565b6001600160a01b0382166115ee5760405162461bcd60e51b815260040161076890611bab565b6001600160a01b038316600090815260208190526040902054818110156116665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610768565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061169d908490611bee565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116e991815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036117125750565b600854611720906014611b2d565b81111561173857600854611735906014611b2d565b90505b610e918161174d565b60006115498284611b2d565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061178257611782611c14565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118249190611c2a565b8160018151811061183757611837611c14565b60200260200101906001600160a01b031690816001600160a01b031681525050611882307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e94565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926118de928792600092889291909116904290600401611c47565b600060405180830381600087803b1580156118f857600080fd5b505af115801561190c573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561194157858101830151858201604001528201611925565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e9157600080fd5b6000806040838503121561198a57600080fd5b823561199581611962565b946020939093013593505050565b6000602082840312156119b557600080fd5b813561154981611962565b6000602082840312156119d257600080fd5b5035919050565b6000806000606084860312156119ee57600080fd5b83356119f981611962565b92506020840135611a0981611962565b929592945050506040919091013590565b60008060408385031215611a2d57600080fd5b50508035926020909101359150565b60008060408385031215611a4f57600080fd5b8235611a5a81611962565b915060208301358015158114611a6f57600080fd5b809150509250929050565b60008060408385031215611a8d57600080fd5b8235611a9881611962565b91506020830135611a6f81611962565b600181811c90821680611abc57607f821691505b602082108103611adc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761073857610738611b17565b600082611b6157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082018082111561073857610738611b17565b8181038181111561073857610738611b17565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c3c57600080fd5b815161154981611962565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c975784516001600160a01b031683529383019391830191600101611c72565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fe590486e10f0dad072f950d295cc34fa55ce3d0a374e1f6c8650edcb7c2bef664736f6c63430008130033

Deployed Bytecode Sourcemap

24898:9106:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9701:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11868:169;;;;;;;;;;-1:-1:-1;11868:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11868:169:0;1023:187:1;25601:63:0;;;;;;;;;;-1:-1:-1;25601:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24973:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;24973:51:0;1467:229:1;10821:108:0;;;;;;;;;;-1:-1:-1;10909:12:0;;10821:108;;;1847:25:1;;;1835:2;1820:18;10821:108:0;1701:177:1;28512:275:0;;;;;;;;;;-1:-1:-1;28512:275:0;;;;;:::i;:::-;;:::i;:::-;;12519:492;;;;;;;;;;-1:-1:-1;12519:492:0;;;;;:::i;:::-;;:::i;25076:53::-;;;;;;;;;;;;25122:6;25076:53;;25430:22;;;;;;;;;;;;;;;;10663:93;;;;;;;;;;-1:-1:-1;10663:93:0;;10746:2;2879:36:1;;2867:2;2852:18;10663:93:0;2737:184:1;25402:21:0;;;;;;;;;;;;;;;;25031:38;;;;;;;;;;;;;;;25320:33;;;;;;;;;;-1:-1:-1;25320:33:0;;;;;;;;29940:126;;;;;;;;;;-1:-1:-1;29940:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30030:28:0;30006:4;30030:28;;;:19;:28;;;;;;;;;29940:126;29234:283;;;;;;;;;;-1:-1:-1;29234:283:0;;;;;:::i;:::-;;:::i;10992:127::-;;;;;;;;;;-1:-1:-1;10992:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11093:18:0;11066:7;11093:18;;;;;;;;;;;;10992:127;2936:103;;;;;;;;;;;;;:::i;29715:217::-;;;;;;;;;;-1:-1:-1;29715:217:0;;;;;:::i;:::-;;:::i;27816:121::-;;;;;;;;;;;;;:::i;29059:167::-;;;;;;;;;;-1:-1:-1;29059:167:0;;;;;:::i;:::-;;:::i;27681:83::-;;;;;;;;;;;;;:::i;2285:87::-;;;;;;;;;;-1:-1:-1;2358:6:0;;-1:-1:-1;;;;;2358:6:0;2285:87;;9920:104;;;;;;;;;;;;;:::i;11332:175::-;;;;;;;;;;-1:-1:-1;11332:175:0;;;;;:::i;:::-;;:::i;25360:33::-;;;;;;;;;;-1:-1:-1;25360:33:0;;;;;;;;;;;25168:28;;;;;;;;;;-1:-1:-1;25168:28:0;;;;-1:-1:-1;;;;;25168:28:0;;;29525:182;;;;;;;;;;-1:-1:-1;29525:182:0;;;;;:::i;:::-;;:::i;28795:256::-;;;;;;;;;;-1:-1:-1;28795:256:0;;;;;:::i;:::-;;:::i;25205:35::-;;;;;;;;;;;;;;;;28007:497;;;;;;;;;;-1:-1:-1;28007:497:0;;;;;:::i;:::-;;:::i;11570:151::-;;;;;;;;;;-1:-1:-1;11570:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11686:18:0;;;11659:7;11686:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11570:151;25247:33;;;;;;;;;;;;;;;;3194:201;;;;;;;;;;-1:-1:-1;3194:201:0;;;;;:::i;:::-;;:::i;25287:24::-;;;;;;;;;;;;;;;;9701:100;9755:13;9788:5;9781:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9701:100;:::o;11868:169::-;11951:4;11968:39;1038:10;11991:7;12000:6;11968:8;:39::i;:::-;-1:-1:-1;12025:4:0;11868:169;;;;;:::o;28512:275::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;;;;;;;;;28649:4:::1;28641;28620:13;10909:12:::0;;;10821:108;28620:13:::1;:17;::::0;28636:1:::1;28620:17;:::i;:::-;28619:26;;;;:::i;:::-;28618:35;;;;:::i;:::-;28608:6;:45;;28586:142;;;::::0;-1:-1:-1;;;28586:142:0;;5468:2:1;28586:142:0::1;::::0;::::1;5450:21:1::0;5507:2;5487:18;;;5480:30;5546:34;5526:18;;;5519:62;-1:-1:-1;;;5597:18:1;;;5590:45;5652:19;;28586:142:0::1;5266:411:1::0;28586:142:0::1;28762:17;:6:::0;28772::::1;28762:17;:::i;:::-;28739:20;:40:::0;-1:-1:-1;28512:275:0:o;12519:492::-;12659:4;12676:36;12686:6;12694:9;12705:6;12676:9;:36::i;:::-;-1:-1:-1;;;;;12752:19:0;;12725:24;12752:19;;;:11;:19;;;;;;;;1038:10;12752:33;;;;;;;;12804:26;;;;12796:79;;;;-1:-1:-1;;;12796:79:0;;5884:2:1;12796:79:0;;;5866:21:1;5923:2;5903:18;;;5896:30;5962:34;5942:18;;;5935:62;-1:-1:-1;;;6013:18:1;;;6006:38;6061:19;;12796:79:0;5682:404:1;12796:79:0;12911:57;12920:6;1038:10;12961:6;12942:16;:25;12911:8;:57::i;:::-;-1:-1:-1;12999:4:0;;12519:492;-1:-1:-1;;;;12519:492:0:o;29234:283::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;29344:6:::1;:16:::0;;;29371:7:::1;:18:::0;;;29425:2:::1;29408:13;29353:7:::0;29419:1:::1;29408:10;:13::i;:::-;:19;;29400:48;;;::::0;-1:-1:-1;;;29400:48:0;;6293:2:1;29400:48:0::1;::::0;::::1;6275:21:1::0;6332:2;6312:18;;;6305:30;-1:-1:-1;;;6351:18:1;;;6344:46;6407:18;;29400:48:0::1;6091:340:1::0;29400:48:0::1;29467:7;::::0;29485:2:::1;::::0;29467:14:::1;::::0;29479:1:::1;29467:11;:14::i;:::-;:20;;29459:50;;;::::0;-1:-1:-1;;;29459:50:0;;6638:2:1;29459:50:0::1;::::0;::::1;6620:21:1::0;6677:2;6657:18;;;6650:30;-1:-1:-1;;;6696:18:1;;;6689:47;6753:18;;29459:50:0::1;6436:341:1::0;29459:50:0::1;29234:283:::0;;:::o;2936:103::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;3001:30:::1;3028:1;3001:18;:30::i;:::-;2936:103::o:0;29715:217::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;29867:13:::1;::::0;29828:53:::1;::::0;-1:-1:-1;;;;;29867:13:0;;::::1;::::0;29828:53;::::1;::::0;::::1;::::0;29867:13:::1;::::0;29828:53:::1;29892:13;:32:::0;;-1:-1:-1;;;;;;29892:32:0::1;-1:-1:-1::0;;;;;29892:32:0;;;::::1;::::0;;;::::1;::::0;;29715:217::o;27816:121::-;2358:6;;27868:4;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;-1:-1:-1;27885:14:0::1;:22:::0;;-1:-1:-1;;27885:22:0::1;::::0;;;27816:121;:::o;29059:167::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29172:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29172:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29059:167::o;27681:83::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;27736:13:::1;:20:::0;;-1:-1:-1;;27736:20:0::1;;;::::0;;27681:83::o;9920:104::-;9976:13;10009:7;10002:14;;;;;:::i;11332:175::-;11418:4;11435:42;1038:10;11459:9;11470:6;11435:9;:42::i;29525:182::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29610:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29610:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29665:34;;1163:41:1;;;29665:34:0::1;::::0;1136:18:1;29665:34:0::1;;;;;;;29525:182:::0;;:::o;28795:256::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;28935:4:::1;28927;28906:13;10909:12:::0;;;10821:108;28906:13:::1;:17;::::0;28922:1:::1;28906:17;:::i;:::-;28905:26;;;;:::i;:::-;28904:35;;;;:::i;:::-;28894:6;:45;;28872:131;;;::::0;-1:-1:-1;;;28872:131:0;;6984:2:1;28872:131:0::1;::::0;::::1;6966:21:1::0;7023:2;7003:18;;;6996:30;7062:34;7042:18;;;7035:62;-1:-1:-1;;;7113:18:1;;;7106:34;7157:19;;28872:131:0::1;6782:400:1::0;28872:131:0::1;29026:17;:6:::0;29036::::1;29026:17;:::i;:::-;29014:9;:29:::0;-1:-1:-1;28795:256:0:o;28007:497::-;2358:6;;28115:4;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;28194:6:::1;28173:13;10909:12:::0;;;10821:108;28173:13:::1;:17;::::0;28189:1:::1;28173:17;:::i;:::-;28172:28;;;;:::i;:::-;28159:9;:41;;28137:144;;;::::0;-1:-1:-1;;;28137:144:0;;7389:2:1;28137:144:0::1;::::0;::::1;7371:21:1::0;7428:2;7408:18;;;7401:30;7467:34;7447:18;;;7440:62;-1:-1:-1;;;7518:18:1;;;7511:51;7579:19;;28137:144:0::1;7187:417:1::0;28137:144:0::1;28349:4;28328:13;10909:12:::0;;;10821:108;28328:13:::1;:17;::::0;28344:1:::1;28328:17;:::i;:::-;28327:26;;;;:::i;:::-;28314:9;:39;;28292:141;;;::::0;-1:-1:-1;;;28292:141:0;;7811:2:1;28292:141:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:34;7869:18;;;7862:62;-1:-1:-1;;;7940:18:1;;;7933:50;8000:19;;28292:141:0::1;7609:416:1::0;28292:141:0::1;-1:-1:-1::0;28444:18:0::1;:30:::0;28492:4:::1;::::0;28007:497::o;3194:201::-;2358:6;;-1:-1:-1;;;;;2358:6:0;1038:10;2505:23;2497:68;;;;-1:-1:-1;;;2497:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3283:22:0;::::1;3275:73;;;::::0;-1:-1:-1;;;3275:73:0;;8232:2:1;3275:73:0::1;::::0;::::1;8214:21:1::0;8271:2;8251:18;;;8244:30;8310:34;8290:18;;;8283:62;-1:-1:-1;;;8361:18:1;;;8354:36;8407:19;;3275:73:0::1;8030:402:1::0;3275:73:0::1;3359:28;3378:8;3359:18;:28::i;:::-;3194:201:::0;:::o;15360:380::-;-1:-1:-1;;;;;15496:19:0;;15488:68;;;;-1:-1:-1;;;15488:68:0;;8639:2:1;15488:68:0;;;8621:21:1;8678:2;8658:18;;;8651:30;8717:34;8697:18;;;8690:62;-1:-1:-1;;;8768:18:1;;;8761:34;8812:19;;15488:68:0;8437:400:1;15488:68:0;-1:-1:-1;;;;;15575:21:0;;15567:68;;;;-1:-1:-1;;;15567:68:0;;9044:2:1;15567:68:0;;;9026:21:1;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;-1:-1:-1;;;9173:18:1;;;9166:32;9215:19;;15567:68:0;8842:398:1;15567:68:0;-1:-1:-1;;;;;15648:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15700:32;;1847:25:1;;;15700:32:0;;1820:18:1;15700:32:0;;;;;;;15360:380;;;:::o;30074:2981::-;-1:-1:-1;;;;;30206:18:0;;30198:68;;;;-1:-1:-1;;;30198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30285:16:0;;30277:64;;;;-1:-1:-1;;;30277:64:0;;;;;;;:::i;:::-;30358:6;30368:1;30358:11;30354:93;;30386:28;30402:4;30408:2;30412:1;30386:15;:28::i;:::-;30074:2981;;;:::o;30354:93::-;30463:14;;;;30459:1298;;;2358:6;;-1:-1:-1;;;;;30516:15:0;;;2358:6;;30516:15;;;;:49;;-1:-1:-1;2358:6:0;;-1:-1:-1;;;;;30552:13:0;;;2358:6;;30552:13;;30516:49;:86;;;;-1:-1:-1;;;;;;30586:16:0;;;;30516:86;:128;;;;-1:-1:-1;;;;;;30623:21:0;;30637:6;30623:21;;30516:128;:158;;;;-1:-1:-1;30666:8:0;;-1:-1:-1;;;30666:8:0;;;;30665:9;30516:158;30494:1252;;;30714:13;;;;;;;30709:223;;-1:-1:-1;;;;;30786:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30815:23:0;;;;;;:19;:23;;;;;;;;30786:52;30752:160;;;;-1:-1:-1;;;30752:160:0;;10257:2:1;30752:160:0;;;10239:21:1;10296:2;10276:18;;;10269:30;-1:-1:-1;;;10315:18:1;;;10308:52;10377:18;;30752:160:0;10055:346:1;30752:160:0;31014:13;-1:-1:-1;;;;;31006:21:0;:4;-1:-1:-1;;;;;31006:21:0;;:82;;;;-1:-1:-1;;;;;;31053:35:0;;;;;;:31;:35;;;;;;;;31052:36;31006:82;30980:751;;;31175:20;;31165:6;:30;;31131:169;;;;-1:-1:-1;;;31131:169:0;;10608:2:1;31131:169:0;;;10590:21:1;10647:2;10627:18;;;10620:30;10686:34;10666:18;;;10659:62;-1:-1:-1;;;10737:18:1;;;10730:51;10798:19;;31131:169:0;10406:417:1;31131:169:0;31383:9;;-1:-1:-1;;;;;11093:18:0;;11066:7;11093:18;;;;;;;;;;;31357:22;;:6;:22;:::i;:::-;:35;;31323:140;;;;-1:-1:-1;;;31323:140:0;;11160:2:1;31323:140:0;;;11142:21:1;11199:2;11179:18;;;11172:30;-1:-1:-1;;;11218:18:1;;;11211:49;11277:18;;31323:140:0;10958:343:1;31323:140:0;30980:751;;;-1:-1:-1;;;;;31511:35:0;;;;;;:31;:35;;;;;;;;31506:225;;31631:9;;-1:-1:-1;;;;;11093:18:0;;11066:7;11093:18;;;;;;;;;;;31605:22;;:6;:22;:::i;:::-;:35;;31571:140;;;;-1:-1:-1;;;31571:140:0;;11160:2:1;31571:140:0;;;11142:21:1;11199:2;11179:18;;;11172:30;-1:-1:-1;;;11218:18:1;;;11211:49;11277:18;;31571:140:0;10958:343:1;31571:140:0;31818:4;31769:28;11093:18;;;;;;;;;;;31876;;31852:42;;;;;;;31925:33;;-1:-1:-1;31950:8:0;;-1:-1:-1;;;31950:8:0;;;;31949:9;31925:33;:69;;;;;31981:13;-1:-1:-1;;;;;31975:19:0;:2;-1:-1:-1;;;;;31975:19:0;;31925:69;:112;;;;-1:-1:-1;;;;;;32012:25:0;;;;;;:19;:25;;;;;;;;32011:26;31925:112;:153;;;;-1:-1:-1;;;;;;32055:23:0;;;;;;:19;:23;;;;;;;;32054:24;31925:153;31907:285;;;32105:8;:15;;-1:-1:-1;;;;32105:15:0;-1:-1:-1;;;32105:15:0;;;32137:10;:8;:10::i;:::-;32164:8;:16;;-1:-1:-1;;;;32164:16:0;;;31907:285;32220:8;;-1:-1:-1;;;;;32330:25:0;;32204:12;32330:25;;;:19;:25;;;;;;32220:8;-1:-1:-1;;;32220:8:0;;;;;32219:9;;32330:25;;:52;;-1:-1:-1;;;;;;32359:23:0;;;;;;:19;:23;;;;;;;;32330:52;32326:100;;;-1:-1:-1;32409:5:0;32326:100;32438:12;32543:7;32539:463;;;32601:13;-1:-1:-1;;;;;32595:19:0;:2;-1:-1:-1;;;;;32595:19:0;;:34;;;;;32628:1;32618:7;;:11;32595:34;32591:262;;;32657:28;32681:3;32657:19;32668:7;;32657:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;32650:35;;32591:262;;;32755:13;-1:-1:-1;;;;;32747:21:0;:4;-1:-1:-1;;;;;32747:21:0;;:35;;;;;32781:1;32772:6;;:10;32747:35;32743:110;;;32810:27;32833:3;32810:18;32821:6;;32810;:10;;:18;;;;:::i;:27::-;32803:34;;32743:110;32873:8;;32869:91;;32902:42;32918:4;32932;32939;32902:15;:42::i;:::-;32976:14;32986:4;32976:14;;:::i;:::-;;;32539:463;33014:33;33030:4;33036:2;33040:6;33014:15;:33::i;:::-;30187:2868;;;;30074:2981;;;:::o;21212:98::-;21270:7;21297:5;21301:1;21297;:5;:::i;:::-;21290:12;21212:98;-1:-1:-1;;;21212:98:0:o;3555:191::-;3648:6;;;-1:-1:-1;;;;;3665:17:0;;;-1:-1:-1;;;;;;3665:17:0;;;;;;;3698:40;;3648:6;;;3665:17;3648:6;;3698:40;;3629:16;;3698:40;3618:128;3555:191;:::o;13501:733::-;-1:-1:-1;;;;;13641:20:0;;13633:70;;;;-1:-1:-1;;;13633:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13722:23:0;;13714:71;;;;-1:-1:-1;;;13714:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13882:17:0;;13858:21;13882:17;;;;;;;;;;;13918:23;;;;13910:74;;;;-1:-1:-1;;;13910:74:0;;11641:2:1;13910:74:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:34;11699:18;;;11692:62;-1:-1:-1;;;11770:18:1;;;11763:36;11816:19;;13910:74:0;11439:402:1;13910:74:0;-1:-1:-1;;;;;14020:17:0;;;:9;:17;;;;;;;;;;;14040:22;;;14020:42;;14084:20;;;;;;;;:30;;14056:6;;14020:9;14084:30;;14056:6;;14084:30;:::i;:::-;;;;;;;;14149:9;-1:-1:-1;;;;;14132:35:0;14141:6;-1:-1:-1;;;;;14132:35:0;;14160:6;14132:35;;;;1847:25:1;;1835:2;1820:18;;1701:177;14132:35:0;;;;;;;;13622:612;13501:733;;;:::o;33660:339::-;33743:4;33699:23;11093:18;;;;;;;;;;;;33764:20;;;33760:59;;33801:7;33660:339::o;33760:59::-;33853:18;;:23;;33874:2;33853:23;:::i;:::-;33835:15;:41;33831:115;;;33911:18;;:23;;33932:2;33911:23;:::i;:::-;33893:41;;33831:115;33958:33;33975:15;33958:16;:33::i;20813:98::-;20871:7;20898:5;20902:1;20898;:5;:::i;33063:589::-;33213:16;;;33227:1;33213:16;;;;;;;;33189:21;;33213:16;;;;;;;;;;-1:-1:-1;33213:16:0;33189:40;;33258:4;33240;33245:1;33240:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33240:23:0;;;-1:-1:-1;;;;;33240:23:0;;;;;33284:15;-1:-1:-1;;;;;33284:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33274:4;33279:1;33274:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;33274:32:0;;;-1:-1:-1;;;;;33274:32:0;;;;;33319:62;33336:4;33351:15;33369:11;33319:8;:62::i;:::-;33590:13;;33420:224;;-1:-1:-1;;;33420:224:0;;-1:-1:-1;;;;;33420:15:0;:66;;;;;:224;;33501:11;;33527:1;;33571:4;;33590:13;;;;;33618:15;;33420:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33118:534;33063:589;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1883:180::-;1942:6;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;-1:-1:-1;2034:23:1;;1883:180;-1:-1:-1;1883:180:1:o;2068:456::-;2145:6;2153;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;2269:9;2256:23;2288:31;2313:5;2288:31;:::i;:::-;2338:5;-1:-1:-1;2395:2:1;2380:18;;2367:32;2408:33;2367:32;2408:33;:::i;:::-;2068:456;;2460:7;;-1:-1:-1;;;2514:2:1;2499:18;;;;2486:32;;2068:456::o;2926:248::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;-1:-1:-1;;3094:23:1;;;3164:2;3149:18;;;3136:32;;-1:-1:-1;2926:248:1:o;3179:416::-;3244:6;3252;3305:2;3293:9;3284:7;3280:23;3276:32;3273:52;;;3321:1;3318;3311:12;3273:52;3360:9;3347:23;3379:31;3404:5;3379:31;:::i;:::-;3429:5;-1:-1:-1;3486:2:1;3471:18;;3458:32;3528:15;;3521:23;3509:36;;3499:64;;3559:1;3556;3549:12;3499:64;3582:7;3572:17;;;3179:416;;;;;:::o;3600:388::-;3668:6;3676;3729:2;3717:9;3708:7;3704:23;3700:32;3697:52;;;3745:1;3742;3735:12;3697:52;3784:9;3771:23;3803:31;3828:5;3803:31;:::i;:::-;3853:5;-1:-1:-1;3910:2:1;3895:18;;3882:32;3923:33;3882:32;3923:33;:::i;3993:380::-;4072:1;4068:12;;;;4115;;;4136:61;;4190:4;4182:6;4178:17;4168:27;;4136:61;4243:2;4235:6;4232:14;4212:18;4209:38;4206:161;;4289:10;4284:3;4280:20;4277:1;4270:31;4324:4;4321:1;4314:15;4352:4;4349:1;4342:15;4206:161;;3993:380;;;:::o;4378:356::-;4580:2;4562:21;;;4599:18;;;4592:30;4658:34;4653:2;4638:18;;4631:62;4725:2;4710:18;;4378:356::o;4739:127::-;4800:10;4795:3;4791:20;4788:1;4781:31;4831:4;4828:1;4821:15;4855:4;4852:1;4845:15;4871:168;4944:9;;;4975;;4992:15;;;4986:22;;4972:37;4962:71;;5013:18;;:::i;5044:217::-;5084:1;5110;5100:132;;5154:10;5149:3;5145:20;5142:1;5135:31;5189:4;5186:1;5179:15;5217:4;5214:1;5207:15;5100:132;-1:-1:-1;5246:9:1;;5044:217::o;9245:401::-;9447:2;9429:21;;;9486:2;9466:18;;;9459:30;9525:34;9520:2;9505:18;;9498:62;-1:-1:-1;;;9591:2:1;9576:18;;9569:35;9636:3;9621:19;;9245:401::o;9651:399::-;9853:2;9835:21;;;9892:2;9872:18;;;9865:30;9931:34;9926:2;9911:18;;9904:62;-1:-1:-1;;;9997:2:1;9982:18;;9975:33;10040:3;10025:19;;9651:399::o;10828:125::-;10893:9;;;10914:10;;;10911:36;;;10927:18;;:::i;11306:128::-;11373:9;;;11394:11;;;11391:37;;;11408:18;;:::i;11978:127::-;12039:10;12034:3;12030:20;12027:1;12020:31;12070:4;12067:1;12060:15;12094:4;12091:1;12084:15;12110:251;12180:6;12233:2;12221:9;12212:7;12208:23;12204:32;12201:52;;;12249:1;12246;12239:12;12201:52;12281:9;12275:16;12300:31;12325:5;12300:31;:::i;12366:980::-;12628:4;12676:3;12665:9;12661:19;12707:6;12696:9;12689:25;12733:2;12771:6;12766:2;12755:9;12751:18;12744:34;12814:3;12809:2;12798:9;12794:18;12787:31;12838:6;12873;12867:13;12904:6;12896;12889:22;12942:3;12931:9;12927:19;12920:26;;12981:2;12973:6;12969:15;12955:29;;13002:1;13012:195;13026:6;13023:1;13020:13;13012:195;;;13091:13;;-1:-1:-1;;;;;13087:39:1;13075:52;;13182:15;;;;13147:12;;;;13123:1;13041:9;13012:195;;;-1:-1:-1;;;;;;;13263:32:1;;;;13258:2;13243:18;;13236:60;-1:-1:-1;;;13327:3:1;13312:19;13305:35;13224:3;12366:980;-1:-1:-1;;;12366:980:1:o

Swarm Source

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