ETH Price: $2,970.88 (-1.39%)
Gas: 4 Gwei

Token

BEEPLEFANZ (BEEPLEFANZ)
 

Overview

Max Total Supply

1,000,000,000 BEEPLEFANZ

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
2ez4me.eth
Balance
0.000000000205085734 BEEPLEFANZ

Value
$0.00
0x3a4894f709544e5a3289d55c3b7f988839362712
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:
BEEPLEFANZ

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-05
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

// WELCOME FELLOW DEGENS!!!!

// Join Our Movement & Say NO to Ai Generated Images!

// We have launched this token to bring attention to the Art Industry and how Ai is impacting REAL ARTISTS!

// Being a Community Token we like to start off THE RIGHT WAY!

// This is why we GUARANTEE:

// 1. Fair Launch i.e. NO PRELOADED SNIPER BOTS nor PRESALE
// 2. Verified Contract - as we have nothing to hide!
// 3. Renounced Ownership - so we cannot change anything!
// 4. Locked LP - so the liquidity pool is safe!

// You can find our Website, Telegram Group, and of course our Lord & Saviour Beeple's Twitter below:

// Website: https://www.BeepleFanz.com

// Telegram: https://t.me/BeepleFanz

// Lord & Saviour: https://twitter.com/Beeple

// If you're SUPER EARLY then give us some time to update DexTools, UniCrypt, CG, CMC, the Website & Twitter Page 

// There is a 2% Buy & Sell Tax which goes to our Tax Wallet here - 0xC0782B198d7C2ef8A2Bf93D4B96958c99905d25d

// There is also a Max 2% Holder Limit, so this Token cannot get swallowed up by any WHALES too early!

// JOIN US NOW on this new adventure by Joining our Telegram Group!

// We look forward to speaking too you all there and enjoying the start of the Bull Run together!

