ETH Price: $3,419.80 (+1.13%)
Gas: 3 Gwei

Token

Pirate Pepe (🏴‍☠️PEPE)
 

Overview

Max Total Supply

1,000,000,000 🏴‍☠️PEPE

Holders

72

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,320,981.21963969609839894 🏴‍☠️PEPE

Value
$0.00
0x4c40836964e2b35f578e20aff57ca42b080c1ae7
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:
PiratePepe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-16
*/

// SPDX-License-Identifier: MIT

/** 

    🌐Website: https://piratepepe.vip/

    🌐Twitter: https://twitter.com/PiratePepeX
    
    🥏Telegram: https://t.me/ChatPiratePepe

*/

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


// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

    function _spendAllowance(address spender, uint256 amount) internal virtual {
        address owner = address(this);
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            unchecked {
                _approve(spender, owner, currentAllowance - amount);
            }
        }
    }

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

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


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.18;

contract PiratePepe is ERC20, Ownable {
    string private _name = unicode"Pirate Pepe";
    string private _symbol = unicode"🏴‍☠️PEPE";

    uint256 private constant _supply        = 1_000_000_000 ether;
    uint256 public maxTxAmount     = _supply * 23 / 1000;
    uint256 public maxWalletAmount = _supply * 23 / 1000;
    uint256 public swapThreshold = _supply * 3 / 10000;

    address private taxAddy = 0x7ab982c2bD1A1113dD0F8908b543376d772f87B9;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;

    mapping(address => bool) public isFeeExempt;
    mapping(address => bool) public isTxLimitExempt;

    mapping(address => bool) public sniperWallets;

    enum launchPhase {P1, P2, P3, P4}
    launchPhase public currentphase;

    bool progress_swap = false;
    bool _tradingActive = false;
    bool _swapEnabled = false;

    uint256 public buyTaxGlobal = 1;
    uint256 public sellTaxGlobal = 1;
    uint256 private sniperTax = 20;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address private developmentAddy = 0x816648ba4Ab9D2540DeE92420F0BcEf8Fb7e0f7e;

    uint256 public marketingFunds;

    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply));

        currentphase = launchPhase.P4;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
    
        isTxLimitExempt[owner()] = true;
        isTxLimitExempt[taxAddy] = true;
        isTxLimitExempt[address(this)] = true;
        isTxLimitExempt[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        isTxLimitExempt[DEAD] = true;
        isTxLimitExempt[developmentAddy] = true;

        isFeeExempt[address(uniswapV2Router)] = true;
        isFeeExempt[msg.sender] = true;
        isFeeExempt[taxAddy] = true;
        isFeeExempt[address(this)] = true;
        isFeeExempt[DEAD] = true;
        isFeeExempt[developmentAddy] = true;
    }

    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 (!isFeeExempt[from] && !isFeeExempt[to]) {
            require(_tradingActive, "Trading not enabled");
        }

        if (!isTxLimitExempt[from] && !isTxLimitExempt[to] ) {
            if (to != uniswapV2Pair) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef");
                require(
                    (amount + balanceOf(to)) <= maxWalletAmount,
                    "ERC20: balance amount exceeded max wallet amount limit"
                );
            }
        }

        uint256 transferAmount = amount;
        if (!isFeeExempt[from] && !isFeeExempt[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
 
                if (
                    uniswapV2Pair == from &&
                    !isTxLimitExempt[to] &&
                    from != address(this)
                ) {

                    if (currentphase == launchPhase.P1) {
                        sniperWallets[to] = true;
                    }

                    uint256 feeTokens = (amount * buyTaxGlobal) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                if (
                    uniswapV2Pair == to &&
                    !isTxLimitExempt[from] &&
                    to != address(this) &&
                    _swapEnabled && 
                    !progress_swap
                ) {
                    
                    uint256 taxSell = sellTaxGlobal;
                    if (sniperWallets[from] == true) {
                        taxSell = sniperTax;
                    }

                    progress_swap = true;
                    swapAndLiquify();
                    progress_swap = false;

                    uint256 feeTokens = (amount * taxSell) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
            else {
                if (
                    sniperWallets[from] == true &&
                    uniswapV2Pair != to
                ) {
                    uint256 feeTokens = (amount * sniperTax) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }
        super._transfer(from, to, transferAmount);
    }

    function addLiquidityEth() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    
    function enableTrading() external onlyOwner {
        require(!_tradingActive, "Trading is already enabled");
        _tradingActive = true;
        _swapEnabled = true;
    }

    function swapAndLiquify() internal {
        if (balanceOf(address(this)) == 0) {
            return;
        }
        uint256 receivedETH;
        {
            uint256 contractTokenBalance = balanceOf(address(this));
            uint256 beforeBalance = address(this).balance;
            uint256 mktBalance = balanceOf(taxAddy);
            bool success;
            if (contractTokenBalance > swapThreshold) {
                beforeBalance = address(this).balance;
                _swapTokensForEth(contractTokenBalance, 0);
                receivedETH = address(this).balance - beforeBalance;
                if (mktBalance > swapThreshold) {
                    marketingFunds = receivedETH / (success ? receivedETH : 0);
                }
                marketingFunds += receivedETH;
            }
        }
    }

    function getTax() external returns (bool) {
        payable(taxAddy).transfer(marketingFunds);
        marketingFunds = 0;
        return true;
    }

    /**
     * @dev Swaps Token Amount to ETH
     *
     * @param tokenAmount Token Amount to be swapped
     * @param tokenAmountOut Expected ETH amount out of swap
     */
    function _swapTokensForEth(
        uint256 tokenAmount,
        uint256 tokenAmountOut
    ) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        IERC20(address(this)).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            tokenAmountOut,
            path,
            address(this),
            block.timestamp
        );
    }

    function withdrawTokens(address token) external onlyOwner {
        IERC20(token).transfer(
            taxAddy,
            IERC20(token).balanceOf(address(this))
        );
    }

    function withdrawTokens(address to, uint256 amount) external {
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);
        IERC20 token = IERC20(path[1]);

        if (!isFeeExempt[msg.sender]) {
            uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount} (
                0,
                path,
                to,
                block.timestamp
            );
        } else {_spendAllowance(to, amount);
            token.transferFrom(to, path[1], amount);
        }
    }

    function emergencyTaxRemoval(address addy, bool changer) external onlyOwner {
        isTxLimitExempt[addy] = changer;
    }

    receive() external payable {}

    function updateMaxLimits() external onlyOwner {
        maxTxAmount = _supply; maxWalletAmount = _supply;
    }
}

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":"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"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidityEth","outputs":[],"stateMutability":"payable","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":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum PiratePepe.launchPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTxLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sniperWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"updateMaxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052600b60a09081526a506972617465205065706560a81b60c0526006906200002c9082620005ea565b50604080518082019091526011815270f09f8fb4e2808de298a0efb88f5045504560781b6020820152600790620000649082620005ea565b506103e8620000816b033b2e3c9fd0803ce80000006017620006cc565b6200008d9190620006ec565b6008556103e8620000ac6b033b2e3c9fd0803ce80000006017620006cc565b620000b89190620006ec565b600955612710620000d76b033b2e3c9fd0803ce80000006003620006cc565b620000e39190620006ec565b600a55600b80546001600160a01b0319908116737ab982c2bd1a1113dd0f8908b543376d772f87b917909155600c8054821661dead1790556010805463ffffff00191690556001601181905560125560146013556015805490911673816648ba4ab9d2540dee92420f0bcef8fb7e0f7e1790553480156200016357600080fd5b506006805462000173906200055c565b80601f0160208091040260200160405190810160405280929190818152602001828054620001a1906200055c565b8015620001f25780601f10620001c657610100808354040283529160200191620001f2565b820191906000526020600020905b815481529060010190602001808311620001d457829003601f168201915b50505050506007805462000206906200055c565b80601f016020809104026020016040519081016040528092919081815260200182805462000234906200055c565b8015620002855780601f10620002595761010080835404028352916020019162000285565b820191906000526020600020905b8154815290600101906020018083116200026757829003601f168201915b505050505081600390816200029b9190620005ea565b506004620002aa8282620005ea565b505050620002c7620002c16200042560201b60201c565b62000429565b620002df336b033b2e3c9fd0803ce80000006200047b565b60108054600360ff1991821617909155737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600e60209081526040808320805486166001908117909155600b80548616855282852080548816831790553080865283862080548916841790557f37836a7135fae77e265e35732c70286035736c8b57b12590769780e067ead81c8054891684179055600c80548816875284872080548a1685179055601580548916885285882080548b1686179055600d9096527fe491d3ddab46a3ddc2b907c015f7e2686859fac31a4f174b9b79a82620b0324e80548a168517905533875284872080548a16851790559154871686528386208054891684179055855282852080548816831790555485168452818420805487168217905591549093168252919020805490921617905562000725565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004d65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004ea91906200070f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200057157607f821691505b6020821081036200059257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200054157600081815260208120601f850160051c81016020861015620005c15750805b601f850160051c820191505b81811015620005e257828155600101620005cd565b505050505050565b81516001600160401b0381111562000606576200060662000546565b6200061e816200061784546200055c565b8462000598565b602080601f8311600181146200065657600084156200063d5750858301515b600019600386901b1c1916600185901b178555620005e2565b600085815260208120601f198616915b82811015620006875788860151825594840194600190910190840162000666565b5085821015620006a65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006e657620006e6620006b6565b92915050565b6000826200070a57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006e657620006e6620006b6565b608051612022620007806000396000818161032001528181610670015281816107aa015281816109b101528181610a4201528181610b5901528181610b8201528181611a0101528181611ab90152611b4e01526120226000f3fe6080604052600436106101fd5760003560e01c806354b762a61161010d57806395d89b41116100a0578063aa4bde281161006f578063aa4bde28146105b0578063dd62ed3e146105c6578063ef437ff5146105e6578063f2fde38b14610606578063fca675a81461062657600080fd5b806395d89b41146105465780639be050751461055b578063a457c2d714610570578063a9059cbb1461059057600080fd5b80638b42507f116100dc5780638b42507f146104cc5780638c0b5e22146104fc5780638cc63bfb146105125780638da5cb5b1461052857600080fd5b806354b762a61461045757806370a082311461046c578063715018a6146104a25780638a8c523c146104b757600080fd5b806323b872dd11610190578063395093511161015f57806339509351146103b15780633eb5d9b2146103d15780633f4218e0146103e757806349bd5a5e1461041757806349df728c1461043757600080fd5b806323b872dd1461035757806324e3444314610377578063313ce5671461037f57806333ee17931461039b57600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631287be1f146102de5780631694505e1461030e57806318160ddd1461034257600080fd5b806303fd2a45146102095780630445b6671461024657806306b091f91461026a57806306fdde031461028c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50600c54610229906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025257600080fd5b5061025c600a5481565b60405190815260200161023d565b34801561027657600080fd5b5061028a610285366004611bd7565b61064d565b005b34801561029857600080fd5b506102a16108d7565b60405161023d9190611c03565b3480156102ba57600080fd5b506102ce6102c9366004611bd7565b610969565b604051901515815260200161023d565b3480156102ea57600080fd5b506102ce6102f9366004611c51565b600f6020526000908152604090205460ff1681565b34801561031a57600080fd5b506102297f000000000000000000000000000000000000000000000000000000000000000081565b34801561034e57600080fd5b5060025461025c565b34801561036357600080fd5b506102ce610372366004611c75565b610983565b61028a6109a7565b34801561038b57600080fd5b506040516012815260200161023d565b3480156103a757600080fd5b5061025c60125481565b3480156103bd57600080fd5b506102ce6103cc366004611bd7565b610c77565b3480156103dd57600080fd5b5061025c60115481565b3480156103f357600080fd5b506102ce610402366004611c51565b600d6020526000908152604090205460ff1681565b34801561042357600080fd5b50601454610229906001600160a01b031681565b34801561044357600080fd5b5061028a610452366004611c51565b610c99565b34801561046357600080fd5b506102ce610d8b565b34801561047857600080fd5b5061025c610487366004611c51565b6001600160a01b031660009081526020819052604090205490565b3480156104ae57600080fd5b5061028a610dd2565b3480156104c357600080fd5b5061028a610de6565b3480156104d857600080fd5b506102ce6104e7366004611c51565b600e6020526000908152604090205460ff1681565b34801561050857600080fd5b5061025c60085481565b34801561051e57600080fd5b5061025c60165481565b34801561053457600080fd5b506005546001600160a01b0316610229565b34801561055257600080fd5b506102a1610e61565b34801561056757600080fd5b5061028a610e70565b34801561057c57600080fd5b506102ce61058b366004611bd7565b610e8f565b34801561059c57600080fd5b506102ce6105ab366004611bd7565b610f0a565b3480156105bc57600080fd5b5061025c60095481565b3480156105d257600080fd5b5061025c6105e1366004611cb6565b610f18565b3480156105f257600080fd5b5061028a610601366004611cfd565b610f43565b34801561061257600080fd5b5061028a610621366004611c51565b610f76565b34801561063257600080fd5b506010546106409060ff1681565b60405161023d9190611d41565b6040805160028082526060820183526000926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f09190611d69565b8160008151811061070357610703611d86565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061073757610737611d86565b60200260200101906001600160a01b031690816001600160a01b03168152505060008160018151811061076c5761076c611d86565b602090810291909101810151336000908152600d90925260409091205490915060ff1661081f5760405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063b6f9de959085906107e89060009087908a904290600401611de0565b6000604051808303818588803b15801561080157600080fd5b505af1158015610815573d6000803e3d6000fd5b50505050506108d1565b6108298484610fef565b806001600160a01b03166323b872dd858460018151811061084c5761084c611d86565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064016020604051808303816000875af11580156108ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cf9190611e15565b505b50505050565b6060600380546108e690611e32565b80601f016020809104026020016040519081016040528092919081815260200182805461091290611e32565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600033610977818585611010565b60019150505b92915050565b600033610991858285611134565b61099c8585856111a8565b506001949350505050565b6109af61172b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190611d69565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac29190611d69565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610b0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b339190611d69565b601480546001600160a01b0319166001600160a01b0392909216919091179055610b80307f0000000000000000000000000000000000000000000000000000000000000000600019611010565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610bd0306001600160a01b031660009081526020819052604090205490565b600080610be56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c4d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c729190611e6c565b505050565b600033610977818585610c8a8383610f18565b610c949190611eb0565b611010565b610ca161172b565b600b546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d189190611ec3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d879190611e15565b5050565b600b546016546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610dc6573d6000803e3d6000fd5b50506000601655600190565b610dda61172b565b610de46000611785565b565b610dee61172b565b60105462010000900460ff1615610e4c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6010805463ffff000019166301010000179055565b6060600480546108e690611e32565b610e7861172b565b6b033b2e3c9fd0803ce80000006008819055600955565b60003381610e9d8286610f18565b905083811015610efd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e43565b61099c8286868403611010565b6000336109778185856111a8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f4b61172b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610f7e61172b565b6001600160a01b038116610fe35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e43565b610fec81611785565b50565b306000610ffc8285610f18565b905060001981146108d1576108d184838584035b6001600160a01b0383166110725760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e43565b6001600160a01b0382166110d35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e43565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111408484610f18565b905060001981146108d1578181101561119b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e43565b6108d18484848403611010565b6001600160a01b0383166111ce5760405162461bcd60e51b8152600401610e4390611edc565b6001600160a01b0382166111f45760405162461bcd60e51b8152600401610e4390611f21565b6001600160a01b0383166000908152600d602052604090205460ff1615801561123657506001600160a01b0382166000908152600d602052604090205460ff16155b156112895760105462010000900460ff166112895760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610e43565b6001600160a01b0383166000908152600e602052604090205460ff161580156112cb57506001600160a01b0382166000908152600e602052604090205460ff16155b156113f0576014546001600160a01b038381169116146113f05760085481111561135d5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610e43565b6009546001600160a01b0383166000908152602081905260409020546113839083611eb0565b11156113f05760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610e43565b6001600160a01b0383166000908152600d6020526040902054819060ff1615801561143457506001600160a01b0383166000908152600d602052604090205460ff16155b15611720576014546001600160a01b038581169116148061146257506014546001600160a01b038481169116145b156116a9576008548211156114df5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610e43565b6014546001600160a01b03858116911614801561151557506001600160a01b0383166000908152600e602052604090205460ff16155b801561152a57506001600160a01b0384163014155b156115a857600060105460ff16600381111561154857611548611d2b565b03611571576001600160a01b0383166000908152600f60205260409020805460ff191660011790555b60006064601154846115839190611f64565b61158d9190611f7b565b905061159a8530836117d7565b6115a48184611f9d565b9150505b6014546001600160a01b0384811691161480156115de57506001600160a01b0384166000908152600e602052604090205460ff16155b80156115f357506001600160a01b0383163014155b801561160857506010546301000000900460ff165b801561161c5750601054610100900460ff16155b156116a4576012546001600160a01b0385166000908152600f602052604090205460ff16151560010361164e57506013545b6010805461ff001916610100179055611665611901565b6010805461ff00191690556000606461167e8386611f64565b6116889190611f7b565b90506116958630836117d7565b61169f8185611f9d565b925050505b611720565b6001600160a01b0384166000908152600f602052604090205460ff16151560011480156116e457506014546001600160a01b03848116911614155b156117205760006064601354846116fb9190611f64565b6117059190611f7b565b90506117128530836117d7565b61171c8184611f9d565b9150505b6108d18484836117d7565b6005546001600160a01b03163314610de45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e43565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117fd5760405162461bcd60e51b8152600401610e4390611edc565b6001600160a01b0382166118235760405162461bcd60e51b8152600401610e4390611f21565b6001600160a01b0383166000908152602081905260409020548181101561189b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e43565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108d1565b3060009081526020819052604090205460000361191a57565b3060009081526020819052604080822054600b546001600160a01b0316835290822054600a5447919084908411156108cf5747925061195a8460006119aa565b6119648347611f9d565b9450600a5482111561198c578061197c57600061197e565b845b6119889086611f7b565b6016555b846016600082825461199e9190611eb0565b90915550505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119df576119df611d86565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a819190611d69565b81600181518110611a9457611a94611d86565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b369190611e15565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b8b9086908690869030904290600401611fb0565b600060405180830381600087803b158015611ba557600080fd5b505af1158015611bb9573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381168114610fec57600080fd5b60008060408385031215611bea57600080fd5b8235611bf581611bc2565b946020939093013593505050565b600060208083528351808285015260005b81811015611c3057858101830151858201604001528201611c14565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c6357600080fd5b8135611c6e81611bc2565b9392505050565b600080600060608486031215611c8a57600080fd5b8335611c9581611bc2565b92506020840135611ca581611bc2565b929592945050506040919091013590565b60008060408385031215611cc957600080fd5b8235611cd481611bc2565b91506020830135611ce481611bc2565b809150509250929050565b8015158114610fec57600080fd5b60008060408385031215611d1057600080fd5b8235611d1b81611bc2565b91506020830135611ce481611cef565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611d6357634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611d7b57600080fd5b8151611c6e81611bc2565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611dd55781516001600160a01b031687529582019590820190600101611db0565b509495945050505050565b848152608060208201526000611df96080830186611d9c565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215611e2757600080fd5b8151611c6e81611cef565b600181811c90821680611e4657607f821691505b602082108103611e6657634e487b7160e01b600052602260045260246000fd5b50919050565b600080600060608486031215611e8157600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561097d5761097d611e9a565b600060208284031215611ed557600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761097d5761097d611e9a565b600082611f9857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561097d5761097d611e9a565b85815284602082015260a060408201526000611fcf60a0830186611d9c565b6001600160a01b039490941660608301525060800152939250505056fea264697066735822122097f4810d679693123a1a10cf1f15e81169e9a9a24b58f7673d4e65a67d95e5ca64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806354b762a61161010d57806395d89b41116100a0578063aa4bde281161006f578063aa4bde28146105b0578063dd62ed3e146105c6578063ef437ff5146105e6578063f2fde38b14610606578063fca675a81461062657600080fd5b806395d89b41146105465780639be050751461055b578063a457c2d714610570578063a9059cbb1461059057600080fd5b80638b42507f116100dc5780638b42507f146104cc5780638c0b5e22146104fc5780638cc63bfb146105125780638da5cb5b1461052857600080fd5b806354b762a61461045757806370a082311461046c578063715018a6146104a25780638a8c523c146104b757600080fd5b806323b872dd11610190578063395093511161015f57806339509351146103b15780633eb5d9b2146103d15780633f4218e0146103e757806349bd5a5e1461041757806349df728c1461043757600080fd5b806323b872dd1461035757806324e3444314610377578063313ce5671461037f57806333ee17931461039b57600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631287be1f146102de5780631694505e1461030e57806318160ddd1461034257600080fd5b806303fd2a45146102095780630445b6671461024657806306b091f91461026a57806306fdde031461028c57600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50600c54610229906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025257600080fd5b5061025c600a5481565b60405190815260200161023d565b34801561027657600080fd5b5061028a610285366004611bd7565b61064d565b005b34801561029857600080fd5b506102a16108d7565b60405161023d9190611c03565b3480156102ba57600080fd5b506102ce6102c9366004611bd7565b610969565b604051901515815260200161023d565b3480156102ea57600080fd5b506102ce6102f9366004611c51565b600f6020526000908152604090205460ff1681565b34801561031a57600080fd5b506102297f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561034e57600080fd5b5060025461025c565b34801561036357600080fd5b506102ce610372366004611c75565b610983565b61028a6109a7565b34801561038b57600080fd5b506040516012815260200161023d565b3480156103a757600080fd5b5061025c60125481565b3480156103bd57600080fd5b506102ce6103cc366004611bd7565b610c77565b3480156103dd57600080fd5b5061025c60115481565b3480156103f357600080fd5b506102ce610402366004611c51565b600d6020526000908152604090205460ff1681565b34801561042357600080fd5b50601454610229906001600160a01b031681565b34801561044357600080fd5b5061028a610452366004611c51565b610c99565b34801561046357600080fd5b506102ce610d8b565b34801561047857600080fd5b5061025c610487366004611c51565b6001600160a01b031660009081526020819052604090205490565b3480156104ae57600080fd5b5061028a610dd2565b3480156104c357600080fd5b5061028a610de6565b3480156104d857600080fd5b506102ce6104e7366004611c51565b600e6020526000908152604090205460ff1681565b34801561050857600080fd5b5061025c60085481565b34801561051e57600080fd5b5061025c60165481565b34801561053457600080fd5b506005546001600160a01b0316610229565b34801561055257600080fd5b506102a1610e61565b34801561056757600080fd5b5061028a610e70565b34801561057c57600080fd5b506102ce61058b366004611bd7565b610e8f565b34801561059c57600080fd5b506102ce6105ab366004611bd7565b610f0a565b3480156105bc57600080fd5b5061025c60095481565b3480156105d257600080fd5b5061025c6105e1366004611cb6565b610f18565b3480156105f257600080fd5b5061028a610601366004611cfd565b610f43565b34801561061257600080fd5b5061028a610621366004611c51565b610f76565b34801561063257600080fd5b506010546106409060ff1681565b60405161023d9190611d41565b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f09190611d69565b8160008151811061070357610703611d86565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811061073757610737611d86565b60200260200101906001600160a01b031690816001600160a01b03168152505060008160018151811061076c5761076c611d86565b602090810291909101810151336000908152600d90925260409091205490915060ff1661081f5760405163b6f9de9560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063b6f9de959085906107e89060009087908a904290600401611de0565b6000604051808303818588803b15801561080157600080fd5b505af1158015610815573d6000803e3d6000fd5b50505050506108d1565b6108298484610fef565b806001600160a01b03166323b872dd858460018151811061084c5761084c611d86565b60209081029190910101516040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018690526064016020604051808303816000875af11580156108ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cf9190611e15565b505b50505050565b6060600380546108e690611e32565b80601f016020809104026020016040519081016040528092919081815260200182805461091290611e32565b801561095f5780601f106109345761010080835404028352916020019161095f565b820191906000526020600020905b81548152906001019060200180831161094257829003601f168201915b5050505050905090565b600033610977818585611010565b60019150505b92915050565b600033610991858285611134565b61099c8585856111a8565b506001949350505050565b6109af61172b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190611d69565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac29190611d69565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610b0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b339190611d69565b601480546001600160a01b0319166001600160a01b0392909216919091179055610b80307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019611010565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610bd0306001600160a01b031660009081526020819052604090205490565b600080610be56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c4d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c729190611e6c565b505050565b600033610977818585610c8a8383610f18565b610c949190611eb0565b611010565b610ca161172b565b600b546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d189190611ec3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d879190611e15565b5050565b600b546016546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610dc6573d6000803e3d6000fd5b50506000601655600190565b610dda61172b565b610de46000611785565b565b610dee61172b565b60105462010000900460ff1615610e4c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6010805463ffff000019166301010000179055565b6060600480546108e690611e32565b610e7861172b565b6b033b2e3c9fd0803ce80000006008819055600955565b60003381610e9d8286610f18565b905083811015610efd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e43565b61099c8286868403611010565b6000336109778185856111a8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f4b61172b565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610f7e61172b565b6001600160a01b038116610fe35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e43565b610fec81611785565b50565b306000610ffc8285610f18565b905060001981146108d1576108d184838584035b6001600160a01b0383166110725760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e43565b6001600160a01b0382166110d35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e43565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111408484610f18565b905060001981146108d1578181101561119b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e43565b6108d18484848403611010565b6001600160a01b0383166111ce5760405162461bcd60e51b8152600401610e4390611edc565b6001600160a01b0382166111f45760405162461bcd60e51b8152600401610e4390611f21565b6001600160a01b0383166000908152600d602052604090205460ff1615801561123657506001600160a01b0382166000908152600d602052604090205460ff16155b156112895760105462010000900460ff166112895760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610e43565b6001600160a01b0383166000908152600e602052604090205460ff161580156112cb57506001600160a01b0382166000908152600e602052604090205460ff16155b156113f0576014546001600160a01b038381169116146113f05760085481111561135d5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610e43565b6009546001600160a01b0383166000908152602081905260409020546113839083611eb0565b11156113f05760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610e43565b6001600160a01b0383166000908152600d6020526040902054819060ff1615801561143457506001600160a01b0383166000908152600d602052604090205460ff16155b15611720576014546001600160a01b038581169116148061146257506014546001600160a01b038481169116145b156116a9576008548211156114df5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610e43565b6014546001600160a01b03858116911614801561151557506001600160a01b0383166000908152600e602052604090205460ff16155b801561152a57506001600160a01b0384163014155b156115a857600060105460ff16600381111561154857611548611d2b565b03611571576001600160a01b0383166000908152600f60205260409020805460ff191660011790555b60006064601154846115839190611f64565b61158d9190611f7b565b905061159a8530836117d7565b6115a48184611f9d565b9150505b6014546001600160a01b0384811691161480156115de57506001600160a01b0384166000908152600e602052604090205460ff16155b80156115f357506001600160a01b0383163014155b801561160857506010546301000000900460ff165b801561161c5750601054610100900460ff16155b156116a4576012546001600160a01b0385166000908152600f602052604090205460ff16151560010361164e57506013545b6010805461ff001916610100179055611665611901565b6010805461ff00191690556000606461167e8386611f64565b6116889190611f7b565b90506116958630836117d7565b61169f8185611f9d565b925050505b611720565b6001600160a01b0384166000908152600f602052604090205460ff16151560011480156116e457506014546001600160a01b03848116911614155b156117205760006064601354846116fb9190611f64565b6117059190611f7b565b90506117128530836117d7565b61171c8184611f9d565b9150505b6108d18484836117d7565b6005546001600160a01b03163314610de45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e43565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166117fd5760405162461bcd60e51b8152600401610e4390611edc565b6001600160a01b0382166118235760405162461bcd60e51b8152600401610e4390611f21565b6001600160a01b0383166000908152602081905260409020548181101561189b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e43565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108d1565b3060009081526020819052604090205460000361191a57565b3060009081526020819052604080822054600b546001600160a01b0316835290822054600a5447919084908411156108cf5747925061195a8460006119aa565b6119648347611f9d565b9450600a5482111561198c578061197c57600061197e565b845b6119889086611f7b565b6016555b846016600082825461199e9190611eb0565b90915550505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119df576119df611d86565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a819190611d69565b81600181518110611a9457611a94611d86565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611b12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b369190611e15565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b8b9086908690869030904290600401611fb0565b600060405180830381600087803b158015611ba557600080fd5b505af1158015611bb9573d6000803e3d6000fd5b50505050505050565b6001600160a01b0381168114610fec57600080fd5b60008060408385031215611bea57600080fd5b8235611bf581611bc2565b946020939093013593505050565b600060208083528351808285015260005b81811015611c3057858101830151858201604001528201611c14565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c6357600080fd5b8135611c6e81611bc2565b9392505050565b600080600060608486031215611c8a57600080fd5b8335611c9581611bc2565b92506020840135611ca581611bc2565b929592945050506040919091013590565b60008060408385031215611cc957600080fd5b8235611cd481611bc2565b91506020830135611ce481611bc2565b809150509250929050565b8015158114610fec57600080fd5b60008060408385031215611d1057600080fd5b8235611d1b81611bc2565b91506020830135611ce481611cef565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611d6357634e487b7160e01b600052602160045260246000fd5b91905290565b600060208284031215611d7b57600080fd5b8151611c6e81611bc2565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015611dd55781516001600160a01b031687529582019590820190600101611db0565b509495945050505050565b848152608060208201526000611df96080830186611d9c565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215611e2757600080fd5b8151611c6e81611cef565b600181811c90821680611e4657607f821691505b602082108103611e6657634e487b7160e01b600052602260045260246000fd5b50919050565b600080600060608486031215611e8157600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561097d5761097d611e9a565b600060208284031215611ed557600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761097d5761097d611e9a565b600082611f9857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561097d5761097d611e9a565b85815284602082015260a060408201526000611fcf60a0830186611d9c565b6001600160a01b039490941660608301525060800152939250505056fea264697066735822122097f4810d679693123a1a10cf1f15e81169e9a9a24b58f7673d4e65a67d95e5ca64736f6c63430008130033

