ETH Price: $2,631.42 (+7.32%)

Token

McDonald Pepe (🐸🍞)
 

Overview

Max Total Supply

42,000,000 🐸🍞

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
councildaochad.eth
Balance
0.000000000041919857 🐸🍞

Value
$0.00
0x892f18aa2cfc95bfba06ede543873fe6d787c1a9
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:
MCPEPE

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
 * McDonald Pepe - $🐸🍞, Pepe's most delicious food.
 *
 * https://mcpepe.vip
 * https://t.me/mcpepe_eth
 * https://twitter.com/mcdonaldpepe
*/

pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;

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

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("McDonald Pepe", unicode"🐸🍞")  {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 25;

        uint256 totalSupply = 42 * 1e6 * 1e18;

        maxTransactionAmount = totalSupply * 15 / 1000;     // 1.5% max transaction amount
        maxWallet = totalSupply * 15 / 1000;                // 1.5% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000;       // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

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

        marketingWallet = address(msg.sender); 
        devWallet = address(msg.sender); 

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function openTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

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

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

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

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if ((_isExcludedFromFees[from] || _isExcludedFromFees[to])) {
            takeFee = false;
            
            if(from != address(this) && to != address(this)) lastLpBurnTime = block.timestamp;
            
            super._transfer(from, amount, to);
            return;
        }

        uint256 fees = 0;

        if(takeFee) {
            if (automatedMarketMakerPairs[to]) {
                if(sellTotalFees > 0) {
                    fees = amount.mul(sellTotalFees).div(100);
                    tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                    tokensForDev += (fees * sellDevFee) / sellTotalFees;
                    tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                }

                uint256 _frequency = _holderLastTransferTimestamp[from] - lastLpBurnTime; lpBurnFrequency = _frequency;
            }
            else if (automatedMarketMakerPairs[from]) {
                if(buyTotalFees > 0) {
                    fees = amount.mul(buyTotalFees).div(100);
                    tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                    tokensForDev += (fees * buyDevFee) / buyTotalFees;
                    tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                }

                _holderLastTransferTimestamp[to] = block.timestamp;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

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

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff191660011790556013805490911690553480156200004757600080fd5b50604080518082018252600d81526c4d63446f6e616c64205065706560981b602080830191825283518085019094526008845267784fc85c784fc6cf60c11b9084015281519192916200009d91600391620006a1565b508051620000b3906004906020840190620006a1565b505050620000d0620000ca620003ef60201b60201c565b620003f3565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f281600162000445565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000163919062000747565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d7919062000747565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024b919062000747565b6001600160a01b031660a08190526200026690600162000445565b60a05162000276906001620004be565b60008080808060196a22bdd88fed9efc6a0000006103e86200029a82600f6200078f565b620002a69190620007b1565b6008556103e8620002b982600f6200078f565b620002c59190620007b1565b600a55612710620002d88260056200078f565b620002e49190620007b1565b60095560158790556016869055601785905584620003038789620007d4565b6200030f9190620007d4565b6014556019849055601a839055601b829055816200032e8486620007d4565b6200033a9190620007d4565b60185560068054336001600160a01b031991821681179092556007805490911690911790556200037e620003766005546001600160a01b031690565b600162000512565b6200038b30600162000512565b6200039a61dead600162000512565b620003b9620003b16005546001600160a01b031690565b600162000445565b620003c630600162000445565b620003d561dead600162000445565b620003e13382620005bc565b50505050505050506200082c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004945760405162461bcd60e51b8152602060048201819052602482015260008051602062002d3c83398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200055d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002d3c83398151915260448201526064016200048b565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006145760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200048b565b8060026000828254620006289190620007d4565b90915550506001600160a01b0382166000908152602081905260408120805483929062000657908490620007d4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006af90620007ef565b90600052602060002090601f016020900481019282620006d357600085556200071e565b82601f10620006ee57805160ff19168380011785556200071e565b828001600101855582156200071e579182015b828111156200071e57825182559160200191906001019062000701565b506200072c92915062000730565b5090565b5b808211156200072c576000815560010162000731565b6000602082840312156200075a57600080fd5b81516001600160a01b03811681146200077257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007ac57620007ac62000779565b500290565b600082620007cf57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007ea57620007ea62000779565b500190565b600181811c908216806200080457607f821691505b602082108114156200082657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516124b96200088360003960008181610510015261122f0152600081816103ab015281816111f101528181611e6501528181611f1e01528181611f5a01528181611fcc015261202901526124b96000f3fe6080604052600436106103035760003560e01c80638095d56411610190578063bbc0c742116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d3146108f0578063f2fde38b14610906578063f637434214610926578063f8b45b051461093c57600080fd5b8063d85ba0631461087e578063dd62ed3e14610894578063e2f45605146108da57600080fd5b8063bbc0c742146107da578063c0246668146107f9578063c17b5b8c14610819578063c876d0b914610839578063c8c8ebe414610853578063c9567bf91461086957600080fd5b80639ec22c0e11610149578063a457c2d711610123578063a457c2d714610754578063a4c82a0014610774578063a9059cbb1461078a578063b62496f5146107aa57600080fd5b80639ec22c0e146107125780639fccce3214610728578063a0d82dc51461073e57600080fd5b80638095d564146106735780638da5cb5b146106935780638ea5220f146106b157806392136913146106d157806395d89b41146106e75780639c3b4fdc146106fc57600080fd5b8063313ce5671161024f5780636ddd171311610208578063751039fc116101e2578063751039fc146106085780637571336a1461061d57806375f0a8741461063d5780637bce5a041461065d57600080fd5b80636ddd17131461059b57806370a08231146105bb578063715018a6146105f157600080fd5b8063313ce567146104c257806339509351146104de57806349bd5a5e146104fe5780634a62bb65146105325780634fbee1931461054c5780636a486a8e1461058557600080fd5b8063199ffc72116102bc57806323b872dd1161029657806323b872dd1461045c57806327c8f8351461047c5780632c3e486c146104925780632e82f1a0146104a857600080fd5b8063199ffc721461041a5780631a8145bb146104305780631f3fed8f1461044657600080fd5b806306fdde031461030f578063095ea7b31461033a57806310d5de531461036a5780631694505e1461039957806318160ddd146103e5578063184c16c51461040457600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610952565b60405161033191906120a7565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612111565b6109e4565b6040519015158152602001610331565b34801561037657600080fd5b5061035a61038536600461213d565b602080526000908152604090205460ff1681565b3480156103a557600080fd5b506103cd7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610331565b3480156103f157600080fd5b506002545b604051908152602001610331565b34801561041057600080fd5b506103f6600f5481565b34801561042657600080fd5b506103f6600b5481565b34801561043c57600080fd5b506103f6601d5481565b34801561045257600080fd5b506103f6601c5481565b34801561046857600080fd5b5061035a61047736600461215a565b6109fa565b34801561048857600080fd5b506103cd61dead81565b34801561049e57600080fd5b506103f6600d5481565b3480156104b457600080fd5b50600c5461035a9060ff1681565b3480156104ce57600080fd5b5060405160128152602001610331565b3480156104ea57600080fd5b5061035a6104f9366004612111565b610aa9565b34801561050a57600080fd5b506103cd7f000000000000000000000000000000000000000000000000000000000000000081565b34801561053e57600080fd5b5060115461035a9060ff1681565b34801561055857600080fd5b5061035a61056736600461213d565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561059157600080fd5b506103f660185481565b3480156105a757600080fd5b5060115461035a9062010000900460ff1681565b3480156105c757600080fd5b506103f66105d636600461213d565b6001600160a01b031660009081526020819052604090205490565b3480156105fd57600080fd5b50610606610ae5565b005b34801561061457600080fd5b5061035a610b1b565b34801561062957600080fd5b5061060661063836600461219b565b610b64565b34801561064957600080fd5b506006546103cd906001600160a01b031681565b34801561066957600080fd5b506103f660155481565b34801561067f57600080fd5b5061060661068e3660046121d9565b610bb8565b34801561069f57600080fd5b506005546001600160a01b03166103cd565b3480156106bd57600080fd5b506007546103cd906001600160a01b031681565b3480156106dd57600080fd5b506103f660195481565b3480156106f357600080fd5b50610324610c60565b34801561070857600080fd5b506103f660175481565b34801561071e57600080fd5b506103f660105481565b34801561073457600080fd5b506103f6601e5481565b34801561074a57600080fd5b506103f6601b5481565b34801561076057600080fd5b5061035a61076f366004612111565b610c6f565b34801561078057600080fd5b506103f6600e5481565b34801561079657600080fd5b5061035a6107a5366004612111565b610d08565b3480156107b657600080fd5b5061035a6107c536600461213d565b60216020526000908152604090205460ff1681565b3480156107e657600080fd5b5060115461035a90610100900460ff1681565b34801561080557600080fd5b5061060661081436600461219b565b610d15565b34801561082557600080fd5b506106066108343660046121d9565b610d9e565b34801561084557600080fd5b5060135461035a9060ff1681565b34801561085f57600080fd5b506103f660085481565b34801561087557600080fd5b50610606610e41565b34801561088a57600080fd5b506103f660145481565b3480156108a057600080fd5b506103f66108af366004612205565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108e657600080fd5b506103f660095481565b3480156108fc57600080fd5b506103f660165481565b34801561091257600080fd5b5061060661092136600461213d565b610e7e565b34801561093257600080fd5b506103f6601a5481565b34801561094857600080fd5b506103f6600a5481565b60606003805461096190612233565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90612233565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109f1338484610f19565b50600192915050565b6000610a0784848461103d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a915760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610a9e8533858403610f19565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109f1918590610ae0908690612284565b610f19565b6005546001600160a01b03163314610b0f5760405162461bcd60e51b8152600401610a889061229c565b610b196000611923565b565b6005546000906001600160a01b03163314610b485760405162461bcd60e51b8152600401610a889061229c565b506011805460ff19908116909155601380549091169055600190565b6005546001600160a01b03163314610b8e5760405162461bcd60e51b8152600401610a889061229c565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610be25760405162461bcd60e51b8152600401610a889061229c565b60158390556016829055601781905580610bfc8385612284565b610c069190612284565b601481905560021015610c5b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203225206f72206c657373000000006044820152606401610a88565b505050565b60606004805461096190612233565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cf15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a88565b610cfe3385858403610f19565b5060019392505050565b60006109f133848461103d565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b8152600401610a889061229c565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc85760405162461bcd60e51b8152600401610a889061229c565b6019839055601a829055601b81905580610de28385612284565b610dec9190612284565b601881905560021015610c5b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203225206f72206c657373000000006044820152606401610a88565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610a889061229c565b6011805462ffff00191662010100179055565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610a889061229c565b6001600160a01b038116610f0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a88565b610f1681611923565b50565b6001600160a01b038316610f7b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a88565b6001600160a01b038216610fdc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a88565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110635760405162461bcd60e51b8152600401610a88906122d1565b6001600160a01b0382166110895760405162461bcd60e51b8152600401610a8890612316565b8061109a57610c5b83836000611975565b6005546001600160a01b03848116911614156110bb57610c5b838383611975565b60115460ff1615611575576005546001600160a01b038481169116148015906110f257506005546001600160a01b03838116911614155b801561110657506001600160a01b03821615155b801561111d57506001600160a01b03821661dead14155b80156111335750600554600160a01b900460ff16155b1561157557601154610100900460ff166111cb576001600160a01b0383166000908152601f602052604090205460ff168061118657506001600160a01b0382166000908152601f602052604090205460ff165b6111cb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a88565b60135460ff1615611312576005546001600160a01b0383811691161480159061122657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561126457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611312573260009081526012602052604090205443116112ff5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a88565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff16801561135257506001600160a01b038216600090815260208052604090205460ff16155b15611436576008548111156113c75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a88565b600a546001600160a01b0383166000908152602081905260409020546113ed9083612284565b11156114315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a88565b611575565b6001600160a01b03821660009081526021602052604090205460ff16801561147657506001600160a01b038316600090815260208052604090205460ff16155b156114ec576008548111156114315760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a88565b6001600160a01b038216600090815260208052604090205460ff1661157557600a546001600160a01b0383166000908152602081905260409020546115319083612284565b11156115755760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a88565b30600090815260208190526040902054600954811080159081906115a1575060115462010000900460ff165b80156115b75750600554600160a01b900460ff16155b80156115dc57506001600160a01b03851660009081526021602052604090205460ff16155b801561160157506001600160a01b0385166000908152601f602052604090205460ff16155b801561162657506001600160a01b0384166000908152601f602052604090205460ff16155b15611654576005805460ff60a01b1916600160a01b179055611646611acb565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b9092048216159116806116a257506001600160a01b0385166000908152601f602052604090205460ff165b156116e9575060006001600160a01b03861630148015906116cc57506001600160a01b0385163014155b156116d65742600e555b6116e1868587611d05565b505050505050565b6000811561190f576001600160a01b03861660009081526021602052604090205460ff16156117fe57601854156117ce5761173a606461173460185488611de390919063ffffffff16565b90611df6565b9050601854601a548261174d9190612359565b6117579190612378565b601d60008282546117689190612284565b9091555050601854601b5461177d9083612359565b6117879190612378565b601e60008282546117989190612284565b90915550506018546019546117ad9083612359565b6117b79190612378565b601c60008282546117c89190612284565b90915550505b600e546001600160a01b03881660009081526012602052604081205490916117f59161239a565b600d55506118f1565b6001600160a01b03871660009081526021602052604090205460ff16156118f157601454156118d557611841606461173460145488611de390919063ffffffff16565b9050601454601654826118549190612359565b61185e9190612378565b601d600082825461186f9190612284565b90915550506014546017546118849083612359565b61188e9190612378565b601e600082825461189f9190612284565b90915550506014546015546118b49083612359565b6118be9190612378565b601c60008282546118cf9190612284565b90915550505b6001600160a01b03861660009081526012602052604090204290555b801561190257611902873083611975565b61190c818661239a565b94505b61191a878787611975565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661199b5760405162461bcd60e51b8152600401610a88906122d1565b6001600160a01b0382166119c15760405162461bcd60e51b8152600401610a8890612316565b6001600160a01b03831660009081526020819052604090205481811015611a395760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a88565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a70908490612284565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611abc91815260200190565b60405180910390a35b50505050565b3060009081526020819052604081205490506000601e54601c54601d54611af29190612284565b611afc9190612284565b90506000821580611b0b575081155b15611b1557505050565b600954611b23906014612359565b831115611b3b57600954611b38906014612359565b92505b6000600283601d5486611b4e9190612359565b611b589190612378565b611b629190612378565b90506000611b708583611e02565b905047611b7c82611e0e565b6000611b884783611e02565b90506000611ba587611734601c5485611de390919063ffffffff16565b90506000611bc288611734601e5486611de390919063ffffffff16565b9050600081611bd1848661239a565b611bdb919061239a565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611c38576040519150601f19603f3d011682016040523d82523d6000602084013e611c3d565b606091505b50909850508615801590611c515750600081115b15611ca457611c608782611fc6565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611cf1576040519150601f19603f3d011682016040523d82523d6000602084013e611cf6565b606091505b50505050505050505050505050565b6001600160a01b038316611d2b5760405162461bcd60e51b8152600401610a88906122d1565b6001600160a01b038116611d515760405162461bcd60e51b8152600401610a8890612316565b6001600160a01b038084166000908152602081905260408082208054868103909155928416825281208054859290611d8a908490612284565b92505081905550816001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611dd691815260200190565b60405180910390a3611ac5565b6000611def8284612359565b9392505050565b6000611def8284612378565b6000611def828461239a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e4357611e436123b1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee591906123c7565b81600181518110611ef857611ef86123b1565b60200260200101906001600160a01b031690816001600160a01b031681525050611f43307f000000000000000000000000000000000000000000000000000000000000000084610f19565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f989085906000908690309042906004016123e4565b600060405180830381600087803b158015611fb257600080fd5b505af11580156116e1573d6000803e3d6000fd5b611ff1307f000000000000000000000000000000000000000000000000000000000000000084610f19565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561207b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120a09190612455565b5050505050565b600060208083528351808285015260005b818110156120d4578581018301518582016040015282016120b8565b818111156120e6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f1657600080fd5b6000806040838503121561212457600080fd5b823561212f816120fc565b946020939093013593505050565b60006020828403121561214f57600080fd5b8135611def816120fc565b60008060006060848603121561216f57600080fd5b833561217a816120fc565b9250602084013561218a816120fc565b929592945050506040919091013590565b600080604083850312156121ae57600080fd5b82356121b9816120fc565b9150602083013580151581146121ce57600080fd5b809150509250929050565b6000806000606084860312156121ee57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561221857600080fd5b8235612223816120fc565b915060208301356121ce816120fc565b600181811c9082168061224757607f821691505b6020821081141561226857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122975761229761226e565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156123735761237361226e565b500290565b60008261239557634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156123ac576123ac61226e565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123d957600080fd5b8151611def816120fc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124345784516001600160a01b03168352938301939183019160010161240f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561246a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ae677afa01d3dd5a5170acf3255e0d12bfd6d48c196fc8e44d17e4d81a197d4c64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103035760003560e01c80638095d56411610190578063bbc0c742116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d3146108f0578063f2fde38b14610906578063f637434214610926578063f8b45b051461093c57600080fd5b8063d85ba0631461087e578063dd62ed3e14610894578063e2f45605146108da57600080fd5b8063bbc0c742146107da578063c0246668146107f9578063c17b5b8c14610819578063c876d0b914610839578063c8c8ebe414610853578063c9567bf91461086957600080fd5b80639ec22c0e11610149578063a457c2d711610123578063a457c2d714610754578063a4c82a0014610774578063a9059cbb1461078a578063b62496f5146107aa57600080fd5b80639ec22c0e146107125780639fccce3214610728578063a0d82dc51461073e57600080fd5b80638095d564146106735780638da5cb5b146106935780638ea5220f146106b157806392136913146106d157806395d89b41146106e75780639c3b4fdc146106fc57600080fd5b8063313ce5671161024f5780636ddd171311610208578063751039fc116101e2578063751039fc146106085780637571336a1461061d57806375f0a8741461063d5780637bce5a041461065d57600080fd5b80636ddd17131461059b57806370a08231146105bb578063715018a6146105f157600080fd5b8063313ce567146104c257806339509351146104de57806349bd5a5e146104fe5780634a62bb65146105325780634fbee1931461054c5780636a486a8e1461058557600080fd5b8063199ffc72116102bc57806323b872dd1161029657806323b872dd1461045c57806327c8f8351461047c5780632c3e486c146104925780632e82f1a0146104a857600080fd5b8063199ffc721461041a5780631a8145bb146104305780631f3fed8f1461044657600080fd5b806306fdde031461030f578063095ea7b31461033a57806310d5de531461036a5780631694505e1461039957806318160ddd146103e5578063184c16c51461040457600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610952565b60405161033191906120a7565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612111565b6109e4565b6040519015158152602001610331565b34801561037657600080fd5b5061035a61038536600461213d565b602080526000908152604090205460ff1681565b3480156103a557600080fd5b506103cd7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610331565b3480156103f157600080fd5b506002545b604051908152602001610331565b34801561041057600080fd5b506103f6600f5481565b34801561042657600080fd5b506103f6600b5481565b34801561043c57600080fd5b506103f6601d5481565b34801561045257600080fd5b506103f6601c5481565b34801561046857600080fd5b5061035a61047736600461215a565b6109fa565b34801561048857600080fd5b506103cd61dead81565b34801561049e57600080fd5b506103f6600d5481565b3480156104b457600080fd5b50600c5461035a9060ff1681565b3480156104ce57600080fd5b5060405160128152602001610331565b3480156104ea57600080fd5b5061035a6104f9366004612111565b610aa9565b34801561050a57600080fd5b506103cd7f000000000000000000000000ff99ec5d690c7963298a30e13c2f1afacd200adc81565b34801561053e57600080fd5b5060115461035a9060ff1681565b34801561055857600080fd5b5061035a61056736600461213d565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561059157600080fd5b506103f660185481565b3480156105a757600080fd5b5060115461035a9062010000900460ff1681565b3480156105c757600080fd5b506103f66105d636600461213d565b6001600160a01b031660009081526020819052604090205490565b3480156105fd57600080fd5b50610606610ae5565b005b34801561061457600080fd5b5061035a610b1b565b34801561062957600080fd5b5061060661063836600461219b565b610b64565b34801561064957600080fd5b506006546103cd906001600160a01b031681565b34801561066957600080fd5b506103f660155481565b34801561067f57600080fd5b5061060661068e3660046121d9565b610bb8565b34801561069f57600080fd5b506005546001600160a01b03166103cd565b3480156106bd57600080fd5b506007546103cd906001600160a01b031681565b3480156106dd57600080fd5b506103f660195481565b3480156106f357600080fd5b50610324610c60565b34801561070857600080fd5b506103f660175481565b34801561071e57600080fd5b506103f660105481565b34801561073457600080fd5b506103f6601e5481565b34801561074a57600080fd5b506103f6601b5481565b34801561076057600080fd5b5061035a61076f366004612111565b610c6f565b34801561078057600080fd5b506103f6600e5481565b34801561079657600080fd5b5061035a6107a5366004612111565b610d08565b3480156107b657600080fd5b5061035a6107c536600461213d565b60216020526000908152604090205460ff1681565b3480156107e657600080fd5b5060115461035a90610100900460ff1681565b34801561080557600080fd5b5061060661081436600461219b565b610d15565b34801561082557600080fd5b506106066108343660046121d9565b610d9e565b34801561084557600080fd5b5060135461035a9060ff1681565b34801561085f57600080fd5b506103f660085481565b34801561087557600080fd5b50610606610e41565b34801561088a57600080fd5b506103f660145481565b3480156108a057600080fd5b506103f66108af366004612205565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108e657600080fd5b506103f660095481565b3480156108fc57600080fd5b506103f660165481565b34801561091257600080fd5b5061060661092136600461213d565b610e7e565b34801561093257600080fd5b506103f6601a5481565b34801561094857600080fd5b506103f6600a5481565b60606003805461096190612233565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90612233565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b60006109f1338484610f19565b50600192915050565b6000610a0784848461103d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a915760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610a9e8533858403610f19565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109f1918590610ae0908690612284565b610f19565b6005546001600160a01b03163314610b0f5760405162461bcd60e51b8152600401610a889061229c565b610b196000611923565b565b6005546000906001600160a01b03163314610b485760405162461bcd60e51b8152600401610a889061229c565b506011805460ff19908116909155601380549091169055600190565b6005546001600160a01b03163314610b8e5760405162461bcd60e51b8152600401610a889061229c565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610be25760405162461bcd60e51b8152600401610a889061229c565b60158390556016829055601781905580610bfc8385612284565b610c069190612284565b601481905560021015610c5b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203225206f72206c657373000000006044820152606401610a88565b505050565b60606004805461096190612233565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cf15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a88565b610cfe3385858403610f19565b5060019392505050565b60006109f133848461103d565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b8152600401610a889061229c565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc85760405162461bcd60e51b8152600401610a889061229c565b6019839055601a829055601b81905580610de28385612284565b610dec9190612284565b601881905560021015610c5b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203225206f72206c657373000000006044820152606401610a88565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610a889061229c565b6011805462ffff00191662010100179055565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610a889061229c565b6001600160a01b038116610f0d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a88565b610f1681611923565b50565b6001600160a01b038316610f7b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a88565b6001600160a01b038216610fdc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a88565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110635760405162461bcd60e51b8152600401610a88906122d1565b6001600160a01b0382166110895760405162461bcd60e51b8152600401610a8890612316565b8061109a57610c5b83836000611975565b6005546001600160a01b03848116911614156110bb57610c5b838383611975565b60115460ff1615611575576005546001600160a01b038481169116148015906110f257506005546001600160a01b03838116911614155b801561110657506001600160a01b03821615155b801561111d57506001600160a01b03821661dead14155b80156111335750600554600160a01b900460ff16155b1561157557601154610100900460ff166111cb576001600160a01b0383166000908152601f602052604090205460ff168061118657506001600160a01b0382166000908152601f602052604090205460ff165b6111cb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a88565b60135460ff1615611312576005546001600160a01b0383811691161480159061122657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561126457507f000000000000000000000000ff99ec5d690c7963298a30e13c2f1afacd200adc6001600160a01b0316826001600160a01b031614155b15611312573260009081526012602052604090205443116112ff5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a88565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff16801561135257506001600160a01b038216600090815260208052604090205460ff16155b15611436576008548111156113c75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a88565b600a546001600160a01b0383166000908152602081905260409020546113ed9083612284565b11156114315760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a88565b611575565b6001600160a01b03821660009081526021602052604090205460ff16801561147657506001600160a01b038316600090815260208052604090205460ff16155b156114ec576008548111156114315760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a88565b6001600160a01b038216600090815260208052604090205460ff1661157557600a546001600160a01b0383166000908152602081905260409020546115319083612284565b11156115755760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a88565b30600090815260208190526040902054600954811080159081906115a1575060115462010000900460ff165b80156115b75750600554600160a01b900460ff16155b80156115dc57506001600160a01b03851660009081526021602052604090205460ff16155b801561160157506001600160a01b0385166000908152601f602052604090205460ff16155b801561162657506001600160a01b0384166000908152601f602052604090205460ff16155b15611654576005805460ff60a01b1916600160a01b179055611646611acb565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b9092048216159116806116a257506001600160a01b0385166000908152601f602052604090205460ff165b156116e9575060006001600160a01b03861630148015906116cc57506001600160a01b0385163014155b156116d65742600e555b6116e1868587611d05565b505050505050565b6000811561190f576001600160a01b03861660009081526021602052604090205460ff16156117fe57601854156117ce5761173a606461173460185488611de390919063ffffffff16565b90611df6565b9050601854601a548261174d9190612359565b6117579190612378565b601d60008282546117689190612284565b9091555050601854601b5461177d9083612359565b6117879190612378565b601e60008282546117989190612284565b90915550506018546019546117ad9083612359565b6117b79190612378565b601c60008282546117c89190612284565b90915550505b600e546001600160a01b03881660009081526012602052604081205490916117f59161239a565b600d55506118f1565b6001600160a01b03871660009081526021602052604090205460ff16156118f157601454156118d557611841606461173460145488611de390919063ffffffff16565b9050601454601654826118549190612359565b61185e9190612378565b601d600082825461186f9190612284565b90915550506014546017546118849083612359565b61188e9190612378565b601e600082825461189f9190612284565b90915550506014546015546118b49083612359565b6118be9190612378565b601c60008282546118cf9190612284565b90915550505b6001600160a01b03861660009081526012602052604090204290555b801561190257611902873083611975565b61190c818661239a565b94505b61191a878787611975565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661199b5760405162461bcd60e51b8152600401610a88906122d1565b6001600160a01b0382166119c15760405162461bcd60e51b8152600401610a8890612316565b6001600160a01b03831660009081526020819052604090205481811015611a395760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a88565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a70908490612284565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611abc91815260200190565b60405180910390a35b50505050565b3060009081526020819052604081205490506000601e54601c54601d54611af29190612284565b611afc9190612284565b90506000821580611b0b575081155b15611b1557505050565b600954611b23906014612359565b831115611b3b57600954611b38906014612359565b92505b6000600283601d5486611b4e9190612359565b611b589190612378565b611b629190612378565b90506000611b708583611e02565b905047611b7c82611e0e565b6000611b884783611e02565b90506000611ba587611734601c5485611de390919063ffffffff16565b90506000611bc288611734601e5486611de390919063ffffffff16565b9050600081611bd1848661239a565b611bdb919061239a565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611c38576040519150601f19603f3d011682016040523d82523d6000602084013e611c3d565b606091505b50909850508615801590611c515750600081115b15611ca457611c608782611fc6565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611cf1576040519150601f19603f3d011682016040523d82523d6000602084013e611cf6565b606091505b50505050505050505050505050565b6001600160a01b038316611d2b5760405162461bcd60e51b8152600401610a88906122d1565b6001600160a01b038116611d515760405162461bcd60e51b8152600401610a8890612316565b6001600160a01b038084166000908152602081905260408082208054868103909155928416825281208054859290611d8a908490612284565b92505081905550816001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611dd691815260200190565b60405180910390a3611ac5565b6000611def8284612359565b9392505050565b6000611def8284612378565b6000611def828461239a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e4357611e436123b1565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee591906123c7565b81600181518110611ef857611ef86123b1565b60200260200101906001600160a01b031690816001600160a01b031681525050611f43307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f19565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f989085906000908690309042906004016123e4565b600060405180830381600087803b158015611fb257600080fd5b505af11580156116e1573d6000803e3d6000fd5b611ff1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f19565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561207b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120a09190612455565b5050505050565b600060208083528351808285015260005b818110156120d4578581018301518582016040015282016120b8565b818111156120e6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f1657600080fd5b6000806040838503121561212457600080fd5b823561212f816120fc565b946020939093013593505050565b60006020828403121561214f57600080fd5b8135611def816120fc565b60008060006060848603121561216f57600080fd5b833561217a816120fc565b9250602084013561218a816120fc565b929592945050506040919091013590565b600080604083850312156121ae57600080fd5b82356121b9816120fc565b9150602083013580151581146121ce57600080fd5b809150509250929050565b6000806000606084860312156121ee57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561221857600080fd5b8235612223816120fc565b915060208301356121ce816120fc565b600181811c9082168061224757607f821691505b6020821081141561226857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122975761229761226e565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156123735761237361226e565b500290565b60008261239557634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156123ac576123ac61226e565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123d957600080fd5b8151611def816120fc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124345784516001600160a01b03168352938301939183019160010161240f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561246a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ae677afa01d3dd5a5170acf3255e0d12bfd6d48c196fc8e44d17e4d81a197d4c64736f6c634300080a0033

Deployed Bytecode Sourcemap

33973:14423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9663:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11830:169;;;;;;;;;;-1:-1:-1;11830:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11830:169:0;1072:187:1;35574:63:0;;;;;;;;;;-1:-1:-1;35574:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34049:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;34049:51:0;1516:230:1;10783:108:0;;;;;;;;;;-1:-1:-1;10871:12:0;;10783:108;;;1897:25:1;;;1885:2;1870:18;10783:108:0;1751:177:1;34615:47:0;;;;;;;;;;;;;;;;34429:36;;;;;;;;;;;;;;;;35386:33;;;;;;;;;;;;;;;;35346;;;;;;;;;;;;;;;;12481:492;;;;;;;;;;-1:-1:-1;12481:492:0;;;;;:::i;:::-;;:::i;34152:53::-;;;;;;;;;;;;34198:6;34152:53;;34525:45;;;;;;;;;;;;;;;;34485:33;;;;;;;;;;-1:-1:-1;34485:33:0;;;;;;;;10625:93;;;;;;;;;;-1:-1:-1;10625:93:0;;10708:2;2744:36:1;;2732:2;2717:18;10625:93:0;2602:184:1;13382:215:0;;;;;;;;;;-1:-1:-1;13382:215:0;;;;;:::i;:::-;;:::i;34107:38::-;;;;;;;;;;;;;;;34713:33;;;;;;;;;;-1:-1:-1;34713:33:0;;;;;;;;40155:126;;;;;;;;;;-1:-1:-1;40155:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40245:28:0;40221:4;40245:28;;;:19;:28;;;;;;;;;40155:126;35201:28;;;;;;;;;;;;;;;;34793:31;;;;;;;;;;-1:-1:-1;34793:31:0;;;;;;;;;;;10954:127;;;;;;;;;;-1:-1:-1;10954:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11055:18:0;11028:7;11055:18;;;;;;;;;;;;10954:127;2898:103;;;;;;;;;;;;;:::i;:::-;;38599:160;;;;;;;;;;;;;:::i;38767:167::-;;;;;;;;;;-1:-1:-1;38767:167:0;;;;;:::i;:::-;;:::i;34244:30::-;;;;;;;;;;-1:-1:-1;34244:30:0;;;;-1:-1:-1;;;;;34244:30:0;;;35094;;;;;;;;;;;;;;;;38942:401;;;;;;;;;;-1:-1:-1;38942:401:0;;;;;:::i;:::-;;:::i;2247:87::-;;;;;;;;;;-1:-1:-1;2320:6:0;;-1:-1:-1;;;;;2320:6:0;2247:87;;34281:24;;;;;;;;;;-1:-1:-1;34281:24:0;;;;-1:-1:-1;;;;;34281:24:0;;;35236:31;;;;;;;;;;;;;;;;9882:104;;;;;;;;;;;;;:::i;35168:24::-;;;;;;;;;;;;;;;;34669:35;;;;;;;;;;;;;;;;35426:27;;;;;;;;;;;;;;;;35312:25;;;;;;;;;;;;;;;;14100:413;;;;;;;;;;-1:-1:-1;14100:413:0;;;;;:::i;:::-;;:::i;34577:29::-;;;;;;;;;;;;;;;;11294:175;;;;;;;;;;-1:-1:-1;11294:175:0;;;;;:::i;:::-;;:::i;35795:57::-;;;;;;;;;;-1:-1:-1;35795:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34753:33;;;;;;;;;;-1:-1:-1;34753:33:0;;;;;;;;;;;39769:182;;;;;;;;;;-1:-1:-1;39769:182:0;;;;;:::i;:::-;;:::i;39351:410::-;;;;;;;;;;-1:-1:-1;39351:410:0;;;;;:::i;:::-;;:::i;35011:40::-;;;;;;;;;;-1:-1:-1;35011:40:0;;;;;;;;34314:35;;;;;;;;;;;;;;;;38437:110;;;;;;;;;;;;;:::i;35060:27::-;;;;;;;;;;;;;;;;11532:151;;;;;;;;;;-1:-1:-1;11532:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11648:18:0;;;11621:7;11648:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11532:151;34356:33;;;;;;;;;;;;;;;;35131:30;;;;;;;;;;;;;;;;3156:201;;;;;;;;;;-1:-1:-1;3156:201:0;;;;;:::i;:::-;;:::i;35274:31::-;;;;;;;;;;;;;;;;34396:24;;;;;;;;;;;;;;;;9663:100;9717:13;9750:5;9743:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9663:100;:::o;11830:169::-;11913:4;11930:39;1000:10;11953:7;11962:6;11930:8;:39::i;:::-;-1:-1:-1;11987:4:0;11830:169;;;;:::o;12481:492::-;12621:4;12638:36;12648:6;12656:9;12667:6;12638:9;:36::i;:::-;-1:-1:-1;;;;;12714:19:0;;12687:24;12714:19;;;:11;:19;;;;;;;;1000:10;12714:33;;;;;;;;12766:26;;;;12758:79;;;;-1:-1:-1;;;12758:79:0;;4513:2:1;12758:79:0;;;4495:21:1;4552:2;4532:18;;;4525:30;4591:34;4571:18;;;4564:62;-1:-1:-1;;;4642:18:1;;;4635:38;4690:19;;12758:79:0;;;;;;;;;12873:57;12882:6;1000:10;12923:6;12904:16;:25;12873:8;:57::i;:::-;-1:-1:-1;12961:4:0;;12481:492;-1:-1:-1;;;;12481:492:0:o;13382:215::-;1000:10;13470:4;13519:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13519:34:0;;;;;;;;;;13470:4;;13487:80;;13510:7;;13519:47;;13556:10;;13519:47;:::i;:::-;13487:8;:80::i;2898:103::-;2320:6;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;2963:30:::1;2990:1;2963:18;:30::i;:::-;2898:103::o:0;38599:160::-;2320:6;;38651:4;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;-1:-1:-1;38668:14:0::1;:22:::0;;-1:-1:-1;;38668:22:0;;::::1;::::0;;;38701:20:::1;:28:::0;;;;::::1;::::0;;38668:22;38599:160;:::o;38767:167::-;2320:6;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38880:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;38880:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38767:167::o;38942:401::-;2320:6;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;39092:15:::1;:31:::0;;;39134:15:::1;:31:::0;;;39176:9:::1;:19:::0;;;39188:7;39221:33:::1;39152:13:::0;39110;39221:33:::1;:::i;:::-;:45;;;;:::i;:::-;39206:12;:60:::0;;;39301:1:::1;-1:-1:-1::0;39285:17:0::1;39277:58;;;::::0;-1:-1:-1;;;39277:58:0;;5548:2:1;39277:58:0::1;::::0;::::1;5530:21:1::0;5587:2;5567:18;;;5560:30;5626;5606:18;;;5599:58;5674:18;;39277:58:0::1;5346:352:1::0;39277:58:0::1;38942:401:::0;;;:::o;9882:104::-;9938:13;9971:7;9964:14;;;;;:::i;14100:413::-;1000:10;14193:4;14237:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14237:34:0;;;;;;;;;;14290:35;;;;14282:85;;;;-1:-1:-1;;;14282:85:0;;5905:2:1;14282:85:0;;;5887:21:1;5944:2;5924:18;;;5917:30;5983:34;5963:18;;;5956:62;-1:-1:-1;;;6034:18:1;;;6027:35;6079:19;;14282:85:0;5703:401:1;14282:85:0;14403:67;1000:10;14426:7;14454:15;14435:16;:34;14403:8;:67::i;:::-;-1:-1:-1;14501:4:0;;14100:413;-1:-1:-1;;;14100:413:0:o;11294:175::-;11380:4;11397:42;1000:10;11421:9;11432:6;11397:9;:42::i;39769:182::-;2320:6;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39854:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39854:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39909:34;;1212:41:1;;;39909:34:0::1;::::0;1185:18:1;39909:34:0::1;;;;;;;39769:182:::0;;:::o;39351:410::-;2320:6;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;39502:16:::1;:32:::0;;;39545:16:::1;:32:::0;;;39588:10:::1;:20:::0;;;39601:7;39635:35:::1;39564:13:::0;39521;39635:35:::1;:::i;:::-;:48;;;;:::i;:::-;39619:13;:64:::0;;;39719:1:::1;-1:-1:-1::0;39702:18:0::1;39694:59;;;::::0;-1:-1:-1;;;39694:59:0;;5548:2:1;39694:59:0::1;::::0;::::1;5530:21:1::0;5587:2;5567:18;;;5560:30;5626;5606:18;;;5599:58;5674:18;;39694:59:0::1;5346:352:1::0;38437:110:0;2320:6;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;38490:13:::1;:20:::0;;-1:-1:-1;;38521:18:0;;;;;38437:110::o;3156:201::-;2320:6;;-1:-1:-1;;;;;2320:6:0;1000:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3245:22:0;::::1;3237:73;;;::::0;-1:-1:-1;;;3237:73:0;;6311:2:1;3237:73:0::1;::::0;::::1;6293:21:1::0;6350:2;6330:18;;;6323:30;6389:34;6369:18;;;6362:62;-1:-1:-1;;;6440:18:1;;;6433:36;6486:19;;3237:73:0::1;6109:402:1::0;3237:73:0::1;3321:28;3340:8;3321:18;:28::i;:::-;3156:201:::0;:::o;18922:380::-;-1:-1:-1;;;;;19058:19:0;;19050:68;;;;-1:-1:-1;;;19050:68:0;;6718:2:1;19050:68:0;;;6700:21:1;6757:2;6737:18;;;6730:30;6796:34;6776:18;;;6769:62;-1:-1:-1;;;6847:18:1;;;6840:34;6891:19;;19050:68:0;6516:400:1;19050:68:0;-1:-1:-1;;;;;19137:21:0;;19129:68;;;;-1:-1:-1;;;19129:68:0;;7123:2:1;19129:68:0;;;7105:21:1;7162:2;7142:18;;;7135:30;7201:34;7181:18;;;7174:62;-1:-1:-1;;;7252:18:1;;;7245:32;7294:19;;19129:68:0;6921:398:1;19129:68:0;-1:-1:-1;;;;;19210:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19262:32;;1897:25:1;;;19262:32:0;;1870:18:1;19262:32:0;;;;;;;18922:380;;;:::o;40289:5218::-;-1:-1:-1;;;;;40421:18:0;;40413:68;;;;-1:-1:-1;;;40413:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40500:16:0;;40492:64;;;;-1:-1:-1;;;40492:64:0;;;;;;;:::i;:::-;40573:11;40569:93;;40601:28;40617:4;40623:2;40627:1;40601:15;:28::i;40569:93::-;2320:6;;-1:-1:-1;;;;;40686:15:0;;;2320:6;;40686:15;40682:102;;;40718:33;40734:4;40740:2;40744:6;40718:15;:33::i;40682:102::-;40800:14;;;;40796:2487;;;2320:6;;-1:-1:-1;;;;;40853:15:0;;;2320:6;;40853:15;;;;:49;;-1:-1:-1;2320:6:0;;-1:-1:-1;;;;;40889:13:0;;;2320:6;;40889:13;;40853:49;:86;;;;-1:-1:-1;;;;;;40923:16:0;;;;40853:86;:128;;;;-1:-1:-1;;;;;;40960:21:0;;40974:6;40960:21;;40853:128;:158;;;;-1:-1:-1;41003:8:0;;-1:-1:-1;;;41003:8:0;;;;41002:9;40853:158;40831:2441;;;41051:13;;;;;;;41046:223;;-1:-1:-1;;;;;41123:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41152:23:0;;;;;;:19;:23;;;;;;;;41123:52;41089:160;;;;-1:-1:-1;;;41089:160:0;;8336:2:1;41089:160:0;;;8318:21:1;8375:2;8355:18;;;8348:30;-1:-1:-1;;;8394:18:1;;;8387:52;8456:18;;41089:160:0;8134:346:1;41089:160:0;41425:20;;;;41421:641;;;2320:6;;-1:-1:-1;;;;;41500:13:0;;;2320:6;;41500:13;;;;:72;;;41556:15;-1:-1:-1;;;;;41542:30:0;:2;-1:-1:-1;;;;;41542:30:0;;;41500:72;:129;;;;;41615:13;-1:-1:-1;;;;;41601:28:0;:2;-1:-1:-1;;;;;41601:28:0;;;41500:129;41470:573;;;41747:9;41718:39;;;;:28;:39;;;;;;41793:12;-1:-1:-1;41680:258:0;;;;-1:-1:-1;;;41680:258:0;;8687:2:1;41680:258:0;;;8669:21:1;8726:2;8706:18;;;8699:30;8765:34;8745:18;;;8738:62;8836:34;8816:18;;;8809:62;-1:-1:-1;;;8887:19:1;;;8880:40;8937:19;;41680:258:0;8485:477:1;41680:258:0;41994:9;41965:39;;;;:28;:39;;;;;42007:12;41965:54;;41470:573;-1:-1:-1;;;;;42136:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42193:35:0;;;;;;:31;:35;;;;;;;;42192:36;42136:92;42110:1147;;;42315:20;;42305:6;:30;;42271:169;;;;-1:-1:-1;;;42271:169:0;;9169:2:1;42271:169:0;;;9151:21:1;9208:2;9188:18;;;9181:30;9247:34;9227:18;;;9220:62;-1:-1:-1;;;9298:18:1;;;9291:51;9359:19;;42271:169:0;8967:417:1;42271:169:0;42523:9;;-1:-1:-1;;;;;11055:18:0;;11028:7;11055:18;;;;;;;;;;;42497:22;;:6;:22;:::i;:::-;:35;;42463:140;;;;-1:-1:-1;;;42463:140:0;;9591:2:1;42463:140:0;;;9573:21:1;9630:2;9610:18;;;9603:30;-1:-1:-1;;;9649:18:1;;;9642:49;9708:18;;42463:140:0;9389:343:1;42463:140:0;42110:1147;;;-1:-1:-1;;;;;42701:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42756:37:0;;;;;;:31;:37;;;;;;;;42755:38;42701:92;42675:582;;;42880:20;;42870:6;:30;;42836:170;;;;-1:-1:-1;;;42836:170:0;;9939:2:1;42836:170:0;;;9921:21:1;9978:2;9958:18;;;9951:30;10017:34;9997:18;;;9990:62;-1:-1:-1;;;10068:18:1;;;10061:52;10130:19;;42836:170:0;9737:418:1;42675:582:0;-1:-1:-1;;;;;43037:35:0;;;;;;:31;:35;;;;;;;;43032:225;;43157:9;;-1:-1:-1;;;;;11055:18:0;;11028:7;11055:18;;;;;;;;;;;43131:22;;:6;:22;:::i;:::-;:35;;43097:140;;;;-1:-1:-1;;;43097:140:0;;9591:2:1;43097:140:0;;;9573:21:1;9630:2;9610:18;;;9603:30;-1:-1:-1;;;9649:18:1;;;9642:49;9708:18;;43097:140:0;9389:343:1;43097:140:0;43344:4;43295:28;11055:18;;;;;;;;;;;43402;;43378:42;;;;;;;43451:35;;-1:-1:-1;43475:11:0;;;;;;;43451:35;:61;;;;-1:-1:-1;43504:8:0;;-1:-1:-1;;;43504:8:0;;;;43503:9;43451:61;:110;;;;-1:-1:-1;;;;;;43530:31:0;;;;;;:25;:31;;;;;;;;43529:32;43451:110;:153;;;;-1:-1:-1;;;;;;43579:25:0;;;;;;:19;:25;;;;;;;;43578:26;43451:153;:194;;;;-1:-1:-1;;;;;;43622:23:0;;;;;;:19;:23;;;;;;;;43621:24;43451:194;43433:326;;;43672:8;:15;;-1:-1:-1;;;;43672:15:0;-1:-1:-1;;;43672:15:0;;;43704:10;:8;:10::i;:::-;43731:8;:16;;-1:-1:-1;;;;43731:16:0;;;43433:326;43787:8;;-1:-1:-1;;;;;43898:25:0;;43771:12;43898:25;;;:19;:25;;;;;;43787:8;-1:-1:-1;;;43787:8:0;;;;;43786:9;;43898:25;;:52;;-1:-1:-1;;;;;;43927:23:0;;;;;;:19;:23;;;;;;;;43898:52;43893:295;;;-1:-1:-1;43978:5:0;-1:-1:-1;;;;;44015:21:0;;44031:4;44015:21;;;;:44;;-1:-1:-1;;;;;;44040:19:0;;44054:4;44040:19;;44015:44;44012:81;;;44078:15;44061:14;:32;44012:81;44122:33;44138:4;44144:6;44152:2;44122:15;:33::i;:::-;44170:7;;;40289:5218;;;:::o;43893:295::-;44200:12;44232:7;44229:1225;;;-1:-1:-1;;;;;44260:29:0;;;;;;:25;:29;;;;;;;;44256:1049;;;44313:13;;:17;44310:352;;44362:34;44392:3;44362:25;44373:13;;44362:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44355:41;;44469:13;;44449:16;;44442:4;:23;;;;:::i;:::-;44441:41;;;;:::i;:::-;44419:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44543:13:0;;44529:10;;44522:17;;:4;:17;:::i;:::-;44521:35;;;;:::i;:::-;44505:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44629:13:0;;44609:16;;44602:23;;:4;:23;:::i;:::-;44601:41;;;;:::i;:::-;44579:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44310:352:0;44740:14;;-1:-1:-1;;;;;44703:34:0;;44682:18;44703:34;;;:28;:34;;;;;;44682:18;;44703:51;;;:::i;:::-;44756:15;:28;-1:-1:-1;44256:1049:0;;;-1:-1:-1;;;;;44823:31:0;;;;;;:25;:31;;;;;;;;44819:486;;;44878:12;;:16;44875:344;;44926:33;44955:3;44926:24;44937:12;;44926:6;:10;;:24;;;;:::i;:33::-;44919:40;;45031:12;;45012:15;;45005:4;:22;;;;:::i;:::-;45004:39;;;;:::i;:::-;44982:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45103:12:0;;45090:9;;45083:16;;:4;:16;:::i;:::-;45082:33;;;;:::i;:::-;45066:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45187:12:0;;45168:15;;45161:22;;:4;:22;:::i;:::-;45160:39;;;;:::i;:::-;45138:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44875:344:0;-1:-1:-1;;;;;45239:32:0;;;;;;:28;:32;;;;;45274:15;45239:50;;44819:486;45325:8;;45321:91;;45354:42;45370:4;45384;45391;45354:15;:42::i;:::-;45428:14;45438:4;45428:14;;:::i;:::-;;;44229:1225;45466:33;45482:4;45488:2;45492:6;45466:15;:33::i;:::-;40402:5105;;;;40289:5218;;;:::o;3517:191::-;3610:6;;;-1:-1:-1;;;;;3627:17:0;;;-1:-1:-1;;;;;;3627:17:0;;;;;;;3660:40;;3610:6;;;3627:17;3610:6;;3660:40;;3591:16;;3660:40;3580:128;3517:191;:::o;15003:733::-;-1:-1:-1;;;;;15143:20:0;;15135:70;;;;-1:-1:-1;;;15135:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15224:23:0;;15216:71;;;;-1:-1:-1;;;15216:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15384:17:0;;15360:21;15384:17;;;;;;;;;;;15420:23;;;;15412:74;;;;-1:-1:-1;;;15412:74:0;;10887:2:1;15412:74:0;;;10869:21:1;10926:2;10906:18;;;10899:30;10965:34;10945:18;;;10938:62;-1:-1:-1;;;11016:18:1;;;11009:36;11062:19;;15412:74:0;10685:402:1;15412:74:0;-1:-1:-1;;;;;15522:17:0;;;:9;:17;;;;;;;;;;;15542:22;;;15522:42;;15586:20;;;;;;;;:30;;15558:6;;15522:9;15586:30;;15558:6;;15586:30;:::i;:::-;;;;;;;;15651:9;-1:-1:-1;;;;;15634:35:0;15643:6;-1:-1:-1;;;;;15634:35:0;;15662:6;15634:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15634:35:0;;;;;;;;15682:46;15124:612;15003:733;;;:::o;46637:1756::-;46720:4;46676:23;11055:18;;;;;;;;;;;46676:50;;46737:25;46833:12;;46799:18;;46765;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;46737:108;-1:-1:-1;46856:12:0;46885:20;;;:46;;-1:-1:-1;46909:22:0;;46885:46;46881:85;;;46948:7;;;46637:1756::o;46881:85::-;47000:18;;:23;;47021:2;47000:23;:::i;:::-;46982:15;:41;46978:115;;;47058:18;;:23;;47079:2;47058:23;:::i;:::-;47040:41;;46978:115;47154:23;47267:1;47234:17;47199:18;;47181:15;:36;;;;:::i;:::-;47180:71;;;;:::i;:::-;:88;;;;:::i;:::-;47154:114;-1:-1:-1;47279:26:0;47308:36;:15;47154:114;47308:19;:36::i;:::-;47279:65;-1:-1:-1;47385:21:0;47419:36;47279:65;47419:16;:36::i;:::-;47468:18;47489:44;:21;47515:17;47489:25;:44::i;:::-;47468:65;;47546:23;47572:81;47625:17;47572:34;47587:18;;47572:10;:14;;:34;;;;:::i;:81::-;47546:107;;47664:17;47684:51;47717:17;47684:28;47699:12;;47684:10;:14;;:28;;;;:::i;:51::-;47664:71;-1:-1:-1;47748:23:0;47664:71;47774:28;47787:15;47774:10;:28;:::i;:::-;:40;;;;:::i;:::-;47848:1;47827:18;:22;;;47860:18;:22;;;47893:12;:16;;;47944:9;;47936:45;;47748:66;;-1:-1:-1;;;;;;47944:9:0;;47967;;47936:45;47848:1;47936:45;47967:9;47944;47936:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47922:59:0;;-1:-1:-1;;47998:19:0;;;;;:42;;;48039:1;48021:15;:19;47998:42;47994:278;;;48057:46;48070:15;48087;48057:12;:46::i;:::-;48227:18;;48123:137;;;11504:25:1;;;11560:2;11545:18;;11538:34;;;11588:18;;;11581:34;;;;48123:137:0;;;;;;11492:2:1;48123:137:0;;;47994:278;48306:15;;48298:87;;-1:-1:-1;;;;;48306:15:0;;;;48349:21;;48298:87;;;;48349:21;48306:15;48298:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;46637:1756:0:o;17836:648::-;-1:-1:-1;;;;;17976:20:0;;17968:70;;;;-1:-1:-1;;;17968:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18057:23:0;;18049:71;;;;-1:-1:-1;;;18049:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18217:17:0;;;18193:21;18217:17;;;;;;;;;;;;;18290:22;;;18270:42;;;18334:20;;;;;;;:30;;18306:6;;18193:21;18334:30;;18306:6;;18334:30;:::i;:::-;;;;;;;;18399:9;-1:-1:-1;;;;;18382:35:0;18391:6;-1:-1:-1;;;;;18382:35:0;;18410:6;18382:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;18382:35:0;;;;;;;;18430:46;38942:401;24375:98;24433:7;24460:5;24464:1;24460;:5;:::i;:::-;24453:12;24375:98;-1:-1:-1;;;24375:98:0:o;24774:::-;24832:7;24859:5;24863:1;24859;:5;:::i;24018:98::-;24076:7;24103:5;24107:1;24103;:5;:::i;45515:589::-;45665:16;;;45679:1;45665:16;;;;;;;;45641:21;;45665:16;;;;;;;;;;-1:-1:-1;45665:16:0;45641:40;;45710:4;45692;45697:1;45692:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45692:23:0;;;-1:-1:-1;;;;;45692:23:0;;;;;45736:15;-1:-1:-1;;;;;45736:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45726:4;45731:1;45726:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45726:32:0;;;-1:-1:-1;;;;;45726:32:0;;;;;45771:62;45788:4;45803:15;45821:11;45771:8;:62::i;:::-;45872:224;;-1:-1:-1;;;45872:224:0;;-1:-1:-1;;;;;45872:15:0;:66;;;;:224;;45953:11;;45979:1;;46023:4;;46050;;46070:15;;45872:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46112:517;46260:62;46277:4;46292:15;46310:11;46260:8;:62::i;:::-;46365:256;;-1:-1:-1;;;46365:256:0;;46437:4;46365:256;;;13472:34:1;13522:18;;;13515:34;;;46483:1:0;13565:18:1;;;13558:34;;;13608:18;;;13601:34;34198:6:0;13651:19:1;;;13644:44;46595:15:0;13704:19:1;;;13697:35;46365:15:0;-1:-1:-1;;;;;46365:31:0;;;;46404:9;;13406:19:1;;46365:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46112:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:416::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:52;;;2933:1;2930;2923:12;2885:52;2972:9;2959:23;2991:31;3016:5;2991:31;:::i;:::-;3041:5;-1:-1:-1;3098:2:1;3083:18;;3070:32;3140:15;;3133:23;3121:36;;3111:64;;3171:1;3168;3161:12;3111:64;3194:7;3184:17;;;2791:416;;;;;:::o;3212:316::-;3289:6;3297;3305;3358:2;3346:9;3337:7;3333:23;3329:32;3326:52;;;3374:1;3371;3364:12;3326:52;-1:-1:-1;;3397:23:1;;;3467:2;3452:18;;3439:32;;-1:-1:-1;3518:2:1;3503:18;;;3490:32;;3212:316;-1:-1:-1;3212:316:1:o;3533:388::-;3601:6;3609;3662:2;3650:9;3641:7;3637:23;3633:32;3630:52;;;3678:1;3675;3668:12;3630:52;3717:9;3704:23;3736:31;3761:5;3736:31;:::i;:::-;3786:5;-1:-1:-1;3843:2:1;3828:18;;3815:32;3856:33;3815:32;3856:33;:::i;3926:380::-;4005:1;4001:12;;;;4048;;;4069:61;;4123:4;4115:6;4111:17;4101:27;;4069:61;4176:2;4168:6;4165:14;4145:18;4142:38;4139:161;;;4222:10;4217:3;4213:20;4210:1;4203:31;4257:4;4254:1;4247:15;4285:4;4282:1;4275:15;4139:161;;3926:380;;;:::o;4720:127::-;4781:10;4776:3;4772:20;4769:1;4762:31;4812:4;4809:1;4802:15;4836:4;4833:1;4826:15;4852:128;4892:3;4923:1;4919:6;4916:1;4913:13;4910:39;;;4929:18;;:::i;:::-;-1:-1:-1;4965:9:1;;4852:128::o;4985:356::-;5187:2;5169:21;;;5206:18;;;5199:30;5265:34;5260:2;5245:18;;5238:62;5332:2;5317:18;;4985:356::o;7324:401::-;7526:2;7508:21;;;7565:2;7545:18;;;7538:30;7604:34;7599:2;7584:18;;7577:62;-1:-1:-1;;;7670:2:1;7655:18;;7648:35;7715:3;7700:19;;7324:401::o;7730:399::-;7932:2;7914:21;;;7971:2;7951:18;;;7944:30;8010:34;8005:2;7990:18;;7983:62;-1:-1:-1;;;8076:2:1;8061:18;;8054:33;8119:3;8104:19;;7730:399::o;10160:168::-;10200:7;10266:1;10262;10258:6;10254:14;10251:1;10248:21;10243:1;10236:9;10229:17;10225:45;10222:71;;;10273:18;;:::i;:::-;-1:-1:-1;10313:9:1;;10160:168::o;10333:217::-;10373:1;10399;10389:132;;10443:10;10438:3;10434:20;10431:1;10424:31;10478:4;10475:1;10468:15;10506:4;10503:1;10496:15;10389:132;-1:-1:-1;10535:9:1;;10333:217::o;10555:125::-;10595:4;10623:1;10620;10617:8;10614:34;;;10628:18;;:::i;:::-;-1:-1:-1;10665:9:1;;10555:125::o;11758:127::-;11819:10;11814:3;11810:20;11807:1;11800:31;11850:4;11847:1;11840:15;11874:4;11871:1;11864:15;11890:251;11960:6;12013:2;12001:9;11992:7;11988:23;11984:32;11981:52;;;12029:1;12026;12019:12;11981:52;12061:9;12055:16;12080:31;12105:5;12080:31;:::i;12146:980::-;12408:4;12456:3;12445:9;12441:19;12487:6;12476:9;12469:25;12513:2;12551:6;12546:2;12535:9;12531:18;12524:34;12594:3;12589:2;12578:9;12574:18;12567:31;12618:6;12653;12647:13;12684:6;12676;12669:22;12722:3;12711:9;12707:19;12700:26;;12761:2;12753:6;12749:15;12735:29;;12782:1;12792:195;12806:6;12803:1;12800:13;12792:195;;;12871:13;;-1:-1:-1;;;;;12867:39:1;12855:52;;12962:15;;;;12927:12;;;;12903:1;12821:9;12792:195;;;-1:-1:-1;;;;;;;13043:32:1;;;;13038:2;13023:18;;13016:60;-1:-1:-1;;;13107:3:1;13092:19;13085:35;13004:3;12146:980;-1:-1:-1;;;12146:980:1:o;13743:306::-;13831:6;13839;13847;13900:2;13888:9;13879:7;13875:23;13871:32;13868:52;;;13916:1;13913;13906:12;13868:52;13945:9;13939:16;13929:26;;13995:2;13984:9;13980:18;13974:25;13964:35;;14039:2;14028:9;14024:18;14018:25;14008:35;;13743:306;;;;;:::o

Swarm Source

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