// LFG!!!!!!!!!

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 with added overflow
 * checks.
 */
 
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

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

    uint256 public buyFee = 2;
    uint256 public sellFee = 2;
    address public taxWallet = 0xC0782B198d7C2ef8A2Bf93D4B96958c99905d25d;
    mapping (address => bool) public _isWhiteListedFromFee;

    uint256 public maxWalletLimit = 20000000 * 10 ** decimals();

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    constructor() ERC20("BEEPLEFANZ", "BEEPLEFANZ") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // CREATE A UNISWAP PAIR FOR THIS NEW TOKEN
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        // SET THE REST OF THE CONTRACT VARIABLES
        uniswapV2Router = _uniswapV2Router;

        // MINT INITIAL SUPPLY
        _mint(msg.sender, 1000000000 * 10 ** decimals());

        //Exclude owner from fees
        _isWhiteListedFromFee[owner()] = true;
        _isWhiteListedFromFee[taxWallet] = true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        uint256 transferAmount = amount;

        if(!_isWhiteListedFromFee[sender] && !_isWhiteListedFromFee[recipient]){

        if(recipient != uniswapV2Pair){
            require(balanceOf(recipient) + amount <= maxWalletLimit, "Exceeds the maxWalletLimit.");
        }

        if(buyFee > 0){
        if (sender == uniswapV2Pair) {
            // TRANSACTION FEE
            uint256 fee = amount.mul(buyFee).div(100);
            transferAmount = amount.sub(fee);
            super._transfer(sender, taxWallet, fee);
        }
        }

        if(sellFee > 0){
        if (recipient == uniswapV2Pair) {
            // TRANSACTION FEE
            uint256 fee = amount.mul(sellFee).div(100);
            transferAmount = amount.sub(fee);
            super._transfer(sender, taxWallet, fee);
        }
        }
        }
        super._transfer(sender, recipient, transferAmount);
    }

    function whiteListFromFee(address account) public onlyOwner {
        _isWhiteListedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner{
        _isWhiteListedFromFee[account] = 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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isWhiteListedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"maxWalletLimit","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":"sellFee","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":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"whiteListFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526002600655600260075573c0782b198d7c2ef8a2bf93d4b96958c99905d25d60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000726200045160201b60201c565b600a6200008091906200084c565b6301312d006200009191906200089c565b600a55348015620000a0575f80fd5b506040518060400160405280600a81526020017f424545504c4546414e5a000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f424545504c4546414e5a0000000000000000000000000000000000000000000081525081600390816200011e919062000b41565b50806004908162000130919062000b41565b50505062000153620001476200045960201b60201c565b6200046060201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001db919062000c8a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000241573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000267919062000c8a565b6040518363ffffffff1660e01b81526004016200028692919062000ccb565b6020604051808303815f875af1158015620002a3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c9919062000c8a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200037033620003456200045160201b60201c565b600a6200035391906200084c565b633b9aca006200036491906200089c565b6200052360201b60201c565b600160095f620003856200068860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505062000dda565b5f6012905090565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058b9062000d54565b60405180910390fd5b620005a75f8383620006b060201b60201c565b8060025f828254620005ba919062000d74565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000669919062000dbf565b60405180910390a3620006845f8383620006b560201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000744578086048111156200071c576200071b620006ba565b5b60018516156200072c5780820291505b80810290506200073c85620006e7565b9450620006fc565b94509492505050565b5f826200075e576001905062000830565b816200076d575f905062000830565b81600181146200078657600281146200079157620007c7565b600191505062000830565b60ff841115620007a657620007a5620006ba565b5b8360020a915084821115620007c057620007bf620006ba565b5b5062000830565b5060208310610133831016604e8410600b8410161715620008015782820a905083811115620007fb57620007fa620006ba565b5b62000830565b620008108484846001620006f3565b925090508184048111156200082a5762000829620006ba565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f620008588262000837565b9150620008658362000840565b9250620008947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200074d565b905092915050565b5f620008a88262000837565b9150620008b58362000837565b9250828202620008c58162000837565b91508282048414831517620008df57620008de620006ba565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200096257607f821691505b6020821081036200097857620009776200091d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200099f565b620009e886836200099f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000a2962000a2362000a1d8462000837565b62000a00565b62000837565b9050919050565b5f819050919050565b62000a448362000a09565b62000a5c62000a538262000a30565b848454620009ab565b825550505050565b5f90565b62000a7262000a64565b62000a7f81848462000a39565b505050565b5b8181101562000aa65762000a9a5f8262000a68565b60018101905062000a85565b5050565b601f82111562000af55762000abf816200097e565b62000aca8462000990565b8101602085101562000ada578190505b62000af262000ae98562000990565b83018262000a84565b50505b505050565b5f82821c905092915050565b5f62000b175f198460080262000afa565b1980831691505092915050565b5f62000b31838362000b06565b9150826002028217905092915050565b62000b4c82620008e6565b67ffffffffffffffff81111562000b685762000b67620008f0565b5b62000b7482546200094a565b62000b8182828562000aaa565b5f60209050601f83116001811462000bb7575f841562000ba2578287015190505b62000bae858262000b24565b86555062000c1d565b601f19841662000bc7866200097e565b5f5b8281101562000bf05784890151825560018201915060208501945060208101905062000bc9565b8683101562000c10578489015162000c0c601f89168262000b06565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c548262000c29565b9050919050565b62000c668162000c48565b811462000c71575f80fd5b50565b5f8151905062000c848162000c5b565b92915050565b5f6020828403121562000ca25762000ca162000c25565b5b5f62000cb18482850162000c74565b91505092915050565b62000cc58162000c48565b82525050565b5f60408201905062000ce05f83018562000cba565b62000cef602083018462000cba565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000d3c601f8362000cf6565b915062000d498262000d06565b602082019050919050565b5f6020820190508181035f83015262000d6d8162000d2e565b9050919050565b5f62000d808262000837565b915062000d8d8362000837565b925082820190508082111562000da85762000da7620006ba565b5b92915050565b62000db98162000837565b82525050565b5f60208201905062000dd45f83018462000dae565b92915050565b60805160a051611f4262000e115f395f81816105f501528181610ca201528181610d580152610e2401525f61052b0152611f425ff3fe608060405234801561000f575f80fd5b506004361061014b575f3560e01c8063508f6dfb116100c157806395d89b411161007a57806395d89b4114610391578063a457c2d7146103af578063a9059cbb146103df578063dd62ed3e1461040f578063ea2f0b371461043f578063f2fde38b1461045b5761014b565b8063508f6dfb146102cf5780635f1a90aa146102eb57806366a88d961461031b57806370a0823114610339578063715018a6146103695780638da5cb5b146103735761014b565b80632b14ca56116101135780632b14ca56146102095780632dc0562d14610227578063313ce567146102455780633950935114610263578063470624021461029357806349bd5a5e146102b15761014b565b806306fdde031461014f578063095ea7b31461016d5780631694505e1461019d57806318160ddd146101bb57806323b872dd146101d9575b5f80fd5b610157610477565b6040516101649190611503565b60405180910390f35b610187600480360381019061018291906115b4565b610507565b604051610194919061160c565b60405180910390f35b6101a5610529565b6040516101b29190611680565b60405180910390f35b6101c361054d565b6040516101d091906116a8565b60405180910390f35b6101f360048036038101906101ee91906116c1565b610556565b604051610200919061160c565b60405180910390f35b610211610584565b60405161021e91906116a8565b60405180910390f35b61022f61058a565b60405161023c9190611720565b60405180910390f35b61024d6105af565b60405161025a9190611754565b60405180910390f35b61027d600480360381019061027891906115b4565b6105b7565b60405161028a919061160c565b60405180910390f35b61029b6105ed565b6040516102a891906116a8565b60405180910390f35b6102b96105f3565b6040516102c69190611720565b60405180910390f35b6102e960048036038101906102e4919061176d565b610617565b005b6103056004803603810190610300919061176d565b610677565b604051610312919061160c565b60405180910390f35b610323610694565b60405161033091906116a8565b60405180910390f35b610353600480360381019061034e919061176d565b61069a565b60405161036091906116a8565b60405180910390f35b6103716106df565b005b61037b6106f2565b6040516103889190611720565b60405180910390f35b61039961071a565b6040516103a69190611503565b60405180910390f35b6103c960048036038101906103c491906115b4565b6107aa565b6040516103d6919061160c565b60405180910390f35b6103f960048036038101906103f491906115b4565b61081f565b604051610406919061160c565b60405180910390f35b61042960048036038101906104249190611798565b610841565b60405161043691906116a8565b60405180910390f35b6104596004803603810190610454919061176d565b6108c3565b005b6104756004803603810190610470919061176d565b610922565b005b60606003805461048690611803565b80601f01602080910402602001604051908101604052809291908181526020018280546104b290611803565b80156104fd5780601f106104d4576101008083540402835291602001916104fd565b820191905f5260205f20905b8154815290600101906020018083116104e057829003601f168201915b5050505050905090565b5f806105116109a4565b905061051e8185856109ab565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f806105606109a4565b905061056d858285610b6e565b610578858585610bf9565b60019150509392505050565b60075481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f806105c16109a4565b90506105e28185856105d38589610841565b6105dd9190611860565b6109ab565b600191505092915050565b60065481565b7f000000000000000000000000000000000000000000000000000000000000000081565b61061f610ef6565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6009602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106e7610ef6565b6106f05f610f74565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461072990611803565b80601f016020809104026020016040519081016040528092919081815260200182805461075590611803565b80156107a05780601f10610777576101008083540402835291602001916107a0565b820191905f5260205f20905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b5f806107b46109a4565b90505f6107c18286610841565b905083811015610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611903565b60405180910390fd5b61081382868684036109ab565b60019250505092915050565b5f806108296109a4565b9050610836818585610bf9565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108cb610ef6565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61092a610ef6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90611991565b60405180910390fd5b6109a181610f74565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611a1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90611aad565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6191906116a8565b60405180910390a3505050565b5f610b798484610841565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf35781811015610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90611b15565b60405180910390fd5b610bf284848484036109ab565b5b50505050565b5f81905060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610c9b575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610ee5577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d4c57600a5482610d008561069a565b610d0a9190611860565b1115610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290611b7d565b60405180910390fd5b5b5f6006541115610e18577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e17575f610dd26064610dc46006548661103790919063ffffffff16565b6110ae90919063ffffffff16565b9050610de781846110f790919063ffffffff16565b9150610e158560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611140565b505b5b5f6007541115610ee4577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee3575f610e9e6064610e906007548661103790919063ffffffff16565b6110ae90919063ffffffff16565b9050610eb381846110f790919063ffffffff16565b9150610ee18560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611140565b505b5b5b610ef0848483611140565b50505050565b610efe6109a4565b73ffffffffffffffffffffffffffffffffffffffff16610f1c6106f2565b73ffffffffffffffffffffffffffffffffffffffff1614610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611be5565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808303611047575f90506110a8565b5f82846110549190611c03565b90508284826110639190611c71565b146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90611d11565b60405180910390fd5b809150505b92915050565b5f6110ef83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113ac565b905092915050565b5f61113883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061140d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590611d9f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390611e2d565b60405180910390fd5b61122783838361146f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190611ebb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161139391906116a8565b60405180910390a36113a6848484611474565b50505050565b5f80831182906113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e99190611503565b60405180910390fd5b505f83856114009190611c71565b9050809150509392505050565b5f838311158290611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b9190611503565b60405180910390fd5b505f83856114629190611ed9565b9050809150509392505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156114b0578082015181840152602081019050611495565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114d582611479565b6114df8185611483565b93506114ef818560208601611493565b6114f8816114bb565b840191505092915050565b5f6020820190508181035f83015261151b81846114cb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61155082611527565b9050919050565b61156081611546565b811461156a575f80fd5b50565b5f8135905061157b81611557565b92915050565b5f819050919050565b61159381611581565b811461159d575f80fd5b50565b5f813590506115ae8161158a565b92915050565b5f80604083850312156115ca576115c9611523565b5b5f6115d78582860161156d565b92505060206115e8858286016115a0565b9150509250929050565b5f8115159050919050565b611606816115f2565b82525050565b5f60208201905061161f5f8301846115fd565b92915050565b5f819050919050565b5f61164861164361163e84611527565b611625565b611527565b9050919050565b5f6116598261162e565b9050919050565b5f61166a8261164f565b9050919050565b61167a81611660565b82525050565b5f6020820190506116935f830184611671565b92915050565b6116a281611581565b82525050565b5f6020820190506116bb5f830184611699565b92915050565b5f805f606084860312156116d8576116d7611523565b5b5f6116e58682870161156d565b93505060206116f68682870161156d565b9250506040611707868287016115a0565b9150509250925092565b61171a81611546565b82525050565b5f6020820190506117335f830184611711565b92915050565b5f60ff82169050919050565b61174e81611739565b82525050565b5f6020820190506117675f830184611745565b92915050565b5f6020828403121561178257611781611523565b5b5f61178f8482850161156d565b91505092915050565b5f80604083850312156117ae576117ad611523565b5b5f6117bb8582860161156d565b92505060206117cc8582860161156d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061181a57607f821691505b60208210810361182d5761182c6117d6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61186a82611581565b915061187583611581565b925082820190508082111561188d5761188c611833565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118ed602583611483565b91506118f882611893565b604082019050919050565b5f6020820190508181035f83015261191a816118e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61197b602683611483565b915061198682611921565b604082019050919050565b5f6020820190508181035f8301526119a88161196f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a09602483611483565b9150611a14826119af565b604082019050919050565b5f6020820190508181035f830152611a36816119fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a97602283611483565b9150611aa282611a3d565b604082019050919050565b5f6020820190508181035f830152611ac481611a8b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611aff601d83611483565b9150611b0a82611acb565b602082019050919050565b5f6020820190508181035f830152611b2c81611af3565b9050919050565b7f4578636565647320746865206d617857616c6c65744c696d69742e00000000005f82015250565b5f611b67601b83611483565b9150611b7282611b33565b602082019050919050565b5f6020820190508181035f830152611b9481611b5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bcf602083611483565b9150611bda82611b9b565b602082019050919050565b5f6020820190508181035f830152611bfc81611bc3565b9050919050565b5f611c0d82611581565b9150611c1883611581565b9250828202611c2681611581565b91508282048414831517611c3d57611c3c611833565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c7b82611581565b9150611c8683611581565b925082611c9657611c95611c44565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f611cfb602183611483565b9150611d0682611ca1565b604082019050919050565b5f6020820190508181035f830152611d2881611cef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d89602583611483565b9150611d9482611d2f565b604082019050919050565b5f6020820190508181035f830152611db681611d7d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e17602383611483565b9150611e2282611dbd565b604082019050919050565b5f6020820190508181035f830152611e4481611e0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ea5602683611483565b9150611eb082611e4b565b604082019050919050565b5f6020820190508181035f830152611ed281611e99565b9050919050565b5f611ee382611581565b9150611eee83611581565b9250828203905081811115611f0657611f05611833565b5b9291505056fea264697066735822122088e19bfb1686780adcec911610e7b64c20dac32dd2c327a6c27d76a6a79595c464736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061014b575f3560e01c8063508f6dfb116100c157806395d89b411161007a57806395d89b4114610391578063a457c2d7146103af578063a9059cbb146103df578063dd62ed3e1461040f578063ea2f0b371461043f578063f2fde38b1461045b5761014b565b8063508f6dfb146102cf5780635f1a90aa146102eb57806366a88d961461031b57806370a0823114610339578063715018a6146103695780638da5cb5b146103735761014b565b80632b14ca56116101135780632b14ca56146102095780632dc0562d14610227578063313ce567146102455780633950935114610263578063470624021461029357806349bd5a5e146102b15761014b565b806306fdde031461014f578063095ea7b31461016d5780631694505e1461019d57806318160ddd146101bb57806323b872dd146101d9575b5f80fd5b610157610477565b6040516101649190611503565b60405180910390f35b610187600480360381019061018291906115b4565b610507565b604051610194919061160c565b60405180910390f35b6101a5610529565b6040516101b29190611680565b60405180910390f35b6101c361054d565b6040516101d091906116a8565b60405180910390f35b6101f360048036038101906101ee91906116c1565b610556565b604051610200919061160c565b60405180910390f35b610211610584565b60405161021e91906116a8565b60405180910390f35b61022f61058a565b60405161023c9190611720565b60405180910390f35b61024d6105af565b60405161025a9190611754565b60405180910390f35b61027d600480360381019061027891906115b4565b6105b7565b60405161028a919061160c565b60405180910390f35b61029b6105ed565b6040516102a891906116a8565b60405180910390f35b6102b96105f3565b6040516102c69190611720565b60405180910390f35b6102e960048036038101906102e4919061176d565b610617565b005b6103056004803603810190610300919061176d565b610677565b604051610312919061160c565b60405180910390f35b610323610694565b60405161033091906116a8565b60405180910390f35b610353600480360381019061034e919061176d565b61069a565b60405161036091906116a8565b60405180910390f35b6103716106df565b005b61037b6106f2565b6040516103889190611720565b60405180910390f35b61039961071a565b6040516103a69190611503565b60405180910390f35b6103c960048036038101906103c491906115b4565b6107aa565b6040516103d6919061160c565b60405180910390f35b6103f960048036038101906103f491906115b4565b61081f565b604051610406919061160c565b60405180910390f35b61042960048036038101906104249190611798565b610841565b60405161043691906116a8565b60405180910390f35b6104596004803603810190610454919061176d565b6108c3565b005b6104756004803603810190610470919061176d565b610922565b005b60606003805461048690611803565b80601f01602080910402602001604051908101604052809291908181526020018280546104b290611803565b80156104fd5780601f106104d4576101008083540402835291602001916104fd565b820191905f5260205f20905b8154815290600101906020018083116104e057829003601f168201915b5050505050905090565b5f806105116109a4565b905061051e8185856109ab565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f806105606109a4565b905061056d858285610b6e565b610578858585610bf9565b60019150509392505050565b60075481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f806105c16109a4565b90506105e28185856105d38589610841565b6105dd9190611860565b6109ab565b600191505092915050565b60065481565b7f0000000000000000000000002e1cfd242e756274a14a29b96cf3bfc9e58301fb81565b61061f610ef6565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6009602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106e7610ef6565b6106f05f610f74565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461072990611803565b80601f016020809104026020016040519081016040528092919081815260200182805461075590611803565b80156107a05780601f10610777576101008083540402835291602001916107a0565b820191905f5260205f20905b81548152906001019060200180831161078357829003601f168201915b5050505050905090565b5f806107b46109a4565b90505f6107c18286610841565b905083811015610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611903565b60405180910390fd5b61081382868684036109ab565b60019250505092915050565b5f806108296109a4565b9050610836818585610bf9565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108cb610ef6565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61092a610ef6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90611991565b60405180910390fd5b6109a181610f74565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090611a1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90611aad565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6191906116a8565b60405180910390a3505050565b5f610b798484610841565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf35781811015610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90611b15565b60405180910390fd5b610bf284848484036109ab565b5b50505050565b5f81905060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610c9b575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610ee5577f0000000000000000000000002e1cfd242e756274a14a29b96cf3bfc9e58301fb73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d4c57600a5482610d008561069a565b610d0a9190611860565b1115610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290611b7d565b60405180910390fd5b5b5f6006541115610e18577f0000000000000000000000002e1cfd242e756274a14a29b96cf3bfc9e58301fb73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e17575f610dd26064610dc46006548661103790919063ffffffff16565b6110ae90919063ffffffff16565b9050610de781846110f790919063ffffffff16565b9150610e158560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611140565b505b5b5f6007541115610ee4577f0000000000000000000000002e1cfd242e756274a14a29b96cf3bfc9e58301fb73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee3575f610e9e6064610e906007548661103790919063ffffffff16565b6110ae90919063ffffffff16565b9050610eb381846110f790919063ffffffff16565b9150610ee18560085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611140565b505b5b5b610ef0848483611140565b50505050565b610efe6109a4565b73ffffffffffffffffffffffffffffffffffffffff16610f1c6106f2565b73ffffffffffffffffffffffffffffffffffffffff1614610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611be5565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808303611047575f90506110a8565b5f82846110549190611c03565b90508284826110639190611c71565b146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90611d11565b60405180910390fd5b809150505b92915050565b5f6110ef83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113ac565b905092915050565b5f61113883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061140d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590611d9f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390611e2d565b60405180910390fd5b61122783838361146f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190611ebb565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161139391906116a8565b60405180910390a36113a6848484611474565b50505050565b5f80831182906113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e99190611503565b60405180910390fd5b505f83856114009190611c71565b9050809150509392505050565b5f838311158290611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b9190611503565b60405180910390fd5b505f83856114629190611ed9565b9050809150509392505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156114b0578082015181840152602081019050611495565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114d582611479565b6114df8185611483565b93506114ef818560208601611493565b6114f8816114bb565b840191505092915050565b5f6020820190508181035f83015261151b81846114cb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61155082611527565b9050919050565b61156081611546565b811461156a575f80fd5b50565b5f8135905061157b81611557565b92915050565b5f819050919050565b61159381611581565b811461159d575f80fd5b50565b5f813590506115ae8161158a565b92915050565b5f80604083850312156115ca576115c9611523565b5b5f6115d78582860161156d565b92505060206115e8858286016115a0565b9150509250929050565b5f8115159050919050565b611606816115f2565b82525050565b5f60208201905061161f5f8301846115fd565b92915050565b5f819050919050565b5f61164861164361163e84611527565b611625565b611527565b9050919050565b5f6116598261162e565b9050919050565b5f61166a8261164f565b9050919050565b61167a81611660565b82525050565b5f6020820190506116935f830184611671565b92915050565b6116a281611581565b82525050565b5f6020820190506116bb5f830184611699565b92915050565b5f805f606084860312156116d8576116d7611523565b5b5f6116e58682870161156d565b93505060206116f68682870161156d565b9250506040611707868287016115a0565b9150509250925092565b61171a81611546565b82525050565b5f6020820190506117335f830184611711565b92915050565b5f60ff82169050919050565b61174e81611739565b82525050565b5f6020820190506117675f830184611745565b92915050565b5f6020828403121561178257611781611523565b5b5f61178f8482850161156d565b91505092915050565b5f80604083850312156117ae576117ad611523565b5b5f6117bb8582860161156d565b92505060206117cc8582860161156d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061181a57607f821691505b60208210810361182d5761182c6117d6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61186a82611581565b915061187583611581565b925082820190508082111561188d5761188c611833565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118ed602583611483565b91506118f882611893565b604082019050919050565b5f6020820190508181035f83015261191a816118e1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61197b602683611483565b915061198682611921565b604082019050919050565b5f6020820190508181035f8301526119a88161196f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a09602483611483565b9150611a14826119af565b604082019050919050565b5f6020820190508181035f830152611a36816119fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a97602283611483565b9150611aa282611a3d565b604082019050919050565b5f6020820190508181035f830152611ac481611a8b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611aff601d83611483565b9150611b0a82611acb565b602082019050919050565b5f6020820190508181035f830152611b2c81611af3565b9050919050565b7f4578636565647320746865206d617857616c6c65744c696d69742e00000000005f82015250565b5f611b67601b83611483565b9150611b7282611b33565b602082019050919050565b5f6020820190508181035f830152611b9481611b5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bcf602083611483565b9150611bda82611b9b565b602082019050919050565b5f6020820190508181035f830152611bfc81611bc3565b9050919050565b5f611c0d82611581565b9150611c1883611581565b9250828202611c2681611581565b91508282048414831517611c3d57611c3c611833565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c7b82611581565b9150611c8683611581565b925082611c9657611c95611c44565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f611cfb602183611483565b9150611d0682611ca1565b604082019050919050565b5f6020820190508181035f830152611d2881611cef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d89602583611483565b9150611d9482611d2f565b604082019050919050565b5f6020820190508181035f830152611db681611d7d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e17602383611483565b9150611e2282611dbd565b604082019050919050565b5f6020820190508181035f830152611e4481611e0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611ea5602683611483565b9150611eb082611e4b565b604082019050919050565b5f6020820190508181035f830152611ed281611e99565b9050919050565b5f611ee382611581565b9150611eee83611581565b9250828203905081811115611f0657611f05611833565b5b9291505056fea264697066735822122088e19bfb1686780adcec911610e7b64c20dac32dd2c327a6c27d76a6a79595c464736f6c63430008140033

Deployed Bytecode Sourcemap

35653:2472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10633:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13050:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36005:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11753:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13856:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35765:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35798:69;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11595:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14560:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35733:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36063:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37884:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35874:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35937:59;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11924:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4043:103;;;:::i;:::-;;3395:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10852:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15326:498;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12273:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12554:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38008:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4301:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10633:100;10687:13;10720:5;10713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10633:100;:::o;13050:226::-;13158:4;13175:13;13191:12;:10;:12::i;:::-;13175:28;;13214:32;13223:5;13230:7;13239:6;13214:8;:32::i;:::-;13264:4;13257:11;;;13050:226;;;;:::o;36005:51::-;;;:::o;11753:108::-;11814:7;11841:12;;11834:19;;11753:108;:::o;13856:295::-;13987:4;14004:15;14022:12;:10;:12::i;:::-;14004:30;;14045:38;14061:4;14067:7;14076:6;14045:15;:38::i;:::-;14094:27;14104:4;14110:2;14114:6;14094:9;:27::i;:::-;14139:4;14132:11;;;13856:295;;;;;:::o;35765:26::-;;;;:::o;35798:69::-;;;;;;;;;;;;;:::o;11595:93::-;11653:5;11678:2;11671:9;;11595:93;:::o;14560:263::-;14673:4;14690:13;14706:12;:10;:12::i;:::-;14690:28;;14729:64;14738:5;14745:7;14782:10;14754:25;14764:5;14771:7;14754:9;:25::i;:::-;:38;;;;:::i;:::-;14729:8;:64::i;:::-;14811:4;14804:11;;;14560:263;;;;:::o;35733:25::-;;;;:::o;36063:38::-;;;:::o;37884:116::-;3281:13;:11;:13::i;:::-;37988:4:::1;37955:21;:30;37977:7;37955:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;37884:116:::0;:::o;35874:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;35937:59::-;;;;:::o;11924:143::-;12014:7;12041:9;:18;12051:7;12041:18;;;;;;;;;;;;;;;;12034:25;;11924:143;;;:::o;4043:103::-;3281:13;:11;:13::i;:::-;4108:30:::1;4135:1;4108:18;:30::i;:::-;4043:103::o:0;3395:87::-;3441:7;3468:6;;;;;;;;;;;3461:13;;3395:87;:::o;10852:104::-;10908:13;10941:7;10934:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10852:104;:::o;15326:498::-;15444:4;15461:13;15477:12;:10;:12::i;:::-;15461:28;;15500:24;15527:25;15537:5;15544:7;15527:9;:25::i;:::-;15500:52;;15605:15;15585:16;:35;;15563:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;15721:60;15730:5;15737:7;15765:15;15746:16;:34;15721:8;:60::i;:::-;15812:4;15805:11;;;;15326:498;;;;:::o;12273:218::-;12377:4;12394:13;12410:12;:10;:12::i;:::-;12394:28;;12433;12443:5;12450:2;12454:6;12433:9;:28::i;:::-;12479:4;12472:11;;;12273:218;;;;:::o;12554:176::-;12668:7;12695:11;:18;12707:5;12695:18;;;;;;;;;;;;;;;:27;12714:7;12695:27;;;;;;;;;;;;;;;;12688:34;;12554:176;;;;:::o;38008:112::-;3281:13;:11;:13::i;:::-;38107:5:::1;38074:21;:30;38096:7;38074:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;38008:112:::0;:::o;4301:238::-;3281:13;:11;:13::i;:::-;4424:1:::1;4404:22;;:8;:22;;::::0;4382:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4503:28;4522:8;4503:18;:28::i;:::-;4301:238:::0;:::o;1946:98::-;1999:7;2026:10;2019:17;;1946:98;:::o;19452:380::-;19605:1;19588:19;;:5;:19;;;19580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19686:1;19667:21;;:7;:21;;;19659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19770:6;19740:11;:18;19752:5;19740:18;;;;;;;;;;;;;;;:27;19759:7;19740:27;;;;;;;;;;;;;;;:36;;;;19808:7;19792:32;;19801:5;19792:32;;;19817:6;19792:32;;;;;;:::i;:::-;;;;;;;;19452:380;;;:::o;20123:502::-;20258:24;20285:25;20295:5;20302:7;20285:9;:25::i;:::-;20258:52;;20345:17;20325:16;:37;20321:297;;20425:6;20405:16;:26;;20379:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;20540:51;20549:5;20556:7;20584:6;20565:16;:25;20540:8;:51::i;:::-;20321:297;20247:378;20123:502;;;:::o;36823:1053::-;36964:22;36989:6;36964:31;;37012:21;:29;37034:6;37012:29;;;;;;;;;;;;;;;;;;;;;;;;;37011:30;:67;;;;;37046:21;:32;37068:9;37046:32;;;;;;;;;;;;;;;;;;;;;;;;;37045:33;37011:67;37008:800;;;37108:13;37095:26;;:9;:26;;;37092:144;;37178:14;;37168:6;37145:20;37155:9;37145;:20::i;:::-;:29;;;;:::i;:::-;:47;;37137:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37092:144;37260:1;37251:6;;:10;37248:266;;;37287:13;37277:23;;:6;:23;;;37273:230;;37349:11;37363:27;37386:3;37363:18;37374:6;;37363;:10;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;37349:41;;37422:15;37433:3;37422:6;:10;;:15;;;;:::i;:::-;37405:32;;37452:39;37468:6;37476:9;;;;;;;;;;;37487:3;37452:15;:39::i;:::-;37302:201;37273:230;37248:266;37539:1;37529:7;;:11;37526:271;;;37569:13;37556:26;;:9;:26;;;37552:234;;37631:11;37645:28;37669:3;37645:19;37656:7;;37645:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;37631:42;;37705:15;37716:3;37705:6;:10;;:15;;;;:::i;:::-;37688:32;;37735:39;37751:6;37759:9;;;;;;;;;;;37770:3;37735:15;:39::i;:::-;37584:202;37552:234;37526:271;37008:800;37818:50;37834:6;37842:9;37853:14;37818:15;:50::i;:::-;36953:923;36823:1053;;;:::o;3560:132::-;3635:12;:10;:12::i;:::-;3624:23;;:7;:5;:7::i;:::-;:23;;;3616:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3560:132::o;4699:191::-;4773:16;4792:6;;;;;;;;;;;4773:25;;4818:8;4809:6;;:17;;;;;;;;;;;;;;;;;;4873:8;4842:40;;4863:8;4842:40;;;;;;;;;;;;4762:128;4699:191;:::o;23803:471::-;23861:7;24111:1;24106;:6;24102:47;;24136:1;24129:8;;;;24102:47;24161:9;24177:1;24173;:5;;;;:::i;:::-;24161:17;;24206:1;24201;24197;:5;;;;:::i;:::-;:10;24189:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;24265:1;24258:8;;;23803:471;;;;;:::o;24750:132::-;24808:7;24835:39;24839:1;24842;24835:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;24828:46;;24750:132;;;;:::o;22913:136::-;22971:7;22998:43;23002:1;23005;22998:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;22991:50;;22913:136;;;;:::o;16294:877::-;16441:1;16425:18;;:4;:18;;;16417:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16518:1;16504:16;;:2;:16;;;16496:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16573:38;16594:4;16600:2;16604:6;16573:20;:38::i;:::-;16624:19;16646:9;:15;16656:4;16646:15;;;;;;;;;;;;;;;;16624:37;;16709:6;16694:11;:21;;16672:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;16849:6;16835:11;:20;16817:9;:15;16827:4;16817:15;;;;;;;;;;;;;;;:38;;;;17052:6;17035:9;:13;17045:2;17035:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;17102:2;17087:26;;17096:4;17087:26;;;17106:6;17087:26;;;;;;:::i;:::-;;;;;;;;17126:37;17146:4;17152:2;17156:6;17126:19;:37::i;:::-;16406:765;16294:877;;;:::o;25378:278::-;25464:7;25496:1;25492;:5;25499:12;25484:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;25523:9;25539:1;25535;:5;;;;:::i;:::-;25523:17;;25647:1;25640:8;;;25378:278;;;;;:::o;23352:192::-;23438:7;23471:1;23466;:6;;23474:12;23458:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;23498:9;23514:1;23510;:5;;;;:::i;:::-;23498:17;;23535:1;23528:8;;;23352:192;;;;;:::o;21225:125::-;;;;:::o;21954:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:180::-;7046:77;7043:1;7036:88;7143:4;7140:1;7133:15;7167:4;7164:1;7157:15;7184:320;7228:6;7265:1;7259:4;7255:12;7245:22;;7312:1;7306:4;7302:12;7333:18;7323:81;;7389:4;7381:6;7377:17;7367:27;;7323:81;7451:2;7443:6;7440:14;7420:18;7417:38;7414:84;;7470:18;;:::i;:::-;7414:84;7235:269;7184:320;;;:::o;7510:180::-;7558:77;7555:1;7548:88;7655:4;7652:1;7645:15;7679:4;7676:1;7669:15;7696:191;7736:3;7755:20;7773:1;7755:20;:::i;:::-;7750:25;;7789:20;7807:1;7789:20;:::i;:::-;7784:25;;7832:1;7829;7825:9;7818:16;;7853:3;7850:1;7847:10;7844:36;;;7860:18;;:::i;:::-;7844:36;7696:191;;;;:::o;7893:224::-;8033:34;8029:1;8021:6;8017:14;8010:58;8102:7;8097:2;8089:6;8085:15;8078:32;7893:224;:::o;8123:366::-;8265:3;8286:67;8350:2;8345:3;8286:67;:::i;:::-;8279:74;;8362:93;8451:3;8362:93;:::i;:::-;8480:2;8475:3;8471:12;8464:19;;8123:366;;;:::o;8495:419::-;8661:4;8699:2;8688:9;8684:18;8676:26;;8748:9;8742:4;8738:20;8734:1;8723:9;8719:17;8712:47;8776:131;8902:4;8776:131;:::i;:::-;8768:139;;8495:419;;;:::o;8920:225::-;9060:34;9056:1;9048:6;9044:14;9037:58;9129:8;9124:2;9116:6;9112:15;9105:33;8920:225;:::o;9151:366::-;9293:3;9314:67;9378:2;9373:3;9314:67;:::i;:::-;9307:74;;9390:93;9479:3;9390:93;:::i;:::-;9508:2;9503:3;9499:12;9492:19;;9151:366;;;:::o;9523:419::-;9689:4;9727:2;9716:9;9712:18;9704:26;;9776:9;9770:4;9766:20;9762:1;9751:9;9747:17;9740:47;9804:131;9930:4;9804:131;:::i;:::-;9796:139;;9523:419;;;:::o;9948:223::-;10088:34;10084:1;10076:6;10072:14;10065:58;10157:6;10152:2;10144:6;10140:15;10133:31;9948:223;:::o;10177:366::-;10319:3;10340:67;10404:2;10399:3;10340:67;:::i;:::-;10333:74;;10416:93;10505:3;10416:93;:::i;:::-;10534:2;10529:3;10525:12;10518:19;;10177:366;;;:::o;10549:419::-;10715:4;10753:2;10742:9;10738:18;10730:26;;10802:9;10796:4;10792:20;10788:1;10777:9;10773:17;10766:47;10830:131;10956:4;10830:131;:::i;:::-;10822:139;;10549:419;;;:::o;10974:221::-;11114:34;11110:1;11102:6;11098:14;11091:58;11183:4;11178:2;11170:6;11166:15;11159:29;10974:221;:::o;11201:366::-;11343:3;11364:67;11428:2;11423:3;11364:67;:::i;:::-;11357:74;;11440:93;11529:3;11440:93;:::i;:::-;11558:2;11553:3;11549:12;11542:19;;11201:366;;;:::o;11573:419::-;11739:4;11777:2;11766:9;11762:18;11754:26;;11826:9;11820:4;11816:20;11812:1;11801:9;11797:17;11790:47;11854:131;11980:4;11854:131;:::i;:::-;11846:139;;11573:419;;;:::o;11998:179::-;12138:31;12134:1;12126:6;12122:14;12115:55;11998:179;:::o;12183:366::-;12325:3;12346:67;12410:2;12405:3;12346:67;:::i;:::-;12339:74;;12422:93;12511:3;12422:93;:::i;:::-;12540:2;12535:3;12531:12;12524:19;;12183:366;;;:::o;12555:419::-;12721:4;12759:2;12748:9;12744:18;12736:26;;12808:9;12802:4;12798:20;12794:1;12783:9;12779:17;12772:47;12836:131;12962:4;12836:131;:::i;:::-;12828:139;;12555:419;;;:::o;12980:177::-;13120:29;13116:1;13108:6;13104:14;13097:53;12980:177;:::o;13163:366::-;13305:3;13326:67;13390:2;13385:3;13326:67;:::i;:::-;13319:74;;13402:93;13491:3;13402:93;:::i;:::-;13520:2;13515:3;13511:12;13504:19;;13163:366;;;:::o;13535:419::-;13701:4;13739:2;13728:9;13724:18;13716:26;;13788:9;13782:4;13778:20;13774:1;13763:9;13759:17;13752:47;13816:131;13942:4;13816:131;:::i;:::-;13808:139;;13535:419;;;:::o;13960:182::-;14100:34;14096:1;14088:6;14084:14;14077:58;13960:182;:::o;14148:366::-;14290:3;14311:67;14375:2;14370:3;14311:67;:::i;:::-;14304:74;;14387:93;14476:3;14387:93;:::i;:::-;14505:2;14500:3;14496:12;14489:19;;14148:366;;;:::o;14520:419::-;14686:4;14724:2;14713:9;14709:18;14701:26;;14773:9;14767:4;14763:20;14759:1;14748:9;14744:17;14737:47;14801:131;14927:4;14801:131;:::i;:::-;14793:139;;14520:419;;;:::o;14945:410::-;14985:7;15008:20;15026:1;15008:20;:::i;:::-;15003:25;;15042:20;15060:1;15042:20;:::i;:::-;15037:25;;15097:1;15094;15090:9;15119:30;15137:11;15119:30;:::i;:::-;15108:41;;15298:1;15289:7;15285:15;15282:1;15279:22;15259:1;15252:9;15232:83;15209:139;;15328:18;;:::i;:::-;15209:139;14993:362;14945:410;;;;:::o;15361:180::-;15409:77;15406:1;15399:88;15506:4;15503:1;15496:15;15530:4;15527:1;15520:15;15547:185;15587:1;15604:20;15622:1;15604:20;:::i;:::-;15599:25;;15638:20;15656:1;15638:20;:::i;:::-;15633:25;;15677:1;15667:35;;15682:18;;:::i;:::-;15667:35;15724:1;15721;15717:9;15712:14;;15547:185;;;;:::o;15738:220::-;15878:34;15874:1;15866:6;15862:14;15855:58;15947:3;15942:2;15934:6;15930:15;15923:28;15738:220;:::o;15964:366::-;16106:3;16127:67;16191:2;16186:3;16127:67;:::i;:::-;16120:74;;16203:93;16292:3;16203:93;:::i;:::-;16321:2;16316:3;16312:12;16305:19;;15964:366;;;:::o;16336:419::-;16502:4;16540:2;16529:9;16525:18;16517:26;;16589:9;16583:4;16579:20;16575:1;16564:9;16560:17;16553:47;16617:131;16743:4;16617:131;:::i;:::-;16609:139;;16336:419;;;:::o;16761:224::-;16901:34;16897:1;16889:6;16885:14;16878:58;16970:7;16965:2;16957:6;16953:15;16946:32;16761:224;:::o;16991:366::-;17133:3;17154:67;17218:2;17213:3;17154:67;:::i;:::-;17147:74;;17230:93;17319:3;17230:93;:::i;:::-;17348:2;17343:3;17339:12;17332:19;;16991:366;;;:::o;17363:419::-;17529:4;17567:2;17556:9;17552:18;17544:26;;17616:9;17610:4;17606:20;17602:1;17591:9;17587:17;17580:47;17644:131;17770:4;17644:131;:::i;:::-;17636:139;;17363:419;;;:::o;17788:222::-;17928:34;17924:1;17916:6;17912:14;17905:58;17997:5;17992:2;17984:6;17980:15;17973:30;17788:222;:::o;18016:366::-;18158:3;18179:67;18243:2;18238:3;18179:67;:::i;:::-;18172:74;;18255:93;18344:3;18255:93;:::i;:::-;18373:2;18368:3;18364:12;18357:19;;18016:366;;;:::o;18388:419::-;18554:4;18592:2;18581:9;18577:18;18569:26;;18641:9;18635:4;18631:20;18627:1;18616:9;18612:17;18605:47;18669:131;18795:4;18669:131;:::i;:::-;18661:139;;18388:419;;;:::o;18813:225::-;18953:34;18949:1;18941:6;18937:14;18930:58;19022:8;19017:2;19009:6;19005:15;18998:33;18813:225;:::o;19044:366::-;19186:3;19207:67;19271:2;19266:3;19207:67;:::i;:::-;19200:74;;19283:93;19372:3;19283:93;:::i;:::-;19401:2;19396:3;19392:12;19385:19;;19044:366;;;:::o;19416:419::-;19582:4;19620:2;19609:9;19605:18;19597:26;;19669:9;19663:4;19659:20;19655:1;19644:9;19640:17;19633:47;19697:131;19823:4;19697:131;:::i;:::-;19689:139;;19416:419;;;:::o;19841:194::-;19881:4;19901:20;19919:1;19901:20;:::i;:::-;19896:25;;19935:20;19953:1;19935:20;:::i;:::-;19930:25;;19979:1;19976;19972:9;19964:17;;20003:1;19997:4;19994:11;19991:37;;;20008:18;;:::i;:::-;19991:37;19841:194;;;;:::o

Swarm Source

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