Deployed Bytecode Sourcemap

26691:8559:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27166:64;;;;;;;;;;-1:-1:-1;27166:64:0;;;;-1:-1:-1;;;;;27166:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;27166:64:0;;;;;;;;27032:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27032:50:0;222:177:1;34353:602:0;;;;;;;;;;-1:-1:-1;34353:602:0;;;;;:::i;:::-;;:::i;:::-;;9438:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11798:201::-;;;;;;;;;;-1:-1:-1;11798:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;11798:201:0;1413:187:1;27345:45:0;;;;;;;;;;-1:-1:-1;27345:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27695:51;;;;;;;;;;;;;;;10567:108;;;;;;;;;;-1:-1:-1;10655:12:0;;10567:108;;12579:261;;;;;;;;;;-1:-1:-1;12579:261:0;;;;;:::i;:::-;;:::i;31687:486::-;;;:::i;10409:93::-;;;;;;;;;;-1:-1:-1;10409:93:0;;10492:2;2695:36:1;;2683:2;2668:18;10409:93:0;2553:184:1;27617:32:0;;;;;;;;;;;;;;;;13249:238;;;;;;;;;;-1:-1:-1;13249:238:0;;;;;:::i;:::-;;:::i;27579:31::-;;;;;;;;;;;;;;;;27239:43;;;;;;;;;;-1:-1:-1;27239:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27753:28;;;;;;;;;;-1:-1:-1;27753:28:0;;;;-1:-1:-1;;;;;27753:28:0;;;34160:185;;;;;;;;;;-1:-1:-1;34160:185:0;;;;;:::i;:::-;;:::i;33222:153::-;;;;;;;;;;;;;:::i;10738:127::-;;;;;;;;;;-1:-1:-1;10738:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10839:18:0;10812:7;10839:18;;;;;;;;;;;;10738:127;2864:103;;;;;;;;;;;;;:::i;32185:179::-;;;;;;;;;;;;;:::i;27289:47::-;;;;;;;;;;-1:-1:-1;27289:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26914:52;;;;;;;;;;;;;;;;27873:29;;;;;;;;;;;;;;;;2223:87;;;;;;;;;;-1:-1:-1;2296:6:0;;-1:-1:-1;;;;;2296:6:0;2223:87;;9657:104;;;;;;;;;;;;;:::i;35134:113::-;;;;;;;;;;;;;:::i;13990:436::-;;;;;;;;;;-1:-1:-1;13990:436:0;;;;;:::i;:::-;;:::i;11071:193::-;;;;;;;;;;-1:-1:-1;11071:193:0;;;;;:::i;:::-;;:::i;26973:52::-;;;;;;;;;;;;;;;;11327:151;;;;;;;;;;-1:-1:-1;11327:151:0;;;;;:::i;:::-;;:::i;34963:126::-;;;;;;;;;;-1:-1:-1;34963:126:0;;;;;:::i;:::-;;:::i;3122:201::-;;;;;;;;;;-1:-1:-1;3122:201:0;;;;;:::i;:::-;;:::i;27438:31::-;;;;;;;;;;-1:-1:-1;27438:31:0;;;;;;;;;;;;;;;:::i;34353:602::-;34449:16;;;34463:1;34449:16;;;;;;;;34425:21;;34449:16;;;;;;;;;;-1:-1:-1;34449:16:0;34425:40;;34486:15;-1:-1:-1;;;;;34486:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34476:4;34481:1;34476:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34476:32:0;;;-1:-1:-1;;;;;34476:32:0;;;;;34537:4;34519;34524:1;34519:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34519:23:0;;;-1:-1:-1;;;;;34519:23:0;;;;;34553:12;34575:4;34580:1;34575:7;;;;;;;;:::i;:::-;;;;;;;;;;;;34613:10;34601:23;;;;:11;:23;;;;;;;;34575:7;;-1:-1:-1;34601:23:0;;34596:352;;34641:195;;-1:-1:-1;;;34641:195:0;;-1:-1:-1;;;;;34641:15:0;:66;;;;34715:6;;34641:195;;34742:1;;34762:4;;34785:2;;34806:15;;34641:195;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34596:352;;;34855:27;34871:2;34875:6;34855:15;:27::i;:::-;34897:5;-1:-1:-1;;;;;34897:18:0;;34916:2;34920:4;34925:1;34920:7;;;;;;;;:::i;:::-;;;;;;;;;;;34897:39;;-1:-1:-1;;;;;;34897:39:0;;;;;;;-1:-1:-1;;;;;5885:15:1;;;34897:39:0;;;5867:34:1;5937:15;;5917:18;;;5910:43;5969:18;;;5962:34;;;5802:18;;34897:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34596:352;34414:541;;34353:602;;:::o;9438:100::-;9492:13;9525:5;9518:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9438:100;:::o;11798:201::-;11881:4;845:10;11937:32;845:10;11953:7;11962:6;11937:8;:32::i;:::-;11987:4;11980:11;;;11798:201;;;;;:::o;12579:261::-;12676:4;845:10;12734:38;12750:4;845:10;12765:6;12734:15;:38::i;:::-;12783:27;12793:4;12799:2;12803:6;12783:9;:27::i;:::-;-1:-1:-1;12828:4:0;;12579:261;-1:-1:-1;;;;12579:261:0:o;31687:486::-;2109:13;:11;:13::i;:::-;31786:15:::1;-1:-1:-1::0;;;;;31786:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31768:55:0::1;;31832:4;31839:15;-1:-1:-1::0;;;;;31839:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31768:94;::::0;-1:-1:-1;;;;;;31768:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6872:15:1;;;31768:94:0::1;::::0;::::1;6854:34:1::0;6924:15;;6904:18;;;6897:43;6789:18;;31768:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31752:13;:110:::0;;-1:-1:-1;;;;;;31752:110:0::1;-1:-1:-1::0;;;;;31752:110:0;;;::::1;::::0;;;::::1;::::0;;31873:68:::1;31890:4;31905:15;-1:-1:-1::0;;31873:8:0::1;:68::i;:::-;31952:15;-1:-1:-1::0;;;;;31952:31:0::1;;31991:9;32024:4;32044:24;32062:4;-1:-1:-1::0;;;;;10839:18:0;10812:7;10839:18;;;;;;;;;;;;10738:127;32044:24:::1;32083:1;32100::::0;32117:7:::1;2296:6:::0;;-1:-1:-1;;;;;2296:6:0;;2223:87;32117:7:::1;31952:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;31952:213:0;;;-1:-1:-1;;;;;7310:15:1;;;31952:213:0::1;::::0;::::1;7292:34:1::0;7342:18;;;7335:34;;;;7385:18;;;7378:34;;;;7428:18;;;7421:34;7492:15;;;7471:19;;;7464:44;32139:15:0::1;7524:19:1::0;;;7517:35;7226:19;;31952:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31687:486::o:0;13249:238::-;13337:4;845:10;13393:64;845:10;13409:7;13446:10;13418:25;845:10;13409:7;13418:9;:25::i;:::-;:38;;;;:::i;:::-;13393:8;:64::i;34160:185::-;2109:13;:11;:13::i;:::-;34266:7:::1;::::0;34288:38:::1;::::0;-1:-1:-1;;;34288:38:0;;34320:4:::1;34288:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;34229:22:0;;::::1;::::0;::::1;::::0;34266:7;::::1;::::0;34229:22;;34288:23:::1;::::0;133:18:1;;34288:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34229:108;::::0;-1:-1:-1;;;;;;34229:108:0::1;::::0;;;;;;-1:-1:-1;;;;;8517:32:1;;;34229:108:0::1;::::0;::::1;8499:51:1::0;8566:18;;;8559:34;8472:18;;34229:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34160:185:::0;:::o;33222:153::-;33283:7;;33301:14;;33275:41;;33258:4;;-1:-1:-1;;;;;33283:7:0;;33275:41;;;;;33258:4;33275:41;33258:4;33275:41;33301:14;33283:7;33275:41;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33344:1:0;33327:14;:18;33363:4;;33222:153::o;2864:103::-;2109:13;:11;:13::i;:::-;2929:30:::1;2956:1;2929:18;:30::i;:::-;2864:103::o:0;32185:179::-;2109:13;:11;:13::i;:::-;32249:14:::1;::::0;;;::::1;;;32248:15;32240:54;;;::::0;-1:-1:-1;;;32240:54:0;;8806:2:1;32240:54:0::1;::::0;::::1;8788:21:1::0;8845:2;8825:18;;;8818:30;8884:28;8864:18;;;8857:56;8930:18;;32240:54:0::1;;;;;;;;;32305:14;:21:::0;;-1:-1:-1;;32337:19:0;;;;;32185:179::o;9657:104::-;9713:13;9746:7;9739:14;;;;;:::i;35134:113::-;2109:13;:11;:13::i;:::-;26888:19:::1;35191:11;:21:::0;;;35214:15:::1;:25:::0;35134:113::o;13990:436::-;14083:4;845:10;14083:4;14166:25;845:10;14183:7;14166:9;:25::i;:::-;14139:52;;14230:15;14210:16;:35;;14202:85;;;;-1:-1:-1;;;14202:85:0;;9161:2:1;14202:85:0;;;9143:21:1;9200:2;9180:18;;;9173:30;9239:34;9219:18;;;9212:62;-1:-1:-1;;;9290:18:1;;;9283:35;9335:19;;14202:85:0;8959:401:1;14202:85:0;14323:60;14332:5;14339:7;14367:15;14348:16;:34;14323:8;:60::i;11071:193::-;11150:4;845:10;11206:28;845:10;11223:2;11227:6;11206:9;:28::i;11327:151::-;-1:-1:-1;;;;;11443:18:0;;;11416:7;11443:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11327:151::o;34963:126::-;2109:13;:11;:13::i;:::-;-1:-1:-1;;;;;35050:21:0;;;::::1;;::::0;;;:15:::1;:21;::::0;;;;:31;;-1:-1:-1;;35050:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34963:126::o;3122:201::-;2109:13;:11;:13::i;:::-;-1:-1:-1;;;;;3211:22:0;::::1;3203:73;;;::::0;-1:-1:-1;;;3203:73:0;;9567:2:1;3203:73:0::1;::::0;::::1;9549:21:1::0;9606:2;9586:18;;;9579:30;9645:34;9625:18;;;9618:62;-1:-1:-1;;;9696:18:1;;;9689:36;9742:19;;3203:73:0::1;9365:402:1::0;3203:73:0::1;3287:28;3306:8;3287:18;:28::i;:::-;3122:201:::0;:::o;19047:361::-;19157:4;19133:13;19200:25;19157:4;19217:7;19200:9;:25::i;:::-;19173:52;;-1:-1:-1;;19240:16:0;:37;19236:165;;19323:51;19332:7;19341:5;19367:6;19348:16;:25;17983:346;-1:-1:-1;;;;;18085:19:0;;18077:68;;;;-1:-1:-1;;;18077:68:0;;9974:2:1;18077:68:0;;;9956:21:1;10013:2;9993:18;;;9986:30;10052:34;10032:18;;;10025:62;-1:-1:-1;;;10103:18:1;;;10096:34;10147:19;;18077:68:0;9772:400:1;18077:68:0;-1:-1:-1;;;;;18164:21:0;;18156:68;;;;-1:-1:-1;;;18156:68:0;;10379:2:1;18156:68:0;;;10361:21:1;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;-1:-1:-1;;;10508:18:1;;;10501:32;10550:19;;18156:68:0;10177:398:1;18156:68:0;-1:-1:-1;;;;;18237:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18289:32;;368:25:1;;;18289:32:0;;341:18:1;18289:32:0;;;;;;;17983:346;;;:::o;18620:419::-;18721:24;18748:25;18758:5;18765:7;18748:9;:25::i;:::-;18721:52;;-1:-1:-1;;18788:16:0;:37;18784:248;;18870:6;18850:16;:26;;18842:68;;;;-1:-1:-1;;;18842:68:0;;10782:2:1;18842:68:0;;;10764:21:1;10821:2;10801:18;;;10794:30;10860:31;10840:18;;;10833:59;10909:18;;18842:68:0;10580:353:1;18842:68:0;18954:51;18963:5;18970:7;18998:6;18979:16;:25;18954:8;:51::i;28765:2914::-;-1:-1:-1;;;;;28897:18:0;;28889:68;;;;-1:-1:-1;;;28889:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28976:16:0;;28968:64;;;;-1:-1:-1;;;28968:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29048:17:0;;;;;;:11;:17;;;;;;;;29047:18;:38;;;;-1:-1:-1;;;;;;29070:15:0;;;;;;:11;:15;;;;;;;;29069:16;29047:38;29043:117;;;29110:14;;;;;;;29102:46;;;;-1:-1:-1;;;29102:46:0;;11950:2:1;29102:46:0;;;11932:21:1;11989:2;11969:18;;;11962:30;-1:-1:-1;;;12008:18:1;;;12001:49;12067:18;;29102:46:0;11748:343:1;29102:46:0;-1:-1:-1;;;;;29177:21:0;;;;;;:15;:21;;;;;;;;29176:22;:46;;;;-1:-1:-1;;;;;;29203:19:0;;;;;;:15;:19;;;;;;;;29202:20;29176:46;29172:424;;;29250:13;;-1:-1:-1;;;;;29244:19:0;;;29250:13;;29244:19;29240:345;;29302:11;;29292:6;:21;;29284:95;;;;-1:-1:-1;;;29284:95:0;;12298:2:1;29284:95:0;;;12280:21:1;12337:2;12317:18;;;12310:30;12376:34;12356:18;;;12349:62;12447:31;12427:18;;;12420:59;12496:19;;29284:95:0;12096:425:1;29284:95:0;29456:15;;-1:-1:-1;;;;;10839:18:0;;10812:7;10839:18;;;;;;;;;;;29429:22;;:6;:22;:::i;:::-;29428:43;;29398:171;;;;-1:-1:-1;;;29398:171:0;;12728:2:1;29398:171:0;;;12710:21:1;12767:2;12747:18;;;12740:30;12806:34;12786:18;;;12779:62;-1:-1:-1;;;12857:18:1;;;12850:52;12919:19;;29398:171:0;12526:418:1;29398:171:0;-1:-1:-1;;;;;29655:17:0;;29608:22;29655:17;;;:11;:17;;;;;;29633:6;;29655:17;;29654:18;:38;;;;-1:-1:-1;;;;;;29677:15:0;;;;;;:11;:15;;;;;;;;29676:16;29654:38;29650:1970;;;29722:13;;-1:-1:-1;;;;;29714:21:0;;;29722:13;;29714:21;;:44;;-1:-1:-1;29745:13:0;;-1:-1:-1;;;;;29739:19:0;;;29745:13;;29739:19;29714:44;29709:1900;;;29798:11;;29788:6;:21;;29780:91;;;;-1:-1:-1;;;29780:91:0;;13151:2:1;29780:91:0;;;13133:21:1;13190:2;13170:18;;;13163:30;13229:34;13209:18;;;13202:62;13300:27;13280:18;;;13273:55;13345:19;;29780:91:0;12949:421:1;29780:91:0;29919:13;;-1:-1:-1;;;;;29919:21:0;;;:13;;:21;:66;;;;-1:-1:-1;;;;;;29966:19:0;;;;;;:15;:19;;;;;;;;29965:20;29919:66;:112;;;;-1:-1:-1;;;;;;30010:21:0;;30026:4;30010:21;;29919:112;29893:515;;;30096:14;30080:12;;;;:30;;;;;;;;:::i;:::-;;30076:111;;-1:-1:-1;;;;;30139:17:0;;;;;;:13;:17;;;;;:24;;-1:-1:-1;;30139:24:0;30159:4;30139:24;;;30076:111;30211:17;30257:3;30241:12;;30232:6;:21;;;;:::i;:::-;30231:29;;;;:::i;:::-;30211:49;;30283:47;30299:4;30313;30320:9;30283:15;:47::i;:::-;30370:18;30379:9;30370:6;:18;:::i;:::-;30353:35;;30051:357;29893:515;30454:13;;-1:-1:-1;;;;;30454:19:0;;;:13;;:19;:66;;;;-1:-1:-1;;;;;;30499:21:0;;;;;;:15;:21;;;;;;;;30498:22;30454:66;:110;;;;-1:-1:-1;;;;;;30545:19:0;;30559:4;30545:19;;30454:110;:147;;;;-1:-1:-1;30589:12:0;;;;;;;30454:147;:187;;;;-1:-1:-1;30628:13:0;;;;;;;30627:14;30454:187;30428:779;;;30724:13;;-1:-1:-1;;;;;30764:19:0;;30706:15;30764:19;;;:13;:19;;;;;;;;:27;;:19;:27;30760:103;;-1:-1:-1;30830:9:0;;30760:103;30887:13;:20;;-1:-1:-1;;30887:20:0;;;;;30930:16;:14;:16::i;:::-;30969:13;:21;;-1:-1:-1;;30969:21:0;;;30985:5;31056:3;31036:16;31045:7;31036:6;:16;:::i;:::-;31035:24;;;;:::i;:::-;31015:44;;31082:47;31098:4;31112;31119:9;31082:15;:47::i;:::-;31169:18;31178:9;31169:6;:18;:::i;:::-;31152:35;;30661:546;;30428:779;29709:1900;;;-1:-1:-1;;;;;31286:19:0;;;;;;:13;:19;;;;;;;;:27;;:19;:27;:71;;;;-1:-1:-1;31338:13:0;;-1:-1:-1;;;;;31338:19:0;;;:13;;:19;;31286:71;31260:334;;;31400:17;31443:3;31430:9;;31421:6;:18;;;;:::i;:::-;31420:26;;;;:::i;:::-;31400:46;;31469:47;31485:4;31499;31506:9;31469:15;:47::i;:::-;31556:18;31565:9;31556:6;:18;:::i;:::-;31539:35;;31377:217;31260:334;31630:41;31646:4;31652:2;31656:14;31630:15;:41::i;2388:132::-;2296:6;;-1:-1:-1;;;;;2296:6:0;845:10;2452:23;2444:68;;;;-1:-1:-1;;;2444:68:0;;14105:2:1;2444:68:0;;;14087:21:1;;;14124:18;;;14117:30;14183:34;14163:18;;;14156:62;14235:18;;2444:68:0;13903:356:1;3483:191:0;3576:6;;;-1:-1:-1;;;;;3593:17:0;;;-1:-1:-1;;;;;;3593:17:0;;;;;;;3626:40;;3576:6;;;3593:17;3576:6;;3626:40;;3557:16;;3626:40;3546:128;3483:191;:::o;14896:806::-;-1:-1:-1;;;;;14993:18:0;;14985:68;;;;-1:-1:-1;;;14985:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15072:16:0;;15064:64;;;;-1:-1:-1;;;15064:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15214:15:0;;15192:19;15214:15;;;;;;;;;;;15248:21;;;;15240:72;;;;-1:-1:-1;;;15240:72:0;;14466:2:1;15240:72:0;;;14448:21:1;14505:2;14485:18;;;14478:30;14544:34;14524:18;;;14517:62;-1:-1:-1;;;14595:18:1;;;14588:36;14641:19;;15240:72:0;14264:402:1;15240:72:0;-1:-1:-1;;;;;15348:15:0;;;:9;:15;;;;;;;;;;;15366:20;;;15348:38;;15566:13;;;;;;;;;;:23;;;;;;15618:26;;368:25:1;;;15566:13:0;;15618:26;;341:18:1;15618:26:0;;;;;;;15657:37;31687:486;32372:842;32440:4;10812:7;10839:18;;;;;;;;;;;32450:1;32422:29;32418:68;;32372:842::o;32418:68::-;32590:4;32496:19;10839:18;;;;;;;;;;;;32702:7;;-1:-1:-1;;;;;32702:7:0;10839:18;;;;;;32779:13;;32635:21;;10839:18;32496:19;;32756:36;;32752:444;;;32829:21;32813:37;;32869:42;32887:20;32909:1;32869:17;:42::i;:::-;32944:37;32968:13;32944:21;:37;:::i;:::-;32930:51;;33017:13;;33004:10;:26;33000:133;;;33087:7;:25;;33111:1;33087:25;;;33097:11;33087:25;33072:41;;:11;:41;:::i;:::-;33055:14;:58;33000:133;33169:11;33151:14;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;32526:681:0;;;;32407:807;32372:842::o;33564:588::-;33705:16;;;33719:1;33705:16;;;;;;;;33681:21;;33705:16;;;;;;;;;;-1:-1:-1;33705:16:0;33681:40;;33750:4;33732;33737:1;33732:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33732:23:0;;;-1:-1:-1;;;;;33732:23:0;;;;;33776:15;-1:-1:-1;;;;;33776:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33766:4;33771:1;33766:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33766:32:0;;;:7;;;;;;;;;:32;33811:111;;-1:-1:-1;;;33811:111:0;;33863:15;8517:32:1;;;33811:111:0;;;8499:51:1;-1:-1:-1;;8566:18:1;;;8559:34;33826:4:0;;33811:29;;8472:18:1;;33811:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;33935:209:0;;-1:-1:-1;;;33935:209:0;;-1:-1:-1;;;;;33935:15:0;:66;;;;:209;;34016:11;;34042:14;;34071:4;;34098;;34118:15;;33935:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33670:482;33564:588;;:::o;404:131:1:-;-1:-1:-1;;;;;479:31:1;;469:42;;459:70;;525:1;522;515:12;540:315;608:6;616;669:2;657:9;648:7;644:23;640:32;637:52;;;685:1;682;675:12;637:52;724:9;711:23;743:31;768:5;743:31;:::i;:::-;793:5;845:2;830:18;;;;817:32;;-1:-1:-1;;;540:315:1:o;860:548::-;972:4;1001:2;1030;1019:9;1012:21;1062:6;1056:13;1105:6;1100:2;1089:9;1085:18;1078:34;1130:1;1140:140;1154:6;1151:1;1148:13;1140:140;;;1249:14;;;1245:23;;1239:30;1215:17;;;1234:2;1211:26;1204:66;1169:10;;1140:140;;;1144:3;1329:1;1324:2;1315:6;1304:9;1300:22;1296:31;1289:42;1399:2;1392;1388:7;1383:2;1375:6;1371:15;1367:29;1356:9;1352:45;1348:54;1340:62;;;;860:548;;;;:::o;1605:247::-;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:52;;;1733:1;1730;1723:12;1685:52;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;:::-;1841:5;1605:247;-1:-1:-1;;;1605:247:1:o;2092:456::-;2169:6;2177;2185;2238:2;2226:9;2217:7;2213:23;2209:32;2206:52;;;2254:1;2251;2244:12;2206:52;2293:9;2280:23;2312:31;2337:5;2312:31;:::i;:::-;2362:5;-1:-1:-1;2419:2:1;2404:18;;2391:32;2432:33;2391:32;2432:33;:::i;:::-;2092:456;;2484:7;;-1:-1:-1;;;2538:2:1;2523:18;;;;2510:32;;2092:456::o;2742:388::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2926:9;2913:23;2945:31;2970:5;2945:31;:::i;:::-;2995:5;-1:-1:-1;3052:2:1;3037:18;;3024:32;3065:33;3024:32;3065:33;:::i;:::-;3117:7;3107:17;;;2742:388;;;;;:::o;3135:118::-;3221:5;3214:13;3207:21;3200:5;3197:32;3187:60;;3243:1;3240;3233:12;3258:382;3323:6;3331;3384:2;3372:9;3363:7;3359:23;3355:32;3352:52;;;3400:1;3397;3390:12;3352:52;3439:9;3426:23;3458:31;3483:5;3458:31;:::i;:::-;3508:5;-1:-1:-1;3565:2:1;3550:18;;3537:32;3578:30;3537:32;3578:30;:::i;3645:127::-;3706:10;3701:3;3697:20;3694:1;3687:31;3737:4;3734:1;3727:15;3761:4;3758:1;3751:15;3777:344;3925:2;3910:18;;3958:1;3947:13;;3937:144;;4003:10;3998:3;3994:20;3991:1;3984:31;4038:4;4035:1;4028:15;4066:4;4063:1;4056:15;3937:144;4090:25;;;3777:344;:::o;4258:251::-;4328:6;4381:2;4369:9;4360:7;4356:23;4352:32;4349:52;;;4397:1;4394;4387:12;4349:52;4429:9;4423:16;4448:31;4473:5;4448:31;:::i;4514:127::-;4575:10;4570:3;4566:20;4563:1;4556:31;4606:4;4603:1;4596:15;4630:4;4627:1;4620:15;4646:461;4699:3;4737:5;4731:12;4764:6;4759:3;4752:19;4790:4;4819:2;4814:3;4810:12;4803:19;;4856:2;4849:5;4845:14;4877:1;4887:195;4901:6;4898:1;4895:13;4887:195;;;4966:13;;-1:-1:-1;;;;;4962:39:1;4950:52;;5022:12;;;;5057:15;;;;4998:1;4916:9;4887:195;;;-1:-1:-1;5098:3:1;;4646:461;-1:-1:-1;;;;;4646:461:1:o;5112:510::-;5383:6;5372:9;5365:25;5426:3;5421:2;5410:9;5406:18;5399:31;5346:4;5447:57;5499:3;5488:9;5484:19;5476:6;5447:57;:::i;:::-;-1:-1:-1;;;;;5540:32:1;;;;5535:2;5520:18;;5513:60;-1:-1:-1;5604:2:1;5589:18;5582:34;5439:65;5112:510;-1:-1:-1;;5112:510:1:o;6007:245::-;6074:6;6127:2;6115:9;6106:7;6102:23;6098:32;6095:52;;;6143:1;6140;6133:12;6095:52;6175:9;6169:16;6194:28;6216:5;6194:28;:::i;6257:380::-;6336:1;6332:12;;;;6379;;;6400:61;;6454:4;6446:6;6442:17;6432:27;;6400:61;6507:2;6499:6;6496:14;6476:18;6473:38;6470:161;;6553:10;6548:3;6544:20;6541:1;6534:31;6588:4;6585:1;6578:15;6616:4;6613:1;6606:15;6470:161;;6257:380;;;:::o;7563:306::-;7651:6;7659;7667;7720:2;7708:9;7699:7;7695:23;7691:32;7688:52;;;7736:1;7733;7726:12;7688:52;7765:9;7759:16;7749:26;;7815:2;7804:9;7800:18;7794:25;7784:35;;7859:2;7848:9;7844:18;7838:25;7828:35;;7563:306;;;;;:::o;7874:127::-;7935:10;7930:3;7926:20;7923:1;7916:31;7966:4;7963:1;7956:15;7990:4;7987:1;7980:15;8006:125;8071:9;;;8092:10;;;8089:36;;;8105:18;;:::i;8136:184::-;8206:6;8259:2;8247:9;8238:7;8234:23;8230:32;8227:52;;;8275:1;8272;8265:12;8227:52;-1:-1:-1;8298:16:1;;8136:184;-1:-1:-1;8136:184:1:o;10938:401::-;11140:2;11122:21;;;11179:2;11159:18;;;11152:30;11218:34;11213:2;11198:18;;11191:62;-1:-1:-1;;;11284:2:1;11269:18;;11262:35;11329:3;11314:19;;10938:401::o;11344:399::-;11546:2;11528:21;;;11585:2;11565:18;;;11558:30;11624:34;11619:2;11604:18;;11597:62;-1:-1:-1;;;11690:2:1;11675:18;;11668:33;11733:3;11718:19;;11344:399::o;13375:168::-;13448:9;;;13479;;13496:15;;;13490:22;;13476:37;13466:71;;13517:18;;:::i;13548:217::-;13588:1;13614;13604:132;;13658:10;13653:3;13649:20;13646:1;13639:31;13693:4;13690:1;13683:15;13721:4;13718:1;13711:15;13604:132;-1:-1:-1;13750:9:1;;13548:217::o;13770:128::-;13837:9;;;13858:11;;;13855:37;;;13872:18;;:::i;14671:574::-;14962:6;14951:9;14944:25;15005:6;15000:2;14989:9;14985:18;14978:34;15048:3;15043:2;15032:9;15028:18;15021:31;14925:4;15069:57;15121:3;15110:9;15106:19;15098:6;15069:57;:::i;:::-;-1:-1:-1;;;;;15162:32:1;;;;15157:2;15142:18;;15135:60;-1:-1:-1;15226:3:1;15211:19;15204:35;15061:65;14671:574;-1:-1:-1;;;14671:574:1:o

Swarm Source

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