ETH Price: $2,441.94 (+1.53%)

Token

Gambi Fi (GAMBI)
 

Overview

Max Total Supply

1,000,000 GAMBI

Holders

319

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
469.452201976088246956 GAMBI

Value
$0.00
0xc58c1b39a3dfdc6f9df8e8f102ba2b0c8e3f7da0
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:
GambiToken

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-11
*/

// SPDX-License-Identifier: MIT
// 
//                                          https://gambi.fi
//                                        https://t.me./gambifi
//                                        https://docs.azuro.org - Gambi Docs based off Azuro
//                                     https://twitter.com/gambifi
// 
//                                          $GAMBI Token Contract
//                      The purpose of this contract is to provide incentivisation of the Gambi protocol.
//                      - 4% to the revenue split helper (20% of revenue to holders)
//                                  - 1% to Liquidity Pool (automatic)
// 

pragma solidity 0.8.26;

/**
 * @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;
    }
}

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

    /**
     * @dev 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;
        }
        _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 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 {}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract GambiToken is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool private swapping;

    address public immutable revShareWallet;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;

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

    // Store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Gambi Fi", "GAMBI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //Uniswap V2 Router
        );

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

        // Creates the Uniswap Pair
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyRevShareFee = 8; // Lowered to 4% after launch
        uint256 _buyLiquidityFee = 2; // Lowered to 1% after launch

        uint256 _sellRevShareFee = 8; // Lowered to 4% after launch
        uint256 _sellLiquidityFee = 2; // Lowered to 1% after launch

        uint256 totalSupply = 1_000_000 * 1e18; // 1 million

        maxTransactionAmount = 2500 * 1e18; // 0.25%
        maxWallet = 2500 * 1e18; // 0.25% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee;

        revShareWallet = address(0xE2Dc0a1790E983b3c0b15fA42eb01feA45730388); // Set as revShare wallet - Helper Contract

        // Exclude from paying fees or having max transaction amount if; is owner, is deployer, is dead address. 
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

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

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

    receive() external payable {}

    // Will enable trading, once this is toggeled, it will not be able to be turned off.
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // Trigger this post launch once price is more stable. Made to avoid whales and snipers hogging supply.
    function updateLimitsAndFees() external onlyOwner {
        maxTransactionAmount = 10_000 * (10**18); // 1%
        maxWallet = 25_000 * (10**18); // 2.5%
    
        buyRevShareFee = 4; // 4%
        buyLiquidityFee = 1; // 1%
        buyTotalFees = 5;

        sellRevShareFee = 4; // 4%
        sellLiquidityFee = 1; // 1%
        sellTotalFees = 5;
    }

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

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // Only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // Sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // Buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

        // Make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // Accept any amount of ETH; ignore slippage
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // Slippage is unavoidable
            0, // Slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForRevShare;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;

        uint256 ethForRevShare = (ethBalance * tokensForRevShare) / (totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForLiquidity = ethBalance - ethForRevShare;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        tokensForLiquidity = 0;
        tokensForRevShare = 0;

        (success, ) = address(revShareWallet).call{value: address(this).balance}("");
    }
        
    // The helper contract will also be used to be able to call the 5 functions below. 
    // Any functions that have to do with ETH or Tokens will be sent directly to the helper contract. 
    // This means that the split of 80% to the team, and 20% to the holders is intact.
    modifier onlyHelper() {
        require(revShareWallet == _msgSender(), "Token: caller is not the Helper");
        _;
    }

    // @Helper - Callable by Helper contract in-case tokens get's stuck in the token contract.
    function withdrawStuckToken(address _token, address _to) external onlyHelper {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    // @Helper - Callable by Helper contract in-case ETH get's stuck in the token contract.
    function withdrawStuckEth(address toAddr) external onlyHelper {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @Helper - Blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyHelper {
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @Helper - Unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyHelper {
        blacklisted[_addr] = false;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"updateLimitsAndFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101006040526008805461ffff1916905534801561001b575f80fd5b506040518060400160405280600881526020016747616d626920466960c01b8152506040518060400160405280600581526020016447414d424960d81b815250816003908161006a919061065c565b506004610077828261065c565b50505061009061008b61032160201b60201c565b610325565b737a250d5630b4cf539739df2c5dacb4c659f2488d6100b0816001610376565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156100f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061011c9190610716565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610167573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018b9190610716565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156101d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101f99190610716565b6001600160a01b031660a0819052610212906001610376565b60a0516102209060016103ec565b68878678326eac900000600681905560075560086002818169d3c21bcecceda1000000612710610251826005610757565b61025b9190610774565b60e052600b859055600c8490556102728486610793565b600a55600e839055600f8290556102898284610793565b600d5573e2dc0a1790e983b3c0b15fa42eb01fea4573038860c0526102c06102b96005546001600160a01b031690565b600161043f565b6102cb30600161043f565b6102d861dead600161043f565b6102f46102ed6005546001600160a01b031690565b6001610376565b6102ff306001610376565b61030c61dead6001610376565b61031633826104e4565b5050505050506107a6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b031633146103c25760405162461bcd60e51b815260206004820181905260248201525f8051602061309983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146104865760405162461bcd60e51b815260206004820181905260248201525f8051602061309983398151915260448201526064016103b9565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821661053a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b9565b8060025f82825461054b9190610793565b90915550506001600160a01b0382165f9081526020819052604081208054839290610577908490610793565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806105ed57607f821691505b60208210810361060b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156105c057805f5260205f20601f840160051c810160208510156106365750805b601f840160051c820191505b81811015610655575f8155600101610642565b5050505050565b81516001600160401b03811115610675576106756105c5565b6106898161068384546105d9565b84610611565b6020601f8211600181146106bb575f83156106a45750848201515b5f19600385901b1c1916600184901b178455610655565b5f84815260208120601f198516915b828110156106ea57878501518255602094850194600190920191016106ca565b508482101561070757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610726575f80fd5b81516001600160a01b038116811461073c575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761076e5761076e610743565b92915050565b5f8261078e57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561076e5761076e610743565b60805160a05160c05160e0516128576108425f395f81816107cb01528181611adb0152818161208401526120b601525f81816105b101528181610b1001528181610ba801528181610f59015281816111f301526121dc01525f818161048c01528181610d53015261126b01525f8181610395015281816122a50152818161235c015281816123b101528181612425015261244c01526128575ff3fe6080604052600436106102cf575f3560e01c80637ca8448a1161017b578063c0246668116100d1578063e2f4560511610087578063f637434211610062578063f637434214610821578063f8b45b0514610836578063fe575a871461084b575f80fd5b8063e2f45605146107ba578063f11a24d3146107ed578063f2fde38b14610802575f80fd5b8063d85ba063116100b7578063d85ba06314610742578063dd62ed3e14610757578063e19b28231461079b575f80fd5b8063c02466681461070e578063c8c8ebe41461072d575f80fd5b80639c6868af11610131578063b62496f51161010c578063b62496f5146106a8578063bbc0c742146106d6578063bc205ad3146106ef575f80fd5b80639c6868af14610656578063a457c2d71461066a578063a9059cbb14610689575f80fd5b80638da5cb5b116101615780638da5cb5b1461060657806395d89b41146106235780639a7a23d614610637575f80fd5b80637ca8448a146105d35780638a8c523c146105f2575f80fd5b8063313ce567116102305780636ddd1713116101e65780637571336a116101c15780637571336a1461056257806375e3661e14610581578063782c4e99146105a0575f80fd5b80636ddd1713146104fa57806370a0823114610518578063715018a61461054c575f80fd5b806349bd5a5e1161021657806349bd5a5e1461047b5780634fbee193146104ae5780636a486a8e146104e5575f80fd5b8063313ce56714610441578063395093511461045c575f80fd5b806318160ddd116102855780631a8145bb1161026b5780631a8145bb146103f857806323b872dd1461040d57806324b9f3c11461042c575f80fd5b806318160ddd146103cf57806319eab042146103e3575f80fd5b806310d5de53116102b557806310d5de5314610333578063156c2f35146103615780631694505e14610384575f80fd5b806306fdde03146102da578063095ea7b314610304575f80fd5b366102d657005b5f80fd5b3480156102e5575f80fd5b506102ee610882565b6040516102fb919061253a565b60405180910390f35b34801561030f575f80fd5b5061032361031e366004612583565b610912565b60405190151581526020016102fb565b34801561033e575f80fd5b5061032361034d3660046125ad565b60136020525f908152604090205460ff1681565b34801561036c575f80fd5b50610376600b5481565b6040519081526020016102fb565b34801561038f575f80fd5b506103b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102fb565b3480156103da575f80fd5b50600254610376565b3480156103ee575f80fd5b50610376600e5481565b348015610403575f80fd5b5061037660115481565b348015610418575f80fd5b506103236104273660046125cf565b610928565b348015610437575f80fd5b5061037660105481565b34801561044c575f80fd5b50604051601281526020016102fb565b348015610467575f80fd5b50610323610476366004612583565b6109ea565b348015610486575f80fd5b506103b77f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b9575f80fd5b506103236104c83660046125ad565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156104f0575f80fd5b50610376600d5481565b348015610505575f80fd5b5060085461032390610100900460ff1681565b348015610523575f80fd5b506103766105323660046125ad565b6001600160a01b03165f9081526020819052604090205490565b348015610557575f80fd5b50610560610a25565b005b34801561056d575f80fd5b5061056061057c36600461261a565b610a8a565b34801561058c575f80fd5b5061056061059b3660046125ad565b610b0e565b3480156105ab575f80fd5b506103b77f000000000000000000000000000000000000000000000000000000000000000081565b3480156105de575f80fd5b506105606105ed3660046125ad565b610ba6565b3480156105fd575f80fd5b50610560610c7d565b348015610611575f80fd5b506005546001600160a01b03166103b7565b34801561062e575f80fd5b506102ee610ce8565b348015610642575f80fd5b5061056061065136600461261a565b610cf7565b348015610661575f80fd5b50610560610e02565b348015610675575f80fd5b50610323610684366004612583565b610e9b565b348015610694575f80fd5b506103236106a3366004612583565b610f4b565b3480156106b3575f80fd5b506103236106c23660046125ad565b60146020525f908152604090205460ff1681565b3480156106e1575f80fd5b506008546103239060ff1681565b3480156106fa575f80fd5b50610560610709366004612651565b610f57565b348015610719575f80fd5b5061056061072836600461261a565b611139565b348015610738575f80fd5b5061037660065481565b34801561074d575f80fd5b50610376600a5481565b348015610762575f80fd5b50610376610771366004612651565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107a6575f80fd5b506105606107b53660046125ad565b6111f1565b3480156107c5575f80fd5b506103767f000000000000000000000000000000000000000000000000000000000000000081565b3480156107f8575f80fd5b50610376600c5481565b34801561080d575f80fd5b5061056061081c3660046125ad565b61135d565b34801561082c575f80fd5b50610376600f5481565b348015610841575f80fd5b5061037660075481565b348015610856575f80fd5b506103236108653660046125ad565b6001600160a01b03165f9081526009602052604090205460ff1690565b6060600380546108919061267d565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd9061267d565b80156109085780601f106108df57610100808354040283529160200191610908565b820191905f5260205f20905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b5f61091e33848461143f565b5060015b92915050565b5f610934848484611596565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109d25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109df853385840361143f565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161091e918590610a209086906126c9565b61143f565b6005546001600160a01b03163314610a7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b610a885f611da6565b565b6005546001600160a01b03163314610ae45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610b865760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610c1e5760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610c67576040519150601f19603f3d011682016040523d82523d5f602084013e610c6c565b606091505b5050905080610c79575f80fd5b5050565b6005546001600160a01b03163314610cd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6008805461ffff1916610101179055565b6060600480546108919061267d565b6005546001600160a01b03163314610d515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610df85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109c9565b610c798282611e0f565b6005546001600160a01b03163314610e5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b69021e19e0c9bab240000060065569054b40b1f852bda000006007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610f345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109c9565b610f41338585840361143f565b5060019392505050565b5f61091e338484611596565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610fcf5760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b6001600160a01b0382166110255760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064016109c9565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611082573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a691906126dc565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561110f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061113391906126f3565b50505050565b6005546001600160a01b031633146111935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146112695760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316141580156112c857506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61133a5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e00000000000000000000000000000000000060648201526084016109c9565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146113b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6001600160a01b0381166114335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109c9565b61143c81611da6565b50565b6001600160a01b0383166114ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109c9565b6001600160a01b0382166115365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109c9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109c9565b6001600160a01b03821661165c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109c9565b6001600160a01b0383165f9081526009602052604090205460ff16156116c45760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c6973746564000000000000000000000000000060448201526064016109c9565b6001600160a01b0382165f9081526009602052604090205460ff161561172c5760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c697374656400000000000000000000000060448201526064016109c9565b805f036117435761173e83835f611e62565b505050565b6005546001600160a01b0384811691161480159061176f57506005546001600160a01b03838116911614155b801561178357506001600160a01b03821615155b801561179a57506001600160a01b03821661dead14155b80156117b05750600554600160a01b900460ff16155b15611aca5760085460ff16611848576001600160a01b0383165f9081526012602052604090205460ff16806117fc57506001600160a01b0382165f9081526012602052604090205460ff165b6118485760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016109c9565b6001600160a01b0383165f9081526014602052604090205460ff16801561188757506001600160a01b0382165f9081526013602052604090205460ff16155b1561197c576006548111156119045760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e000000000000000000000060648201526084016109c9565b6007546001600160a01b0383165f9081526020819052604090205461192990836126c9565b11156119775760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109c9565b611aca565b6001600160a01b0382165f9081526014602052604090205460ff1680156119bb57506001600160a01b0383165f9081526013602052604090205460ff16155b15611a38576006548111156119775760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e0000000000000000000060648201526084016109c9565b6001600160a01b0382165f9081526013602052604090205460ff16611aca576007546001600160a01b0383165f90815260208190526040902054611a7c90836126c9565b1115611aca5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109c9565b305f908152602081905260409020547f000000000000000000000000000000000000000000000000000000000000000081108015908190611b125750600854610100900460ff165b8015611b285750600554600160a01b900460ff16155b8015611b4c57506001600160a01b0385165f9081526014602052604090205460ff16155b8015611b7057506001600160a01b0385165f9081526012602052604090205460ff16155b8015611b9457506001600160a01b0384165f9081526012602052604090205460ff16155b15611bc2576005805460ff60a01b1916600160a01b179055611bb4612045565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b909204821615911680611c0e57506001600160a01b0385165f9081526012602052604090205460ff165b15611c1657505f5b5f8115611d92576001600160a01b0386165f9081526014602052604090205460ff168015611c4557505f600d54115b15611ccb576064600d5486611c5a919061270e565b611c649190612725565b9050600d54600f5482611c77919061270e565b611c819190612725565b60115f828254611c9191906126c9565b9091555050600d54600e54611ca6908361270e565b611cb09190612725565b60105f828254611cc091906126c9565b90915550611d749050565b6001600160a01b0387165f9081526014602052604090205460ff168015611cf357505f600a54115b15611d74576064600a5486611d08919061270e565b611d129190612725565b9050600a54600c5482611d25919061270e565b611d2f9190612725565b60115f828254611d3f91906126c9565b9091555050600a54600b54611d54908361270e565b611d5e9190612725565b60105f828254611d6e91906126c9565b90915550505b8015611d8557611d85873083611e62565b611d8f8186612744565b94505b611d9d878787611e62565b50505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ec65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109c9565b6001600160a01b038216611f285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109c9565b6001600160a01b0383165f9081526020819052604090205481811015611fb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109c9565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611fec9084906126c9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161203891815260200190565b60405180910390a3611133565b305f9081526020819052604081205490505f60105460115461206791906126c9565b90505f821580612075575081155b1561207f57505050565b6120aa7f0000000000000000000000000000000000000000000000000000000000000000601461270e565b8311156120df576120dc7f0000000000000000000000000000000000000000000000000000000000000000601461270e565b92505b5f600283601154866120f1919061270e565b6120fb9190612725565b6121059190612725565b90505f6121128286612744565b90504761211e82612250565b5f6121298247612744565b90505f600260115461213b9190612725565b6121459088612744565b601054612152908461270e565b61215c9190612725565b90505f6121698284612744565b90505f8611801561217957505f81115b156121cc57612188868261241f565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f811461223d576040519150601f19603f3d011682016040523d82523d5f602084013e612242565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061228357612283612757565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122ff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612323919061276b565b8160018151811061233657612336612757565b60200260200101906001600160a01b031690816001600160a01b031681525050612381307f00000000000000000000000000000000000000000000000000000000000000008461143f565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123ee9085905f90869030904290600401612786565b5f604051808303815f87803b158015612405575f80fd5b505af1158015612417573d5f803e3d5ffd5b505050505050565b61244a307f00000000000000000000000000000000000000000000000000000000000000008461143f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806124906005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561250e573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061253391906127f6565b5050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461143c575f80fd5b5f8060408385031215612594575f80fd5b823561259f8161256f565b946020939093013593505050565b5f602082840312156125bd575f80fd5b81356125c88161256f565b9392505050565b5f805f606084860312156125e1575f80fd5b83356125ec8161256f565b925060208401356125fc8161256f565b929592945050506040919091013590565b801515811461143c575f80fd5b5f806040838503121561262b575f80fd5b82356126368161256f565b915060208301356126468161260d565b809150509250929050565b5f8060408385031215612662575f80fd5b823561266d8161256f565b915060208301356126468161256f565b600181811c9082168061269157607f821691505b6020821081036126af57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610922576109226126b5565b5f602082840312156126ec575f80fd5b5051919050565b5f60208284031215612703575f80fd5b81516125c88161260d565b8082028115828204841417610922576109226126b5565b5f8261273f57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610922576109226126b5565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561277b575f80fd5b81516125c88161256f565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127d65783516001600160a01b03168352602093840193909201916001016127af565b50506001600160a01b039590951660608401525050608001529392505050565b5f805f60608486031215612808575f80fd5b505081516020830151604090930151909492935091905056fea264697066735822122088eccd19eeb41c1c5c927b35cae7dd4794e4bd4aa12e4025741e2325077cbca464736f6c634300081a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102cf575f3560e01c80637ca8448a1161017b578063c0246668116100d1578063e2f4560511610087578063f637434211610062578063f637434214610821578063f8b45b0514610836578063fe575a871461084b575f80fd5b8063e2f45605146107ba578063f11a24d3146107ed578063f2fde38b14610802575f80fd5b8063d85ba063116100b7578063d85ba06314610742578063dd62ed3e14610757578063e19b28231461079b575f80fd5b8063c02466681461070e578063c8c8ebe41461072d575f80fd5b80639c6868af11610131578063b62496f51161010c578063b62496f5146106a8578063bbc0c742146106d6578063bc205ad3146106ef575f80fd5b80639c6868af14610656578063a457c2d71461066a578063a9059cbb14610689575f80fd5b80638da5cb5b116101615780638da5cb5b1461060657806395d89b41146106235780639a7a23d614610637575f80fd5b80637ca8448a146105d35780638a8c523c146105f2575f80fd5b8063313ce567116102305780636ddd1713116101e65780637571336a116101c15780637571336a1461056257806375e3661e14610581578063782c4e99146105a0575f80fd5b80636ddd1713146104fa57806370a0823114610518578063715018a61461054c575f80fd5b806349bd5a5e1161021657806349bd5a5e1461047b5780634fbee193146104ae5780636a486a8e146104e5575f80fd5b8063313ce56714610441578063395093511461045c575f80fd5b806318160ddd116102855780631a8145bb1161026b5780631a8145bb146103f857806323b872dd1461040d57806324b9f3c11461042c575f80fd5b806318160ddd146103cf57806319eab042146103e3575f80fd5b806310d5de53116102b557806310d5de5314610333578063156c2f35146103615780631694505e14610384575f80fd5b806306fdde03146102da578063095ea7b314610304575f80fd5b366102d657005b5f80fd5b3480156102e5575f80fd5b506102ee610882565b6040516102fb919061253a565b60405180910390f35b34801561030f575f80fd5b5061032361031e366004612583565b610912565b60405190151581526020016102fb565b34801561033e575f80fd5b5061032361034d3660046125ad565b60136020525f908152604090205460ff1681565b34801561036c575f80fd5b50610376600b5481565b6040519081526020016102fb565b34801561038f575f80fd5b506103b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102fb565b3480156103da575f80fd5b50600254610376565b3480156103ee575f80fd5b50610376600e5481565b348015610403575f80fd5b5061037660115481565b348015610418575f80fd5b506103236104273660046125cf565b610928565b348015610437575f80fd5b5061037660105481565b34801561044c575f80fd5b50604051601281526020016102fb565b348015610467575f80fd5b50610323610476366004612583565b6109ea565b348015610486575f80fd5b506103b77f000000000000000000000000d1efb6c1d2dabd1a671b301cc9d1b33ce7256d0781565b3480156104b9575f80fd5b506103236104c83660046125ad565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156104f0575f80fd5b50610376600d5481565b348015610505575f80fd5b5060085461032390610100900460ff1681565b348015610523575f80fd5b506103766105323660046125ad565b6001600160a01b03165f9081526020819052604090205490565b348015610557575f80fd5b50610560610a25565b005b34801561056d575f80fd5b5061056061057c36600461261a565b610a8a565b34801561058c575f80fd5b5061056061059b3660046125ad565b610b0e565b3480156105ab575f80fd5b506103b77f000000000000000000000000e2dc0a1790e983b3c0b15fa42eb01fea4573038881565b3480156105de575f80fd5b506105606105ed3660046125ad565b610ba6565b3480156105fd575f80fd5b50610560610c7d565b348015610611575f80fd5b506005546001600160a01b03166103b7565b34801561062e575f80fd5b506102ee610ce8565b348015610642575f80fd5b5061056061065136600461261a565b610cf7565b348015610661575f80fd5b50610560610e02565b348015610675575f80fd5b50610323610684366004612583565b610e9b565b348015610694575f80fd5b506103236106a3366004612583565b610f4b565b3480156106b3575f80fd5b506103236106c23660046125ad565b60146020525f908152604090205460ff1681565b3480156106e1575f80fd5b506008546103239060ff1681565b3480156106fa575f80fd5b50610560610709366004612651565b610f57565b348015610719575f80fd5b5061056061072836600461261a565b611139565b348015610738575f80fd5b5061037660065481565b34801561074d575f80fd5b50610376600a5481565b348015610762575f80fd5b50610376610771366004612651565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156107a6575f80fd5b506105606107b53660046125ad565b6111f1565b3480156107c5575f80fd5b506103767f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081565b3480156107f8575f80fd5b50610376600c5481565b34801561080d575f80fd5b5061056061081c3660046125ad565b61135d565b34801561082c575f80fd5b50610376600f5481565b348015610841575f80fd5b5061037660075481565b348015610856575f80fd5b506103236108653660046125ad565b6001600160a01b03165f9081526009602052604090205460ff1690565b6060600380546108919061267d565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd9061267d565b80156109085780601f106108df57610100808354040283529160200191610908565b820191905f5260205f20905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b5f61091e33848461143f565b5060015b92915050565b5f610934848484611596565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156109d25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109df853385840361143f565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161091e918590610a209086906126c9565b61143f565b6005546001600160a01b03163314610a7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b610a885f611da6565b565b6005546001600160a01b03163314610ae45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6001600160a01b03919091165f908152601360205260409020805460ff1916911515919091179055565b7f000000000000000000000000e2dc0a1790e983b3c0b15fa42eb01fea457303886001600160a01b03163314610b865760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b6001600160a01b03165f908152600960205260409020805460ff19169055565b7f000000000000000000000000e2dc0a1790e983b3c0b15fa42eb01fea457303886001600160a01b03163314610c1e5760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610c67576040519150601f19603f3d011682016040523d82523d5f602084013e610c6c565b606091505b5050905080610c79575f80fd5b5050565b6005546001600160a01b03163314610cd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6008805461ffff1916610101179055565b6060600480546108919061267d565b6005546001600160a01b03163314610d515760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b7f000000000000000000000000d1efb6c1d2dabd1a671b301cc9d1b33ce7256d076001600160a01b0316826001600160a01b031603610df85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109c9565b610c798282611e0f565b6005546001600160a01b03163314610e5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b69021e19e0c9bab240000060065569054b40b1f852bda000006007556004600b8190556001600c8190556005600a819055600e92909255600f55600d55565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610f345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109c9565b610f41338585840361143f565b5060019392505050565b5f61091e338484611596565b7f000000000000000000000000e2dc0a1790e983b3c0b15fa42eb01fea457303886001600160a01b03163314610fcf5760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b6001600160a01b0382166110255760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064016109c9565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611082573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a691906126dc565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561110f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061113391906126f3565b50505050565b6005546001600160a01b031633146111935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b7f000000000000000000000000e2dc0a1790e983b3c0b15fa42eb01fea457303886001600160a01b031633146112695760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e3a2063616c6c6572206973206e6f74207468652048656c7065720060448201526064016109c9565b7f000000000000000000000000d1efb6c1d2dabd1a671b301cc9d1b33ce7256d076001600160a01b0316816001600160a01b0316141580156112c857506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61133a5760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e00000000000000000000000000000000000060648201526084016109c9565b6001600160a01b03165f908152600960205260409020805460ff19166001179055565b6005546001600160a01b031633146113b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c9565b6001600160a01b0381166114335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109c9565b61143c81611da6565b50565b6001600160a01b0383166114ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109c9565b6001600160a01b0382166115365760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109c9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109c9565b6001600160a01b03821661165c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109c9565b6001600160a01b0383165f9081526009602052604090205460ff16156116c45760405162461bcd60e51b815260206004820152601260248201527f53656e64657220626c61636b6c6973746564000000000000000000000000000060448201526064016109c9565b6001600160a01b0382165f9081526009602052604090205460ff161561172c5760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c697374656400000000000000000000000060448201526064016109c9565b805f036117435761173e83835f611e62565b505050565b6005546001600160a01b0384811691161480159061176f57506005546001600160a01b03838116911614155b801561178357506001600160a01b03821615155b801561179a57506001600160a01b03821661dead14155b80156117b05750600554600160a01b900460ff16155b15611aca5760085460ff16611848576001600160a01b0383165f9081526012602052604090205460ff16806117fc57506001600160a01b0382165f9081526012602052604090205460ff165b6118485760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e0000000000000000000060448201526064016109c9565b6001600160a01b0383165f9081526014602052604090205460ff16801561188757506001600160a01b0382165f9081526013602052604090205460ff16155b1561197c576006548111156119045760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e000000000000000000000060648201526084016109c9565b6007546001600160a01b0383165f9081526020819052604090205461192990836126c9565b11156119775760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109c9565b611aca565b6001600160a01b0382165f9081526014602052604090205460ff1680156119bb57506001600160a01b0383165f9081526013602052604090205460ff16155b15611a38576006548111156119775760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e0000000000000000000060648201526084016109c9565b6001600160a01b0382165f9081526013602052604090205460ff16611aca576007546001600160a01b0383165f90815260208190526040902054611a7c90836126c9565b1115611aca5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c65742065786365656465640000000000000000000000000060448201526064016109c9565b305f908152602081905260409020547f00000000000000000000000000000000000000000000001b1ae4d6e2ef50000081108015908190611b125750600854610100900460ff165b8015611b285750600554600160a01b900460ff16155b8015611b4c57506001600160a01b0385165f9081526014602052604090205460ff16155b8015611b7057506001600160a01b0385165f9081526012602052604090205460ff16155b8015611b9457506001600160a01b0384165f9081526012602052604090205460ff16155b15611bc2576005805460ff60a01b1916600160a01b179055611bb4612045565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526012602052604090205460ff600160a01b909204821615911680611c0e57506001600160a01b0385165f9081526012602052604090205460ff165b15611c1657505f5b5f8115611d92576001600160a01b0386165f9081526014602052604090205460ff168015611c4557505f600d54115b15611ccb576064600d5486611c5a919061270e565b611c649190612725565b9050600d54600f5482611c77919061270e565b611c819190612725565b60115f828254611c9191906126c9565b9091555050600d54600e54611ca6908361270e565b611cb09190612725565b60105f828254611cc091906126c9565b90915550611d749050565b6001600160a01b0387165f9081526014602052604090205460ff168015611cf357505f600a54115b15611d74576064600a5486611d08919061270e565b611d129190612725565b9050600a54600c5482611d25919061270e565b611d2f9190612725565b60115f828254611d3f91906126c9565b9091555050600a54600b54611d54908361270e565b611d5e9190612725565b60105f828254611d6e91906126c9565b90915550505b8015611d8557611d85873083611e62565b611d8f8186612744565b94505b611d9d878787611e62565b50505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ec65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109c9565b6001600160a01b038216611f285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109c9565b6001600160a01b0383165f9081526020819052604090205481811015611fb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109c9565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611fec9084906126c9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161203891815260200190565b60405180910390a3611133565b305f9081526020819052604081205490505f60105460115461206791906126c9565b90505f821580612075575081155b1561207f57505050565b6120aa7f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000601461270e565b8311156120df576120dc7f00000000000000000000000000000000000000000000001b1ae4d6e2ef500000601461270e565b92505b5f600283601154866120f1919061270e565b6120fb9190612725565b6121059190612725565b90505f6121128286612744565b90504761211e82612250565b5f6121298247612744565b90505f600260115461213b9190612725565b6121459088612744565b601054612152908461270e565b61215c9190612725565b90505f6121698284612744565b90505f8611801561217957505f81115b156121cc57612188868261241f565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f601181905560108190556040517f000000000000000000000000e2dc0a1790e983b3c0b15fa42eb01fea457303886001600160a01b03169147919081818185875af1925050503d805f811461223d576040519150601f19603f3d011682016040523d82523d5f602084013e612242565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061228357612283612757565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122ff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612323919061276b565b8160018151811061233657612336612757565b60200260200101906001600160a01b031690816001600160a01b031681525050612381307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461143f565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123ee9085905f90869030904290600401612786565b5f604051808303815f87803b158015612405575f80fd5b505af1158015612417573d5f803e3d5ffd5b505050505050565b61244a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461143f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806124906005546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561250e573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061253391906127f6565b5050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461143c575f80fd5b5f8060408385031215612594575f80fd5b823561259f8161256f565b946020939093013593505050565b5f602082840312156125bd575f80fd5b81356125c88161256f565b9392505050565b5f805f606084860312156125e1575f80fd5b83356125ec8161256f565b925060208401356125fc8161256f565b929592945050506040919091013590565b801515811461143c575f80fd5b5f806040838503121561262b575f80fd5b82356126368161256f565b915060208301356126468161260d565b809150509250929050565b5f8060408385031215612662575f80fd5b823561266d8161256f565b915060208301356126468161256f565b600181811c9082168061269157607f821691505b6020821081036126af57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610922576109226126b5565b5f602082840312156126ec575f80fd5b5051919050565b5f60208284031215612703575f80fd5b81516125c88161260d565b8082028115828204841417610922576109226126b5565b5f8261273f57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610922576109226126b5565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561277b575f80fd5b81516125c88161256f565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127d65783516001600160a01b03168352602093840193909201916001016127af565b50506001600160a01b039590951660608401525050608001529392505050565b5f805f60608486031215612808575f80fd5b505081516020830151604090930151909492935091905056fea264697066735822122088eccd19eeb41c1c5c927b35cae7dd4794e4bd4aa12e4025741e2325077cbca464736f6c634300081a0033

Deployed Bytecode Sourcemap

31547:13978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9506:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11673:169;;;;;;;;;;-1:-1:-1;11673:169:0;;;;;:::i;:::-;;:::i;:::-;;;1133:14:1;;1126:22;1108:41;;1096:2;1081:18;11673:169:0;968:187:1;32494:63:0;;;;;;;;;;-1:-1:-1;32494:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32114:29;;;;;;;;;;;;;;;;;;;1558:25:1;;;1546:2;1531:18;32114:29:0;1412:177:1;31594:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1785:55:1;;;1767:74;;1755:2;1740:18;31594:51:0;1594:253:1;10626:108:0;;;;;;;;;;-1:-1:-1;10714:12:0;;10626:108;;32224:30;;;;;;;;;;;;;;;;32340:33;;;;;;;;;;;;;;;;12324:492;;;;;;;;;;-1:-1:-1;12324:492:0;;;;;:::i;:::-;;:::i;32301:32::-;;;;;;;;;;;;;;;;10468:93;;;;;;;;;;-1:-1:-1;10468:93:0;;10551:2;2507:36:1;;2495:2;2480:18;10468:93:0;2365:184:1;13225:215:0;;;;;;;;;;-1:-1:-1;13225:215:0;;;;;:::i;:::-;;:::i;31652:38::-;;;;;;;;;;;;;;;36992:126;;;;;;;;;;-1:-1:-1;36992:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;37082:28:0;37058:4;37082:28;;;:19;:28;;;;;;;;;36992:126;32189:28;;;;;;;;;;;;;;;;31940:31;;;;;;;;;;-1:-1:-1;31940:31:0;;;;;;;;;;;10797:127;;;;;;;;;;-1:-1:-1;10797:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10898:18:0;10871:7;10898:18;;;;;;;;;;;;10797:127;3023:103;;;;;;;;;;;;;:::i;:::-;;36119:167;;;;;;;;;;-1:-1:-1;36119:167:0;;;;;:::i;:::-;;:::i;45421:99::-;;;;;;;;;;-1:-1:-1;45421:99:0;;;;;:::i;:::-;;:::i;31727:39::-;;;;;;;;;;;;;;;44650:197;;;;;;;;;;-1:-1:-1;44650:197:0;;;;;:::i;:::-;;:::i;35512:112::-;;;;;;;;;;;;;:::i;2372:87::-;;;;;;;;;;-1:-1:-1;2445:6:0;;-1:-1:-1;;;;;2445:6:0;2372:87;;9725:104;;;;;;;;;;;;;:::i;36484:304::-;;;;;;;;;;-1:-1:-1;36484:304:0;;;;;:::i;:::-;;:::i;35741:370::-;;;;;;;;;;;;;:::i;13943:413::-;;;;;;;;;;-1:-1:-1;13943:413:0;;;;;:::i;:::-;;:::i;11137:175::-;;;;;;;;;;-1:-1:-1;11137:175:0;;;;;:::i;:::-;;:::i;32715:57::-;;;;;;;;;;-1:-1:-1;32715:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31900:33;;;;;;;;;;-1:-1:-1;31900:33:0;;;;;;;;44260:289;;;;;;;;;;-1:-1:-1;44260:289:0;;;;;:::i;:::-;;:::i;36294:182::-;;;;;;;;;;-1:-1:-1;36294:182:0;;;;;:::i;:::-;;:::i;31775:35::-;;;;;;;;;;;;;;;;32080:27;;;;;;;;;;;;;;;;11375:151;;;;;;;;;;-1:-1:-1;11375:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11491:18:0;;;11464:7;11491:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11375:151;44955:328;;;;;;;;;;-1:-1:-1;44955:328:0;;;;;:::i;:::-;;:::i;31817:43::-;;;;;;;;;;;;;;;32150:30;;;;;;;;;;;;;;;;3281:201;;;;;;;;;;-1:-1:-1;3281:201:0;;;;;:::i;:::-;;:::i;32261:31::-;;;;;;;;;;;;;;;;31867:24;;;;;;;;;;;;;;;;37126:113;;;;;;;;;;-1:-1:-1;37126:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;37211:20:0;37187:4;37211:20;;;:11;:20;;;;;;;;;37126:113;9506:100;9560:13;9593:5;9586:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9506:100;:::o;11673:169::-;11756:4;11773:39;1319:10;11796:7;11805:6;11773:8;:39::i;:::-;-1:-1:-1;11830:4:0;11673:169;;;;;:::o;12324:492::-;12464:4;12481:36;12491:6;12499:9;12510:6;12481:9;:36::i;:::-;-1:-1:-1;;;;;12557:19:0;;12530:24;12557:19;;;:11;:19;;;;;;;;1319:10;12557:33;;;;;;;;12609:26;;;;12601:79;;;;-1:-1:-1;;;12601:79:0;;4332:2:1;12601:79:0;;;4314:21:1;4371:2;4351:18;;;4344:30;4410:34;4390:18;;;4383:62;4481:10;4461:18;;;4454:38;4509:19;;12601:79:0;;;;;;;;;12716:57;12725:6;1319:10;12766:6;12747:16;:25;12716:8;:57::i;:::-;-1:-1:-1;12804:4:0;;12324:492;-1:-1:-1;;;;12324:492:0:o;13225:215::-;1319:10;13313:4;13362:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13362:34:0;;;;;;;;;;13313:4;;13330:80;;13353:7;;13362:47;;13399:10;;13362:47;:::i;:::-;13330:8;:80::i;3023:103::-;2445:6;;-1:-1:-1;;;;;2445:6:0;1319:10;2592:23;2584:68;;;;-1:-1:-1;;;2584:68:0;;5060:2:1;2584:68:0;;;5042:21:1;;;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;5190:18;;2584:68:0;4858:356:1;2584:68:0;3088:30:::1;3115:1;3088:18;:30::i;:::-;3023:103::o:0;36119:167::-;2445:6;;-1:-1:-1;;;;;2445:6:0;1319:10;2592:23;2584:68;;;;-1:-1:-1;;;2584:68:0;;5060:2:1;2584:68:0;;;5042:21:1;;;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;5190:18;;2584:68:0;4858:356:1;2584:68:0;-1:-1:-1;;;;;36232:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36232:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36119:167::o;45421:99::-;44070:14;-1:-1:-1;;;;;44070:30:0;1319:10;44070:30;44062:74;;;;-1:-1:-1;;;44062:74:0;;5421:2:1;44062:74:0;;;5403:21:1;5460:2;5440:18;;;5433:30;5499:33;5479:18;;;5472:61;5550:18;;44062:74:0;5219:355:1;44062:74:0;-1:-1:-1;;;;;45486:18:0::1;45507:5;45486:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;45486:26:0::1;::::0;;45421:99::o;44650:197::-;44070:14;-1:-1:-1;;;;;44070:30:0;1319:10;44070:30;44062:74;;;;-1:-1:-1;;;44062:74:0;;5421:2:1;44062:74:0;;;5403:21:1;5460:2;5440:18;;;5433:30;5499:33;5479:18;;;5472:61;5550:18;;44062:74:0;5219:355:1;44062:74:0;44724:12:::1;44742:6;-1:-1:-1::0;;;;;44742:11:0::1;44775:21;44742:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44723:89;;;44831:7;44823:16;;;::::0;::::1;;44712:135;44650:197:::0;:::o;35512:112::-;2445:6;;-1:-1:-1;;;;;2445:6:0;1319:10;2592:23;2584:68;;;;-1:-1:-1;;;2584:68:0;;5060:2:1;2584:68:0;;;5042:21:1;;;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;5190:18;;2584:68:0;4858:356:1;2584:68:0;35567:13:::1;:20:::0;;-1:-1:-1;;35598:18:0;;;;;35512:112::o;9725:104::-;9781:13;9814:7;9807:14;;;;;:::i;36484:304::-;2445:6;;-1:-1:-1;;;;;2445:6:0;1319:10;2592:23;2584:68;;;;-1:-1:-1;;;2584:68:0;;5060:2:1;2584:68:0;;;5042:21:1;;;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;5190:18;;2584:68:0;4858:356:1;2584:68:0;36628:13:::1;-1:-1:-1::0;;;;;36620:21:0::1;:4;-1:-1:-1::0;;;;;36620:21:0::1;::::0;36598:128:::1;;;::::0;-1:-1:-1;;;36598:128:0;;5991:2:1;36598:128:0::1;::::0;::::1;5973:21:1::0;6030:2;6010:18;;;6003:30;6069:34;6049:18;;;6042:62;6140:27;6120:18;;;6113:55;6185:19;;36598:128:0::1;5789:421:1::0;36598:128:0::1;36739:41;36768:4;36774:5;36739:28;:41::i;35741:370::-:0;2445:6;;-1:-1:-1;;;;;2445:6:0;1319:10;2592:23;2584:68;;;;-1:-1:-1;;;2584:68:0;;5060:2:1;2584:68:0;;;5042:21:1;;;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;5190:18;;2584:68:0;4858:356:1;2584:68:0;35825:17:::1;35802:20;:40:::0;35871:17:::1;35859:9;:29:::0;35930:1:::1;35913:14;:18:::0;;;35966:1:::1;35948:15;:19:::0;;;35999:1:::1;35984:12;:16:::0;;;36013:15:::1;:19:::0;;;;36049:16:::1;:20:::0;36086:13:::1;:17:::0;35741:370::o;13943:413::-;1319:10;14036:4;14080:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14080:34:0;;;;;;;;;;14133:35;;;;14125:85;;;;-1:-1:-1;;;14125:85:0;;6417:2:1;14125:85:0;;;6399:21:1;6456:2;6436:18;;;6429:30;6495:34;6475:18;;;6468:62;6566:7;6546:18;;;6539:35;6591:19;;14125:85:0;6215:401:1;14125:85:0;14246:67;1319:10;14269:7;14297:15;14278:16;:34;14246:8;:67::i;:::-;-1:-1:-1;14344:4:0;;13943:413;-1:-1:-1;;;13943:413:0:o;11137:175::-;11223:4;11240:42;1319:10;11264:9;11275:6;11240:9;:42::i;44260:289::-;44070:14;-1:-1:-1;;;;;44070:30:0;1319:10;44070:30;44062:74;;;;-1:-1:-1;;;44062:74:0;;5421:2:1;44062:74:0;;;5403:21:1;5460:2;5440:18;;;5433:30;5499:33;5479:18;;;5472:61;5550:18;;44062:74:0;5219:355:1;44062:74:0;-1:-1:-1;;;;;44356:20:0;::::1;44348:59;;;::::0;-1:-1:-1;;;44348:59:0;;6823:2:1;44348:59:0::1;::::0;::::1;6805:21:1::0;6862:2;6842:18;;;6835:30;6901:28;6881:18;;;6874:56;6947:18;;44348:59:0::1;6621:350:1::0;44348:59:0::1;44445:39;::::0;;;;44478:4:::1;44445:39;::::0;::::1;1767:74:1::0;44418:24:0::1;::::0;-1:-1:-1;;;;;44445:24:0;::::1;::::0;::::1;::::0;1740:18:1;;44445:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44495:46;::::0;;;;-1:-1:-1;;;;;7403:55:1;;;44495:46:0::1;::::0;::::1;7385:74:1::0;7475:18;;;7468:34;;;44418:66:0;;-1:-1:-1;44495:23:0;;::::1;::::0;::::1;::::0;7358:18:1;;44495:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44337:212;44260:289:::0;;:::o;36294:182::-;2445:6;;-1:-1:-1;;;;;2445:6:0;1319:10;2592:23;2584:68;;;;-1:-1:-1;;;2584:68:0;;5060:2:1;2584:68:0;;;5042:21:1;;;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;5190:18;;2584:68:0;4858:356:1;2584:68:0;-1:-1:-1;;;;;36379:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36379:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36434:34;;1108:41:1;;;36434:34:0::1;::::0;1081:18:1;36434:34:0::1;;;;;;;36294:182:::0;;:::o;44955:328::-;44070:14;-1:-1:-1;;;;;44070:30:0;1319:10;44070:30;44062:74;;;;-1:-1:-1;;;44062:74:0;;5421:2:1;44062:74:0;;;5403:21:1;5460:2;5440:18;;;5433:30;5499:33;5479:18;;;5472:61;5550:18;;44062:74:0;5219:355:1;44062:74:0;45078:13:::1;-1:-1:-1::0;;;;;45057:35:0::1;:9;-1:-1:-1::0;;;;;45057:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;45096:64:0;::::1;45117:42;45096:64;;45057:103;45035:200;;;::::0;-1:-1:-1;;;45035:200:0;;7965:2:1;45035:200:0::1;::::0;::::1;7947:21:1::0;8004:2;7984:18;;;7977:30;8043:34;8023:18;;;8016:62;8114:16;8094:18;;;8087:44;8148:19;;45035:200:0::1;7763:410:1::0;45035:200:0::1;-1:-1:-1::0;;;;;45246:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;45246:29:0::1;45271:4;45246:29;::::0;;44955:328::o;3281:201::-;2445:6;;-1:-1:-1;;;;;2445:6:0;1319:10;2592:23;2584:68;;;;-1:-1:-1;;;2584:68:0;;5060:2:1;2584:68:0;;;5042:21:1;;;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;5190:18;;2584:68:0;4858:356:1;2584:68:0;-1:-1:-1;;;;;3370:22:0;::::1;3362:73;;;::::0;-1:-1:-1;;;3362:73:0;;8380:2:1;3362:73:0::1;::::0;::::1;8362:21:1::0;8419:2;8399:18;;;8392:30;8458:34;8438:18;;;8431:62;8529:8;8509:18;;;8502:36;8555:19;;3362:73:0::1;8178:402:1::0;3362:73:0::1;3446:28;3465:8;3446:18;:28::i;:::-;3281:201:::0;:::o;17627:380::-;-1:-1:-1;;;;;17763:19:0;;17755:68;;;;-1:-1:-1;;;17755:68:0;;8787:2:1;17755:68:0;;;8769:21:1;8826:2;8806:18;;;8799:30;8865:34;8845:18;;;8838:62;8936:6;8916:18;;;8909:34;8960:19;;17755:68:0;8585:400:1;17755:68:0;-1:-1:-1;;;;;17842:21:0;;17834:68;;;;-1:-1:-1;;;17834:68:0;;9192:2:1;17834:68:0;;;9174:21:1;9231:2;9211:18;;;9204:30;9270:34;9250:18;;;9243:62;9341:4;9321:18;;;9314:32;9363:19;;17834:68:0;8990:398:1;17834:68:0;-1:-1:-1;;;;;17915:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17967:32;;1558:25:1;;;17967:32:0;;1531:18:1;17967:32:0;;;;;;;17627:380;;;:::o;37247:3834::-;-1:-1:-1;;;;;37379:18:0;;37371:68;;;;-1:-1:-1;;;37371:68:0;;9595:2:1;37371:68:0;;;9577:21:1;9634:2;9614:18;;;9607:30;9673:34;9653:18;;;9646:62;-1:-1:-1;;;9724:18:1;;;9717:35;9769:19;;37371:68:0;9393:401:1;37371:68:0;-1:-1:-1;;;;;37458:16:0;;37450:64;;;;-1:-1:-1;;;37450:64:0;;10001:2:1;37450:64:0;;;9983:21:1;10040:2;10020:18;;;10013:30;10079:34;10059:18;;;10052:62;-1:-1:-1;;;10130:18:1;;;10123:33;10173:19;;37450:64:0;9799:399:1;37450:64:0;-1:-1:-1;;;;;37534:17:0;;;;;;:11;:17;;;;;;;;37533:18;37525:48;;;;-1:-1:-1;;;37525:48:0;;10405:2:1;37525:48:0;;;10387:21:1;10444:2;10424:18;;;10417:30;10483:20;10463:18;;;10456:48;10521:18;;37525:48:0;10203:342:1;37525:48:0;-1:-1:-1;;;;;37593:15:0;;;;;;:11;:15;;;;;;;;37592:16;37584:48;;;;-1:-1:-1;;;37584:48:0;;10752:2:1;37584:48:0;;;10734:21:1;10791:2;10771:18;;;10764:30;10830:22;10810:18;;;10803:50;10870:18;;37584:48:0;10550:344:1;37584:48:0;37649:6;37659:1;37649:11;37645:93;;37677:28;37693:4;37699:2;37703:1;37677:15;:28::i;:::-;37247:3834;;;:::o;37645:93::-;2445:6;;-1:-1:-1;;;;;37772:15:0;;;2445:6;;37772:15;;;;:49;;-1:-1:-1;2445:6:0;;-1:-1:-1;;;;;37808:13:0;;;2445:6;;37808:13;;37772:49;:86;;;;-1:-1:-1;;;;;;37842:16:0;;;;37772:86;:128;;;;-1:-1:-1;;;;;;37879:21:0;;37893:6;37879:21;;37772:128;:158;;;;-1:-1:-1;37922:8:0;;-1:-1:-1;;;37922:8:0;;;;37921:9;37772:158;37750:1642;;;37970:13;;;;37965:223;;-1:-1:-1;;;;;38042:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38071:23:0;;;;;;:19;:23;;;;;;;;38042:52;38008:160;;;;-1:-1:-1;;;38008:160:0;;11101:2:1;38008:160:0;;;11083:21:1;11140:2;11120:18;;;11113:30;11179:24;11159:18;;;11152:52;11221:18;;38008:160:0;10899:346:1;38008:160:0;-1:-1:-1;;;;;38261:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;38318:35:0;;;;;;:31;:35;;;;;;;;38317:36;38261:92;38235:1146;;;38440:20;;38430:6;:30;;38396:169;;;;-1:-1:-1;;;38396:169:0;;11452:2:1;38396:169:0;;;11434:21:1;11491:2;11471:18;;;11464:30;11530:34;11510:18;;;11503:62;11601:23;11581:18;;;11574:51;11642:19;;38396:169:0;11250:417:1;38396:169:0;38648:9;;-1:-1:-1;;;;;10898:18:0;;10871:7;10898:18;;;;;;;;;;;38622:22;;:6;:22;:::i;:::-;:35;;38588:140;;;;-1:-1:-1;;;38588:140:0;;11874:2:1;38588:140:0;;;11856:21:1;11913:2;11893:18;;;11886:30;11952:21;11932:18;;;11925:49;11991:18;;38588:140:0;11672:343:1;38588:140:0;38235:1146;;;-1:-1:-1;;;;;38825:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;38880:37:0;;;;;;:31;:37;;;;;;;;38879:38;38825:92;38799:582;;;39004:20;;38994:6;:30;;38960:170;;;;-1:-1:-1;;;38960:170:0;;12222:2:1;38960:170:0;;;12204:21:1;12261:2;12241:18;;;12234:30;12300:34;12280:18;;;12273:62;12371:24;12351:18;;;12344:52;12413:19;;38960:170:0;12020:418:1;38799:582:0;-1:-1:-1;;;;;39161:35:0;;;;;;:31;:35;;;;;;;;39156:225;;39281:9;;-1:-1:-1;;;;;10898:18:0;;10871:7;10898:18;;;;;;;;;;;39255:22;;:6;:22;:::i;:::-;:35;;39221:140;;;;-1:-1:-1;;;39221:140:0;;11874:2:1;39221:140:0;;;11856:21:1;11913:2;11893:18;;;11886:30;11952:21;11932:18;;;11925:49;11991:18;;39221:140:0;11672:343:1;39221:140:0;39453:4;39404:28;10898:18;;;;;;;;;;;39511;39487:42;;;;;;;39560:35;;-1:-1:-1;39584:11:0;;;;;;;39560:35;:61;;;;-1:-1:-1;39613:8:0;;-1:-1:-1;;;39613:8:0;;;;39612:9;39560:61;:110;;;;-1:-1:-1;;;;;;39639:31:0;;;;;;:25;:31;;;;;;;;39638:32;39560:110;:153;;;;-1:-1:-1;;;;;;39688:25:0;;;;;;:19;:25;;;;;;;;39687:26;39560:153;:194;;;;-1:-1:-1;;;;;;39731:23:0;;;;;;:19;:23;;;;;;;;39730:24;39560:194;39542:326;;;39781:8;:15;;-1:-1:-1;;;;39781:15:0;-1:-1:-1;;;39781:15:0;;;39813:10;:8;:10::i;:::-;39840:8;:16;;-1:-1:-1;;;;39840:16:0;;;39542:326;39896:8;;-1:-1:-1;;;;;40006:25:0;;39880:12;40006:25;;;:19;:25;;;;;;39896:8;-1:-1:-1;;;39896:8:0;;;;;39895:9;;40006:25;;:52;;-1:-1:-1;;;;;;40035:23:0;;;;;;:19;:23;;;;;;;;40006:52;40002:100;;;-1:-1:-1;40085:5:0;40002:100;40114:12;40219:7;40215:813;;;-1:-1:-1;;;;;40268:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40317:1;40301:13;;:17;40268:50;40264:615;;;40373:3;40356:13;;40347:6;:22;;;;:::i;:::-;40346:30;;;;:::i;:::-;40339:37;;40445:13;;40425:16;;40418:4;:23;;;;:::i;:::-;40417:41;;;;:::i;:::-;40395:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40525:13:0;;40506:15;;40499:22;;:4;:22;:::i;:::-;40498:40;;;;:::i;:::-;40477:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;40264:615:0;;-1:-1:-1;40264:615:0;;-1:-1:-1;;;;;40597:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40647:1;40632:12;;:16;40597:51;40593:286;;;40702:3;40686:12;;40677:6;:21;;;;:::i;:::-;40676:29;;;;:::i;:::-;40669:36;;40773:12;;40754:15;;40747:4;:22;;;;:::i;:::-;40746:39;;;;:::i;:::-;40724:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40851:12:0;;40833:14;;40826:21;;:4;:21;:::i;:::-;40825:38;;;;:::i;:::-;40804:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;40593:286:0;40899:8;;40895:91;;40928:42;40944:4;40958;40965;40928:15;:42::i;:::-;41002:14;41012:4;41002:14;;:::i;:::-;;;40215:813;41040:33;41056:4;41062:2;41066:6;41040:15;:33::i;:::-;37360:3721;;;;37247:3834;;;:::o;3642:191::-;3735:6;;;-1:-1:-1;;;;;3752:17:0;;;;;;;;;;;3785:40;;3735:6;;;3752:17;3735:6;;3785:40;;3716:16;;3785:40;3705:128;3642:191;:::o;36796:188::-;-1:-1:-1;;;;;36879:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36879:39:0;;;;;;;;;;36936:40;;36879:39;;:31;36936:40;;;36796:188;;:::o;14846:733::-;-1:-1:-1;;;;;14986:20:0;;14978:70;;;;-1:-1:-1;;;14978:70:0;;9595:2:1;14978:70:0;;;9577:21:1;9634:2;9614:18;;;9607:30;9673:34;9653:18;;;9646:62;-1:-1:-1;;;9724:18:1;;;9717:35;9769:19;;14978:70:0;9393:401:1;14978:70:0;-1:-1:-1;;;;;15067:23:0;;15059:71;;;;-1:-1:-1;;;15059:71:0;;10001:2:1;15059:71:0;;;9983:21:1;10040:2;10020:18;;;10013:30;10079:34;10059:18;;;10052:62;-1:-1:-1;;;10130:18:1;;;10123:33;10173:19;;15059:71:0;9799:399:1;15059:71:0;-1:-1:-1;;;;;15227:17:0;;15203:21;15227:17;;;;;;;;;;;15263:23;;;;15255:74;;;;-1:-1:-1;;;15255:74:0;;13230:2:1;15255:74:0;;;13212:21:1;13269:2;13249:18;;;13242:30;13308:34;13288:18;;;13281:62;13379:8;13359:18;;;13352:36;13405:19;;15255:74:0;13028:402:1;15255:74:0;-1:-1:-1;;;;;15365:17:0;;;:9;:17;;;;;;;;;;;15385:22;;;15365:42;;15429:20;;;;;;;;:30;;15401:6;;15365:9;15429:30;;15401:6;;15429:30;:::i;:::-;;;;;;;;15494:9;-1:-1:-1;;;;;15477:35:0;15486:6;-1:-1:-1;;;;;15477:35:0;;15505:6;15477:35;;;;1558:25:1;;1546:2;1531:18;;1412:177;15477:35:0;;;;;;;;15525:46;37247:3834;42224:1508;42307:4;42263:23;10898:18;;;;;;;;;;;42263:50;;42324:25;42386:17;;42352:18;;:51;;;;:::i;:::-;42324:79;-1:-1:-1;42414:12:0;42443:20;;;:46;;-1:-1:-1;42467:22:0;;42443:46;42439:85;;;42506:7;;;42224:1508::o;42439:85::-;42558:23;:18;42579:2;42558:23;:::i;:::-;42540:15;:41;42536:115;;;42616:23;:18;42637:2;42616:23;:::i;:::-;42598:41;;42536:115;42712:23;42825:1;42792:17;42757:18;;42739:15;:36;;;;:::i;:::-;42738:71;;;;:::i;:::-;:88;;;;:::i;:::-;42712:114;-1:-1:-1;42837:26:0;42866:33;42712:114;42866:15;:33;:::i;:::-;42837:62;-1:-1:-1;42940:21:0;42974:36;42837:62;42974:16;:36::i;:::-;43023:18;43044:41;43068:17;43044:21;:41;:::i;:::-;43023:62;;43098:22;43201:1;43180:18;;:22;;;;:::i;:::-;43159:44;;:17;:44;:::i;:::-;43137:17;;43124:30;;:10;:30;:::i;:::-;43123:81;;;;:::i;:::-;43098:106;-1:-1:-1;43225:23:0;43251:27;43098:106;43251:10;:27;:::i;:::-;43225:53;;43313:1;43295:15;:19;:42;;;;;43336:1;43318:15;:19;43295:42;43291:278;;;43354:46;43367:15;43384;43354:12;:46::i;:::-;43524:18;;43420:137;;;13637:25:1;;;13693:2;13678:18;;13671:34;;;13721:18;;;13714:34;;;;43420:137:0;;;;;;13625:2:1;43420:137:0;;;43291:278;43602:1;43581:18;:22;;;43614:17;:21;;;43662:62;;43670:14;-1:-1:-1;;;;;43662:28:0;;43698:21;;43662:62;;43602:1;43662:62;43698:21;43662:28;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;42224:1508:0:o;41089:606::-;41239:16;;;41253:1;41239:16;;;;;;;;41215:21;;41239:16;;;;;;;;;;-1:-1:-1;41239:16:0;41215:40;;41284:4;41266;41271:1;41266:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41266:23:0;;;-1:-1:-1;;;;;41266:23:0;;;;;41310:15;-1:-1:-1;;;;;41310:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41300:4;41305:1;41300:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41300:32:0;;;-1:-1:-1;;;;;41300:32:0;;;;;41345:62;41362:4;41377:15;41395:11;41345:8;:62::i;:::-;41446:241;;;;;-1:-1:-1;;;;;41446:15:0;:66;;;;:241;;41527:11;;41553:1;;41614:4;;41641;;41661:15;;41446:241;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41144:551;41089:606;:::o;41703:513::-;41851:62;41868:4;41883:15;41901:11;41851:8;:62::i;:::-;41956:15;-1:-1:-1;;;;;41956:31:0;;41995:9;42028:4;42048:11;42074:1;42117;42160:7;2445:6;;-1:-1:-1;;;;;2445:6:0;;2372:87;42160:7;41956:252;;;;;;;;;;-1:-1:-1;;;;;15724:55:1;;;41956:252:0;;;15706:74:1;15796:18;;;15789:34;;;;15839:18;;;15832:34;;;;15882:18;;;15875:34;15946:55;;;15925:19;;;15918:84;42182:15:0;16018:19:1;;;16011:35;15678:19;;41956:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41703:513;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:154::-;-1:-1:-1;;;;;516:5:1;512:54;505:5;502:65;492:93;;581:1;578;571:12;596:367;664:6;672;725:2;713:9;704:7;700:23;696:32;693:52;;;741:1;738;731:12;693:52;780:9;767:23;799:31;824:5;799:31;:::i;:::-;849:5;927:2;912:18;;;;899:32;;-1:-1:-1;;;596:367:1:o;1160:247::-;1219:6;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1327:9;1314:23;1346:31;1371:5;1346:31;:::i;:::-;1396:5;1160:247;-1:-1:-1;;;1160:247:1:o;1852:508::-;1929:6;1937;1945;1998:2;1986:9;1977:7;1973:23;1969:32;1966:52;;;2014:1;2011;2004:12;1966:52;2053:9;2040:23;2072:31;2097:5;2072:31;:::i;:::-;2122:5;-1:-1:-1;2179:2:1;2164:18;;2151:32;2192:33;2151:32;2192:33;:::i;:::-;1852:508;;2244:7;;-1:-1:-1;;;2324:2:1;2309:18;;;;2296:32;;1852:508::o;2785:118::-;2871:5;2864:13;2857:21;2850:5;2847:32;2837:60;;2893:1;2890;2883:12;2908:382;2973:6;2981;3034:2;3022:9;3013:7;3009:23;3005:32;3002:52;;;3050:1;3047;3040:12;3002:52;3089:9;3076:23;3108:31;3133:5;3108:31;:::i;:::-;3158:5;-1:-1:-1;3215:2:1;3200:18;;3187:32;3228:30;3187:32;3228:30;:::i;:::-;3277:7;3267:17;;;2908:382;;;;;:::o;3295:388::-;3363:6;3371;3424:2;3412:9;3403:7;3399:23;3395:32;3392:52;;;3440:1;3437;3430:12;3392:52;3479:9;3466:23;3498:31;3523:5;3498:31;:::i;:::-;3548:5;-1:-1:-1;3605:2:1;3590:18;;3577:32;3618:33;3577:32;3618:33;:::i;3688:437::-;3767:1;3763:12;;;;3810;;;3831:61;;3885:4;3877:6;3873:17;3863:27;;3831:61;3938:2;3930:6;3927:14;3907:18;3904:38;3901:218;;-1:-1:-1;;;3972:1:1;3965:88;4076:4;4073:1;4066:15;4104:4;4101:1;4094:15;3901:218;;3688:437;;;:::o;4539:184::-;-1:-1:-1;;;4588:1:1;4581:88;4688:4;4685:1;4678:15;4712:4;4709:1;4702:15;4728:125;4793:9;;;4814:10;;;4811:36;;;4827:18;;:::i;6976:230::-;7046:6;7099:2;7087:9;7078:7;7074:23;7070:32;7067:52;;;7115:1;7112;7105:12;7067:52;-1:-1:-1;7160:16:1;;6976:230;-1:-1:-1;6976:230:1:o;7513:245::-;7580:6;7633:2;7621:9;7612:7;7608:23;7604:32;7601:52;;;7649:1;7646;7639:12;7601:52;7681:9;7675:16;7700:28;7722:5;7700:28;:::i;12443:168::-;12516:9;;;12547;;12564:15;;;12558:22;;12544:37;12534:71;;12585:18;;:::i;12616:274::-;12656:1;12682;12672:189;;-1:-1:-1;;;12714:1:1;12707:88;12818:4;12815:1;12808:15;12846:4;12843:1;12836:15;12672:189;-1:-1:-1;12875:9:1;;12616:274::o;12895:128::-;12962:9;;;12983:11;;;12980:37;;;12997:18;;:::i;13948:184::-;-1:-1:-1;;;13997:1:1;13990:88;14097:4;14094:1;14087:15;14121:4;14118:1;14111:15;14137:251;14207:6;14260:2;14248:9;14239:7;14235:23;14231:32;14228:52;;;14276:1;14273;14266:12;14228:52;14308:9;14302:16;14327:31;14352:5;14327:31;:::i;14393:1005::-;14655:4;14703:3;14692:9;14688:19;14734:6;14723:9;14716:25;14777:6;14772:2;14761:9;14757:18;14750:34;14820:3;14815:2;14804:9;14800:18;14793:31;14844:6;14879;14873:13;14910:6;14902;14895:22;14948:3;14937:9;14933:19;14926:26;;14987:2;14979:6;14975:15;14961:29;;15008:1;15018:218;15032:6;15029:1;15026:13;15018:218;;;15097:13;;-1:-1:-1;;;;;15093:62:1;15081:75;;15185:2;15211:15;;;;15176:12;;;;15054:1;15047:9;15018:218;;;-1:-1:-1;;;;;;;15292:55:1;;;;15287:2;15272:18;;15265:83;-1:-1:-1;;15379:3:1;15364:19;15357:35;15253:3;14393:1005;-1:-1:-1;;;14393:1005:1:o;16057:456::-;16145:6;16153;16161;16214:2;16202:9;16193:7;16189:23;16185:32;16182:52;;;16230:1;16227;16220:12;16182:52;-1:-1:-1;;16275:16:1;;16381:2;16366:18;;16360:25;16477:2;16462:18;;;16456:25;16275:16;;16360:25;;-1:-1:-1;16456:25:1;16057:456;-1:-1:-1;16057:456:1:o

Swarm Source

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