ETH Price: $2,625.26 (+1.17%)

Token

Gud Coin (GUD)
 

Overview

Max Total Supply

125,000,000 GUD

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
719,569.532091117687405415 GUD

Value
$0.00
0x15a84b152cdffe64da8465c4affc4108f38c1bb9
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:
GudCoin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Telegram: https://t.me/GudCoinErc
Twitter:  https://twitter.com/ercgudcoin/
Website: https://gudcoin.net/
GudPaper: https://gudcoin.net/whitepaper.pdf

*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract GudCoin 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;

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyDevFee;
    bool public initialBuyFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellDevFee;
    bool public initialSellFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForDev;

    // block number of opened trading
    uint256 launchedAt;

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

    // 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 UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Gud Coin", "GUD") {
        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 = 4;
        uint256 _buyDevFee = 1;

        uint256 _sellMarketingFee = 1;
        uint256 _sellDevFee = 4;

        uint256 totalSupply = 125_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 20) / 1000; // 2% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 20) / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 100000; // 0.04% swap wallet

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

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

        initialBuyFee = true;
        initialSellFee = true;

        marketingWallet = address(0xA916Ce0789BA3B2F27744f2979A75463e0996dca); // set as marketing wallet
        devWallet = address(0xa7DaB608edaa3548fE4A6EEbbeFd20842cFaf933); // set as dev wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }

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

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

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

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

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        uint256 _newTotalFees = _marketingFee + _devFee;
        if (initialBuyFee) {
            initialBuyFee = false;
        } else {
            require(_newTotalFees <= 10 || _newTotalFees < buyTotalFees, "Invalid buy fees.");
        }
        buyMarketingFee = _marketingFee;
        buyDevFee = _devFee;
        buyTotalFees = _newTotalFees;
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        uint256 _newTotalFees = _marketingFee + _devFee;
        if (initialSellFee) {
            initialSellFee = false;
        } else {
            require(_newTotalFees <= 10 || _newTotalFees < sellTotalFees, "Invalid sell fees.");
        }
        sellMarketingFee = _marketingFee;
        sellDevFee = _devFee;
        sellTotalFees = _newTotalFees;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

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

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

                //when buy
                if (
                    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 (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance - ethForMarketing;

        tokensForMarketing = 0;
        tokensForDev = 0;

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

        (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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialBuyFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSellFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","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":[{"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":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805462ffffff191660011790553480156200002057600080fd5b506040518060400160405280600881526020016723bab21021b7b4b760c11b8152506040518060400160405280600381526020016211d55160ea1b81525081600390816200006f919062000797565b5060046200007e828262000797565b5050506200009b620000956200043b60201b60201c565b6200043f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000bd81600162000491565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000108573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012e919062000863565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a2919062000863565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000216919062000863565b6001600160a01b031660a08190526200023190600162000491565b60a051620002419060016200050b565b6004600180826a6765c793fa10079d0000006103e862000263826014620008ab565b6200026f9190620008cb565b6008556103e862000282826014620008ab565b6200028e9190620008cb565b600a55620186a0620002a2826028620008ab565b620002ae9190620008cb565b600955600d859055600e849055620002c78486620008ee565b600c5560118390556012829055620002e08284620008ee565b601055600f805460ff199081166001908117909255601380549091169091179055600680546001600160a01b031990811673a916ce0789ba3b2f27744f2979a75463e0996dca179091556007805490911673a7dab608edaa3548fe4a6eebbefd20842cfaf93317905562000368620003606005546001600160a01b031690565b60016200055f565b60065462000381906001600160a01b031660016200055f565b6007546200039a906001600160a01b031660016200055f565b620003a73060016200055f565b620003b661dead60016200055f565b620003d5620003cd6005546001600160a01b031690565b600162000491565b600654620003ee906001600160a01b0316600162000491565b60075462000407906001600160a01b0316600162000491565b6200041430600162000491565b6200042361dead600162000491565b6200042f338262000609565b50505050505062000904565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004e05760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005aa5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1a8339815191526044820152606401620004d7565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006615760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004d7565b8060026000828254620006759190620008ee565b90915550506001600160a01b03821660009081526020819052604081208054839290620006a4908490620008ee565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200071e57607f821691505b6020821081036200073f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006ee57600081815260208120601f850160051c810160208610156200076e5750805b601f850160051c820191505b818110156200078f578281556001016200077a565b505050505050565b81516001600160401b03811115620007b357620007b3620006f3565b620007cb81620007c4845462000709565b8462000745565b602080601f831160018114620008035760008415620007ea5750858301515b600019600386901b1c1916600185901b1785556200078f565b600085815260208120601f198616915b82811015620008345788860151825594840194600190910190840162000813565b5085821015620008535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200087657600080fd5b81516001600160a01b03811681146200088e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008c557620008c562000895565b92915050565b600082620008e957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008c557620008c562000895565b60805160a0516124d4620009466000396000818161051a0152610f530152600081816103b301528181611f640152818161201d015261205901526124d46000f3fe6080604052600436106102e85760003560e01c806375f0a87411610190578063a9059cbb116100dc578063c8c8ebe411610095578063dd62ed3e1161006f578063dd62ed3e146108d6578063e2f456051461091c578063f2fde38b14610932578063f8b45b051461095257600080fd5b8063c8c8ebe41461088a578063d257b34f146108a0578063d85ba063146108c057600080fd5b8063a9059cbb146107bb578063aacebbe3146107db578063b62496f5146107fb578063bbc0c7421461082b578063c02466681461084a578063c18bc1951461086a57600080fd5b8063924de9b7116101495780639c3b4fdc116101235780639c3b4fdc146107595780639fccce321461076f578063a0d82dc514610785578063a457c2d71461079b57600080fd5b8063924de9b71461070457806395d89b41146107245780639a7a23d61461073957600080fd5b806375f0a874146106655780637bce5a04146106855780638a8c523c1461069b5780638da5cb5b146106b05780638ea5220f146106ce57806392136913146106ee57600080fd5b8063313ce5671161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e5578063715018a61461061b578063751039fc146106305780637571336a1461064557600080fd5b806366ca9b831461058f5780636a486a8e146105af5780636ddd1713146105c557600080fd5b8063313ce567146104b257806331e02e0b146104ce57806339509351146104e857806349bd5a5e146105085780634a62bb651461053c5780634fbee1931461055657600080fd5b80631816467f116102a15780631816467f1461040c5780631f3fed8f1461042c578063203e727e1461044257806323b872dd1461046257806327c8f835146104825780632b36a6d21461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f3660046120cd565b610968565b005b34801561032257600080fd5b5061032b610a24565b60405161033891906120ef565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612152565b610ab6565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c36600461217e565b60186020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b5061031461042736600461217e565b610acd565b34801561043857600080fd5b506103fe60145481565b34801561044e57600080fd5b5061031461045d36600461219b565b610b54565b34801561046e57600080fd5b5061036161047d3660046121b4565b610c31565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b506013546103619060ff1681565b3480156104be57600080fd5b5060405160128152602001610338565b3480156104da57600080fd5b50600f546103619060ff1681565b3480156104f457600080fd5b50610361610503366004612152565b610cdb565b34801561051457600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561054857600080fd5b50600b546103619060ff1681565b34801561056257600080fd5b5061036161057136600461217e565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561059b57600080fd5b506103146105aa3660046120cd565b610d17565b3480156105bb57600080fd5b506103fe60105481565b3480156105d157600080fd5b50600b546103619062010000900460ff1681565b3480156105f157600080fd5b506103fe61060036600461217e565b6001600160a01b031660009081526020819052604090205490565b34801561062757600080fd5b50610314610dc9565b34801561063c57600080fd5b50610361610dff565b34801561065157600080fd5b50610314610660366004612205565b610e3c565b34801561067157600080fd5b506006546103d5906001600160a01b031681565b34801561069157600080fd5b506103fe600d5481565b3480156106a757600080fd5b50610314610e91565b3480156106bc57600080fd5b506005546001600160a01b03166103d5565b3480156106da57600080fd5b506007546103d5906001600160a01b031681565b3480156106fa57600080fd5b506103fe60115481565b34801561071057600080fd5b5061031461071f36600461223a565b610ed2565b34801561073057600080fd5b5061032b610f18565b34801561074557600080fd5b50610314610754366004612205565b610f27565b34801561076557600080fd5b506103fe600e5481565b34801561077b57600080fd5b506103fe60155481565b34801561079157600080fd5b506103fe60125481565b3480156107a757600080fd5b506103616107b6366004612152565b611006565b3480156107c757600080fd5b506103616107d6366004612152565b61109f565b3480156107e757600080fd5b506103146107f636600461217e565b6110ac565b34801561080757600080fd5b5061036161081636600461217e565b60196020526000908152604090205460ff1681565b34801561083757600080fd5b50600b5461036190610100900460ff1681565b34801561085657600080fd5b50610314610865366004612205565b611133565b34801561087657600080fd5b5061031461088536600461219b565b6111bc565b34801561089657600080fd5b506103fe60085481565b3480156108ac57600080fd5b506103616108bb36600461219b565b61128d565b3480156108cc57600080fd5b506103fe600c5481565b3480156108e257600080fd5b506103fe6108f1366004612255565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561092857600080fd5b506103fe60095481565b34801561093e57600080fd5b5061031461094d36600461217e565b6113e4565b34801561095e57600080fd5b506103fe600a5481565b6005546001600160a01b0316331461099b5760405162461bcd60e51b81526004016109929061228e565b60405180910390fd5b60006109a782846122d9565b60135490915060ff16156109c4576013805460ff19169055610a16565b600a811115806109d5575060105481105b610a165760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b21039b2b636103332b2b99760711b6044820152606401610992565b601192909255601255601055565b606060038054610a33906122ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906122ec565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac333848461147f565b5060015b92915050565b6005546001600160a01b03163314610af75760405162461bcd60e51b81526004016109929061228e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b7e5760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e8610b9360025490565b610b9e906001612326565b610ba8919061233d565b610bb2919061233d565b811015610c195760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610992565b610c2b81670de0b6b3a7640000612326565b60085550565b6000610c3e8484846115a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cc35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610992565b610cd0853385840361147f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac3918590610d129086906122d9565b61147f565b6005546001600160a01b03163314610d415760405162461bcd60e51b81526004016109929061228e565b6000610d4d82846122d9565b600f5490915060ff1615610d6a57600f805460ff19169055610dbb565b600a81111580610d7b5750600c5481105b610dbb5760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b210313abc903332b2b99760791b6044820152606401610992565b600d92909255600e55600c55565b6005546001600160a01b03163314610df35760405162461bcd60e51b81526004016109929061228e565b610dfd6000611b9c565b565b6005546000906001600160a01b03163314610e2c5760405162461bcd60e51b81526004016109929061228e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e665760405162461bcd60e51b81526004016109929061228e565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b81526004016109929061228e565b600b805462ffff0019166201010017905543601655565b6005546001600160a01b03163314610efc5760405162461bcd60e51b81526004016109929061228e565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a33906122ec565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016109929061228e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ff85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610992565b6110028282611bee565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110885760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610992565b611095338585840361147f565b5060019392505050565b6000610ac33384846115a3565b6005546001600160a01b031633146110d65760405162461bcd60e51b81526004016109929061228e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461115d5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e65760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e86111fb60025490565b611206906005612326565b611210919061233d565b61121a919061233d565b8110156112755760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610992565b61128781670de0b6b3a7640000612326565b600a5550565b6005546000906001600160a01b031633146112ba5760405162461bcd60e51b81526004016109929061228e565b620186a06112c760025490565b6112d2906001612326565b6112dc919061233d565b8210156113495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610992565b6103e861135560025490565b611360906005612326565b61136a919061233d565b8211156113d65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610992565b50600981905560015b919050565b6005546001600160a01b0316331461140e5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b0381166114735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610992565b61147c81611b9c565b50565b6001600160a01b0383166114e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610992565b6001600160a01b0382166115425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610992565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115c95760405162461bcd60e51b81526004016109929061235f565b6001600160a01b0382166115ef5760405162461bcd60e51b8152600401610992906123a4565b806000036116085761160383836000611c42565b505050565b600b5460ff16156118c7576005546001600160a01b0384811691161480159061163f57506005546001600160a01b03838116911614155b801561165357506001600160a01b03821615155b801561166a57506001600160a01b03821661dead14155b80156116805750600554600160a01b900460ff16155b156118c757600b54610100900460ff16611718576001600160a01b03831660009081526017602052604090205460ff16806116d357506001600160a01b03821660009081526017602052604090205460ff165b6117185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610992565b6001600160a01b03831660009081526019602052604090205460ff16801561175957506001600160a01b03821660009081526018602052604090205460ff16155b1561183d576008548111156117ce5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610992565b600a546001600160a01b0383166000908152602081905260409020546117f490836122d9565b11156118385760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b6118c7565b6001600160a01b03821660009081526018602052604090205460ff166118c757600a546001600160a01b03831660009081526020819052604090205461188390836122d9565b11156118c75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b30600090815260208190526040902054600954811080159081906118f35750600b5462010000900460ff165b80156119095750600554600160a01b900460ff16155b801561192e57506001600160a01b03851660009081526019602052604090205460ff16155b801561195357506001600160a01b03851660009081526017602052604090205460ff16155b801561197857506001600160a01b03841660009081526017602052604090205460ff16155b156119a6576005805460ff60a01b1916600160a01b179055611998611d97565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119f457506001600160a01b03851660009081526017602052604090205460ff165b156119fd575060005b60008115611b88576001600160a01b03861660009081526019602052604090205460ff168015611a2f57506000601054115b15611abd57611a546064611a4e60105488611eee90919063ffffffff16565b90611f01565b905060105460125482611a679190612326565b611a71919061233d565b60156000828254611a8291906122d9565b9091555050601054601154611a979083612326565b611aa1919061233d565b60146000828254611ab291906122d9565b90915550611b6a9050565b6001600160a01b03871660009081526019602052604090205460ff168015611ae757506000600c54115b15611b6a57611b066064611a4e600c5488611eee90919063ffffffff16565b9050600c54600e5482611b199190612326565b611b23919061233d565b60156000828254611b3491906122d9565b9091555050600c54600d54611b499083612326565b611b53919061233d565b60146000828254611b6491906122d9565b90915550505b8015611b7b57611b7b873083611c42565b611b8581866123e7565b94505b611b93878787611c42565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c685760405162461bcd60e51b81526004016109929061235f565b6001600160a01b038216611c8e5760405162461bcd60e51b8152600401610992906123a4565b6001600160a01b03831660009081526020819052604090205481811015611d065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610992565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d3d9084906122d9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8991815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601554601454611dbb91906122d9565b90506000821580611dca575081155b15611dd457505050565b600954611de2906014612326565b831115611dfa57600954611df7906014612326565b92505b611e0383611f0d565b60004790506000611e2384611a4e60145485611eee90919063ffffffff16565b90506000611e3182846123e7565b6000601481905560158190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e89576040519150601f19603f3d011682016040523d82523d6000602084013e611e8e565b606091505b50506006546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114611ede576040519150601f19603f3d011682016040523d82523d6000602084013e611ee3565b606091505b505050505050505050565b6000611efa8284612326565b9392505050565b6000611efa828461233d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f4257611f426123fa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe49190612410565b81600181518110611ff757611ff76123fa565b60200260200101906001600160a01b031690816001600160a01b031681525050612042307f00000000000000000000000000000000000000000000000000000000000000008461147f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061209790859060009086903090429060040161242d565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b505050505050565b600080604083850312156120e057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561211c57858101830151858201604001528201612100565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461147c57600080fd5b6000806040838503121561216557600080fd5b82356121708161213d565b946020939093013593505050565b60006020828403121561219057600080fd5b8135611efa8161213d565b6000602082840312156121ad57600080fd5b5035919050565b6000806000606084860312156121c957600080fd5b83356121d48161213d565b925060208401356121e48161213d565b929592945050506040919091013590565b803580151581146113df57600080fd5b6000806040838503121561221857600080fd5b82356122238161213d565b9150612231602084016121f5565b90509250929050565b60006020828403121561224c57600080fd5b611efa826121f5565b6000806040838503121561226857600080fd5b82356122738161213d565b915060208301356122838161213d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ac757610ac76122c3565b600181811c9082168061230057607f821691505b60208210810361232057634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610ac757610ac76122c3565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ac757610ac76122c3565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561242257600080fd5b8151611efa8161213d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561247d5784516001600160a01b031683529383019391830191600101612458565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122063e4a465b5cde9301aec59c0967cdd82c5bc1f18466bc19c9aa91cb18b1d767064736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c806375f0a87411610190578063a9059cbb116100dc578063c8c8ebe411610095578063dd62ed3e1161006f578063dd62ed3e146108d6578063e2f456051461091c578063f2fde38b14610932578063f8b45b051461095257600080fd5b8063c8c8ebe41461088a578063d257b34f146108a0578063d85ba063146108c057600080fd5b8063a9059cbb146107bb578063aacebbe3146107db578063b62496f5146107fb578063bbc0c7421461082b578063c02466681461084a578063c18bc1951461086a57600080fd5b8063924de9b7116101495780639c3b4fdc116101235780639c3b4fdc146107595780639fccce321461076f578063a0d82dc514610785578063a457c2d71461079b57600080fd5b8063924de9b71461070457806395d89b41146107245780639a7a23d61461073957600080fd5b806375f0a874146106655780637bce5a04146106855780638a8c523c1461069b5780638da5cb5b146106b05780638ea5220f146106ce57806392136913146106ee57600080fd5b8063313ce5671161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e5578063715018a61461061b578063751039fc146106305780637571336a1461064557600080fd5b806366ca9b831461058f5780636a486a8e146105af5780636ddd1713146105c557600080fd5b8063313ce567146104b257806331e02e0b146104ce57806339509351146104e857806349bd5a5e146105085780634a62bb651461053c5780634fbee1931461055657600080fd5b80631816467f116102a15780631816467f1461040c5780631f3fed8f1461042c578063203e727e1461044257806323b872dd1461046257806327c8f835146104825780632b36a6d21461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f3660046120cd565b610968565b005b34801561032257600080fd5b5061032b610a24565b60405161033891906120ef565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612152565b610ab6565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c36600461217e565b60186020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b5061031461042736600461217e565b610acd565b34801561043857600080fd5b506103fe60145481565b34801561044e57600080fd5b5061031461045d36600461219b565b610b54565b34801561046e57600080fd5b5061036161047d3660046121b4565b610c31565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b506013546103619060ff1681565b3480156104be57600080fd5b5060405160128152602001610338565b3480156104da57600080fd5b50600f546103619060ff1681565b3480156104f457600080fd5b50610361610503366004612152565b610cdb565b34801561051457600080fd5b506103d57f00000000000000000000000092c9a0e935f78a7f62b5170469d402172dd0cc9d81565b34801561054857600080fd5b50600b546103619060ff1681565b34801561056257600080fd5b5061036161057136600461217e565b6001600160a01b031660009081526017602052604090205460ff1690565b34801561059b57600080fd5b506103146105aa3660046120cd565b610d17565b3480156105bb57600080fd5b506103fe60105481565b3480156105d157600080fd5b50600b546103619062010000900460ff1681565b3480156105f157600080fd5b506103fe61060036600461217e565b6001600160a01b031660009081526020819052604090205490565b34801561062757600080fd5b50610314610dc9565b34801561063c57600080fd5b50610361610dff565b34801561065157600080fd5b50610314610660366004612205565b610e3c565b34801561067157600080fd5b506006546103d5906001600160a01b031681565b34801561069157600080fd5b506103fe600d5481565b3480156106a757600080fd5b50610314610e91565b3480156106bc57600080fd5b506005546001600160a01b03166103d5565b3480156106da57600080fd5b506007546103d5906001600160a01b031681565b3480156106fa57600080fd5b506103fe60115481565b34801561071057600080fd5b5061031461071f36600461223a565b610ed2565b34801561073057600080fd5b5061032b610f18565b34801561074557600080fd5b50610314610754366004612205565b610f27565b34801561076557600080fd5b506103fe600e5481565b34801561077b57600080fd5b506103fe60155481565b34801561079157600080fd5b506103fe60125481565b3480156107a757600080fd5b506103616107b6366004612152565b611006565b3480156107c757600080fd5b506103616107d6366004612152565b61109f565b3480156107e757600080fd5b506103146107f636600461217e565b6110ac565b34801561080757600080fd5b5061036161081636600461217e565b60196020526000908152604090205460ff1681565b34801561083757600080fd5b50600b5461036190610100900460ff1681565b34801561085657600080fd5b50610314610865366004612205565b611133565b34801561087657600080fd5b5061031461088536600461219b565b6111bc565b34801561089657600080fd5b506103fe60085481565b3480156108ac57600080fd5b506103616108bb36600461219b565b61128d565b3480156108cc57600080fd5b506103fe600c5481565b3480156108e257600080fd5b506103fe6108f1366004612255565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561092857600080fd5b506103fe60095481565b34801561093e57600080fd5b5061031461094d36600461217e565b6113e4565b34801561095e57600080fd5b506103fe600a5481565b6005546001600160a01b0316331461099b5760405162461bcd60e51b81526004016109929061228e565b60405180910390fd5b60006109a782846122d9565b60135490915060ff16156109c4576013805460ff19169055610a16565b600a811115806109d5575060105481105b610a165760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b21039b2b636103332b2b99760711b6044820152606401610992565b601192909255601255601055565b606060038054610a33906122ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906122ec565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000610ac333848461147f565b5060015b92915050565b6005546001600160a01b03163314610af75760405162461bcd60e51b81526004016109929061228e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610b7e5760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e8610b9360025490565b610b9e906001612326565b610ba8919061233d565b610bb2919061233d565b811015610c195760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610992565b610c2b81670de0b6b3a7640000612326565b60085550565b6000610c3e8484846115a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cc35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610992565b610cd0853385840361147f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac3918590610d129086906122d9565b61147f565b6005546001600160a01b03163314610d415760405162461bcd60e51b81526004016109929061228e565b6000610d4d82846122d9565b600f5490915060ff1615610d6a57600f805460ff19169055610dbb565b600a81111580610d7b5750600c5481105b610dbb5760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b210313abc903332b2b99760791b6044820152606401610992565b600d92909255600e55600c55565b6005546001600160a01b03163314610df35760405162461bcd60e51b81526004016109929061228e565b610dfd6000611b9c565b565b6005546000906001600160a01b03163314610e2c5760405162461bcd60e51b81526004016109929061228e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610e665760405162461bcd60e51b81526004016109929061228e565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b81526004016109929061228e565b600b805462ffff0019166201010017905543601655565b6005546001600160a01b03163314610efc5760405162461bcd60e51b81526004016109929061228e565b600b8054911515620100000262ff000019909216919091179055565b606060048054610a33906122ec565b6005546001600160a01b03163314610f515760405162461bcd60e51b81526004016109929061228e565b7f00000000000000000000000092c9a0e935f78a7f62b5170469d402172dd0cc9d6001600160a01b0316826001600160a01b031603610ff85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610992565b6110028282611bee565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110885760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610992565b611095338585840361147f565b5060019392505050565b6000610ac33384846115a3565b6005546001600160a01b031633146110d65760405162461bcd60e51b81526004016109929061228e565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461115d5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111e65760405162461bcd60e51b81526004016109929061228e565b670de0b6b3a76400006103e86111fb60025490565b611206906005612326565b611210919061233d565b61121a919061233d565b8110156112755760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610992565b61128781670de0b6b3a7640000612326565b600a5550565b6005546000906001600160a01b031633146112ba5760405162461bcd60e51b81526004016109929061228e565b620186a06112c760025490565b6112d2906001612326565b6112dc919061233d565b8210156113495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610992565b6103e861135560025490565b611360906005612326565b61136a919061233d565b8211156113d65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610992565b50600981905560015b919050565b6005546001600160a01b0316331461140e5760405162461bcd60e51b81526004016109929061228e565b6001600160a01b0381166114735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610992565b61147c81611b9c565b50565b6001600160a01b0383166114e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610992565b6001600160a01b0382166115425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610992565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115c95760405162461bcd60e51b81526004016109929061235f565b6001600160a01b0382166115ef5760405162461bcd60e51b8152600401610992906123a4565b806000036116085761160383836000611c42565b505050565b600b5460ff16156118c7576005546001600160a01b0384811691161480159061163f57506005546001600160a01b03838116911614155b801561165357506001600160a01b03821615155b801561166a57506001600160a01b03821661dead14155b80156116805750600554600160a01b900460ff16155b156118c757600b54610100900460ff16611718576001600160a01b03831660009081526017602052604090205460ff16806116d357506001600160a01b03821660009081526017602052604090205460ff165b6117185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610992565b6001600160a01b03831660009081526019602052604090205460ff16801561175957506001600160a01b03821660009081526018602052604090205460ff16155b1561183d576008548111156117ce5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610992565b600a546001600160a01b0383166000908152602081905260409020546117f490836122d9565b11156118385760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b6118c7565b6001600160a01b03821660009081526018602052604090205460ff166118c757600a546001600160a01b03831660009081526020819052604090205461188390836122d9565b11156118c75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610992565b30600090815260208190526040902054600954811080159081906118f35750600b5462010000900460ff165b80156119095750600554600160a01b900460ff16155b801561192e57506001600160a01b03851660009081526019602052604090205460ff16155b801561195357506001600160a01b03851660009081526017602052604090205460ff16155b801561197857506001600160a01b03841660009081526017602052604090205460ff16155b156119a6576005805460ff60a01b1916600160a01b179055611998611d97565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b9092048216159116806119f457506001600160a01b03851660009081526017602052604090205460ff165b156119fd575060005b60008115611b88576001600160a01b03861660009081526019602052604090205460ff168015611a2f57506000601054115b15611abd57611a546064611a4e60105488611eee90919063ffffffff16565b90611f01565b905060105460125482611a679190612326565b611a71919061233d565b60156000828254611a8291906122d9565b9091555050601054601154611a979083612326565b611aa1919061233d565b60146000828254611ab291906122d9565b90915550611b6a9050565b6001600160a01b03871660009081526019602052604090205460ff168015611ae757506000600c54115b15611b6a57611b066064611a4e600c5488611eee90919063ffffffff16565b9050600c54600e5482611b199190612326565b611b23919061233d565b60156000828254611b3491906122d9565b9091555050600c54600d54611b499083612326565b611b53919061233d565b60146000828254611b6491906122d9565b90915550505b8015611b7b57611b7b873083611c42565b611b8581866123e7565b94505b611b93878787611c42565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c685760405162461bcd60e51b81526004016109929061235f565b6001600160a01b038216611c8e5760405162461bcd60e51b8152600401610992906123a4565b6001600160a01b03831660009081526020819052604090205481811015611d065760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610992565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d3d9084906122d9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d8991815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601554601454611dbb91906122d9565b90506000821580611dca575081155b15611dd457505050565b600954611de2906014612326565b831115611dfa57600954611df7906014612326565b92505b611e0383611f0d565b60004790506000611e2384611a4e60145485611eee90919063ffffffff16565b90506000611e3182846123e7565b6000601481905560158190556007546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e89576040519150601f19603f3d011682016040523d82523d6000602084013e611e8e565b606091505b50506006546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114611ede576040519150601f19603f3d011682016040523d82523d6000602084013e611ee3565b606091505b505050505050505050565b6000611efa8284612326565b9392505050565b6000611efa828461233d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f4257611f426123fa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe49190612410565b81600181518110611ff757611ff76123fa565b60200260200101906001600160a01b031690816001600160a01b031681525050612042307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461147f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061209790859060009086903090429060040161242d565b600060405180830381600087803b1580156120b157600080fd5b505af11580156120c5573d6000803e3d6000fd5b505050505050565b600080604083850312156120e057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561211c57858101830151858201604001528201612100565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461147c57600080fd5b6000806040838503121561216557600080fd5b82356121708161213d565b946020939093013593505050565b60006020828403121561219057600080fd5b8135611efa8161213d565b6000602082840312156121ad57600080fd5b5035919050565b6000806000606084860312156121c957600080fd5b83356121d48161213d565b925060208401356121e48161213d565b929592945050506040919091013590565b803580151581146113df57600080fd5b6000806040838503121561221857600080fd5b82356122238161213d565b9150612231602084016121f5565b90509250929050565b60006020828403121561224c57600080fd5b611efa826121f5565b6000806040838503121561226857600080fd5b82356122738161213d565b915060208301356122838161213d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610ac757610ac76122c3565b600181811c9082168061230057607f821691505b60208210810361232057634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610ac757610ac76122c3565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ac757610ac76122c3565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561242257600080fd5b8151611efa8161213d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561247d5784516001600160a01b031683529383019391830191600101612458565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122063e4a465b5cde9301aec59c0967cdd82c5bc1f18466bc19c9aa91cb18b1d767064736f6c63430008130033

Deployed Bytecode Sourcemap

32987:13316:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39668:483;;;;;;;;;;-1:-1:-1;39668:483:0;;;;;:::i;:::-;;:::i;:::-;;9841:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12149:210;;;;;;;;;;-1:-1:-1;12149:210:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;12149:210:0;1276:187:1;34122:63:0;;;;;;;;;;-1:-1:-1;34122:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33064:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1911:32:1;;;1893:51;;1881:2;1866:18;33064:51:0;1720:230:1;10961:108:0;;;;;;;;;;-1:-1:-1;11049:12:0;;10961:108;;;2101:25:1;;;2089:2;2074:18;10961:108:0;1955:177:1;41073:157:0;;;;;;;;;;-1:-1:-1;41073:157:0;;;;;:::i;:::-;;:::i;33840:33::-;;;;;;;;;;;;;;;;38267:275;;;;;;;;;;-1:-1:-1;38267:275:0;;;;;:::i;:::-;;:::i;12841:529::-;;;;;;;;;;-1:-1:-1;12841:529:0;;;;;:::i;:::-;;:::i;33167:53::-;;;;;;;;;;;;33213:6;33167:53;;33805:26;;;;;;;;;;-1:-1:-1;33805:26:0;;;;;;;;10803:93;;;;;;;;;;-1:-1:-1;10803:93:0;;10886:2;3133:36:1;;3121:2;3106:18;10803:93:0;2991:184:1;33666:25:0;;;;;;;;;;-1:-1:-1;33666:25:0;;;;;;;;13779:297;;;;;;;;;;-1:-1:-1;13779:297:0;;;;;:::i;:::-;;:::i;33122:38::-;;;;;;;;;;;;;;;33444:33;;;;;;;;;;-1:-1:-1;33444:33:0;;;;;;;;41238:126;;;;;;;;;;-1:-1:-1;41238:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41328:28:0;41304:4;41328:28;;;:19;:28;;;;;;;;;41238:126;39185:475;;;;;;;;;;-1:-1:-1;39185:475:0;;;;;:::i;:::-;;:::i;33700:28::-;;;;;;;;;;;;;;;;33524:31;;;;;;;;;;-1:-1:-1;33524:31:0;;;;;;;;;;;11132:177;;;;;;;;;;-1:-1:-1;11132:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11283:18:0;11251:7;11283:18;;;;;;;;;;;;11132:177;2960:103;;;;;;;;;;;;;:::i;37571:121::-;;;;;;;;;;;;;:::i;38814:167::-;;;;;;;;;;-1:-1:-1;38814:167:0;;;;;:::i;:::-;;:::i;33259:30::-;;;;;;;;;;-1:-1:-1;33259:30:0;;;;-1:-1:-1;;;;;33259:30:0;;;33598;;;;;;;;;;;;;;;;37371:148;;;;;;;;;;;;;:::i;2309:87::-;;;;;;;;;;-1:-1:-1;2382:6:0;;-1:-1:-1;;;;;2382:6:0;2309:87;;33296:24;;;;;;;;;;-1:-1:-1;33296:24:0;;;;-1:-1:-1;;;;;33296:24:0;;;33735:31;;;;;;;;;;;;;;;;39077:100;;;;;;;;;;-1:-1:-1;39077:100:0;;;;;:::i;:::-;;:::i;10060:104::-;;;;;;;;;;;;;:::i;40349:304::-;;;;;;;;;;-1:-1:-1;40349:304:0;;;;;:::i;:::-;;:::i;33635:24::-;;;;;;;;;;;;;;;;33880:27;;;;;;;;;;;;;;;;33773:25;;;;;;;;;;;;;;;;14579:482;;;;;;;;;;-1:-1:-1;14579:482:0;;;;;:::i;:::-;;:::i;11522:216::-;;;;;;;;;;-1:-1:-1;11522:216:0;;;;;:::i;:::-;;:::i;40857:208::-;;;;;;;;;;-1:-1:-1;40857:208:0;;;;;:::i;:::-;;:::i;34343:57::-;;;;;;;;;;-1:-1:-1;34343:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33484:33;;;;;;;;;;-1:-1:-1;33484:33:0;;;;;;;;;;;40159:182;;;;;;;;;;-1:-1:-1;40159:182:0;;;;;:::i;:::-;;:::i;38550:256::-;;;;;;;;;;-1:-1:-1;38550:256:0;;;;;:::i;:::-;;:::i;33329:35::-;;;;;;;;;;;;;;;;37762:497;;;;;;;;;;-1:-1:-1;37762:497:0;;;;;:::i;:::-;;:::i;33564:27::-;;;;;;;;;;;;;;;;11801:201;;;;;;;;;;-1:-1:-1;11801:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;11967:18:0;;;11935:7;11967:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11801:201;33371:33;;;;;;;;;;;;;;;;3218:238;;;;;;;;;;-1:-1:-1;3218:238:0;;;;;:::i;:::-;;:::i;33411:24::-;;;;;;;;;;;;;;;;39668:483;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;;;;;;;;;39787:21:::1;39811:23;39827:7:::0;39811:13;:23:::1;:::i;:::-;39849:14;::::0;39787:47;;-1:-1:-1;39849:14:0::1;;39845:185;;;39880:14;:22:::0;;-1:-1:-1;;39880:22:0::1;::::0;;39845:185:::1;;;39960:2;39943:13;:19;;:52;;;;39982:13;;39966;:29;39943:52;39935:83;;;::::0;-1:-1:-1;;;39935:83:0;;5068:2:1;39935:83:0::1;::::0;::::1;5050:21:1::0;5107:2;5087:18;;;5080:30;-1:-1:-1;;;5126:18:1;;;5119:48;5184:18;;39935:83:0::1;4866:342:1::0;39935:83:0::1;40040:16;:32:::0;;;;40083:10:::1;:20:::0;40114:13:::1;:29:::0;39668:483::o;9841:100::-;9895:13;9928:5;9921:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9841:100;:::o;12149:210::-;12268:4;12290:39;1037:10;12313:7;12322:6;12290:8;:39::i;:::-;-1:-1:-1;12347:4:0;12149:210;;;;;:::o;41073:157::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;41180:9:::1;::::0;41152:38:::1;::::0;-1:-1:-1;;;;;41180:9:0;;::::1;::::0;41152:38;::::1;::::0;::::1;::::0;41180:9:::1;::::0;41152:38:::1;41201:9;:21:::0;;-1:-1:-1;;;;;;41201:21:0::1;-1:-1:-1::0;;;;;41201:21:0;;;::::1;::::0;;;::::1;::::0;;41073:157::o;38267:275::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;38404:4:::1;38396;38375:13;11049:12:::0;;;10961:108;38375:13:::1;:17;::::0;38391:1:::1;38375:17;:::i;:::-;38374:26;;;;:::i;:::-;38373:35;;;;:::i;:::-;38363:6;:45;;38341:142;;;::::0;-1:-1:-1;;;38341:142:0;;6195:2:1;38341:142:0::1;::::0;::::1;6177:21:1::0;6234:2;6214:18;;;6207:30;6273:34;6253:18;;;6246:62;-1:-1:-1;;;6324:18:1;;;6317:45;6379:19;;38341:142:0::1;5993:411:1::0;38341:142:0::1;38517:17;:6:::0;38527::::1;38517:17;:::i;:::-;38494:20;:40:::0;-1:-1:-1;38267:275:0:o;12841:529::-;12981:4;12998:36;13008:6;13016:9;13027:6;12998:9;:36::i;:::-;-1:-1:-1;;;;;13074:19:0;;13047:24;13074:19;;;:11;:19;;;;;;;;1037:10;13074:33;;;;;;;;13140:26;;;;13118:116;;;;-1:-1:-1;;;13118:116:0;;6611:2:1;13118:116:0;;;6593:21:1;6650:2;6630:18;;;6623:30;6689:34;6669:18;;;6662:62;-1:-1:-1;;;6740:18:1;;;6733:38;6788:19;;13118:116:0;6409:404:1;13118:116:0;13270:57;13279:6;1037:10;13320:6;13301:16;:25;13270:8;:57::i;:::-;-1:-1:-1;13358:4:0;;12841:529;-1:-1:-1;;;;12841:529:0:o;13779:297::-;1037:10;13894:4;13988:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13988:34:0;;;;;;;;;;13894:4;;13916:130;;13966:7;;13988:47;;14025:10;;13988:47;:::i;:::-;13916:8;:130::i;39185:475::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;39303:21:::1;39327:23;39343:7:::0;39327:13;:23:::1;:::i;:::-;39365:13;::::0;39303:47;;-1:-1:-1;39365:13:0::1;;39361:181;;;39395:13;:21:::0;;-1:-1:-1;;39395:21:0::1;::::0;;39361:181:::1;;;39474:2;39457:13;:19;;:51;;;;39496:12;;39480:13;:28;39457:51;39449:81;;;::::0;-1:-1:-1;;;39449:81:0;;7020:2:1;39449:81:0::1;::::0;::::1;7002:21:1::0;7059:2;7039:18;;;7032:30;-1:-1:-1;;;7078:18:1;;;7071:47;7135:18;;39449:81:0::1;6818:341:1::0;39449:81:0::1;39552:15;:31:::0;;;;39594:9:::1;:19:::0;39624:12:::1;:28:::0;39185:475::o;2960:103::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;3025:30:::1;3052:1;3025:18;:30::i;:::-;2960:103::o:0;37571:121::-;2382:6;;37623:4;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;-1:-1:-1;37640:14:0::1;:22:::0;;-1:-1:-1;;37640:22:0::1;::::0;;;37571:121;:::o;38814:167::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38927:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38927:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38814:167::o;37371:148::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;37426:13:::1;:20:::0;;-1:-1:-1;;37457:18:0;;;;;37499:12:::1;37486:10;:25:::0;37371:148::o;39077:100::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;39148:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39148:21:0;;::::1;::::0;;;::::1;::::0;;39077:100::o;10060:104::-;10116:13;10149:7;10142:14;;;;;:::i;40349:304::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;40493:13:::1;-1:-1:-1::0;;;;;40485:21:0::1;:4;-1:-1:-1::0;;;;;40485:21:0::1;::::0;40463:128:::1;;;::::0;-1:-1:-1;;;40463:128:0;;7366:2:1;40463:128:0::1;::::0;::::1;7348:21:1::0;7405:2;7385:18;;;7378:30;7444:34;7424:18;;;7417:62;7515:27;7495:18;;;7488:55;7560:19;;40463:128:0::1;7164:421:1::0;40463:128:0::1;40604:41;40633:4;40639:5;40604:28;:41::i;:::-;40349:304:::0;;:::o;14579:482::-;1037:10;14699:4;14748:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14748:34:0;;;;;;;;;;14815:35;;;;14793:122;;;;-1:-1:-1;;;14793:122:0;;7792:2:1;14793:122:0;;;7774:21:1;7831:2;7811:18;;;7804:30;7870:34;7850:18;;;7843:62;-1:-1:-1;;;7921:18:1;;;7914:35;7966:19;;14793:122:0;7590:401:1;14793:122:0;14951:67;1037:10;14974:7;15002:15;14983:16;:34;14951:8;:67::i;:::-;-1:-1:-1;15049:4:0;;14579:482;-1:-1:-1;;;14579:482:0:o;11522:216::-;11644:4;11666:42;1037:10;11690:9;11701:6;11666:9;:42::i;40857:208::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;40994:15:::1;::::0;40951:59:::1;::::0;-1:-1:-1;;;;;40994:15:0;;::::1;::::0;40951:59;::::1;::::0;::::1;::::0;40994:15:::1;::::0;40951:59:::1;41021:15;:36:::0;;-1:-1:-1;;;;;;41021:36:0::1;-1:-1:-1::0;;;;;41021:36:0;;;::::1;::::0;;;::::1;::::0;;40857:208::o;40159:182::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40244:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40244:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40299:34;;1416:41:1;;;40299:34:0::1;::::0;1389:18:1;40299:34:0::1;;;;;;;40159:182:::0;;:::o;38550:256::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;38690:4:::1;38682;38661:13;11049:12:::0;;;10961:108;38661:13:::1;:17;::::0;38677:1:::1;38661:17;:::i;:::-;38660:26;;;;:::i;:::-;38659:35;;;;:::i;:::-;38649:6;:45;;38627:131;;;::::0;-1:-1:-1;;;38627:131:0;;8198:2:1;38627:131:0::1;::::0;::::1;8180:21:1::0;8237:2;8217:18;;;8210:30;8276:34;8256:18;;;8249:62;-1:-1:-1;;;8327:18:1;;;8320:34;8371:19;;38627:131:0::1;7996:400:1::0;38627:131:0::1;38781:17;:6:::0;38791::::1;38781:17;:::i;:::-;38769:9;:29:::0;-1:-1:-1;38550:256:0:o;37762:497::-;2382:6;;37870:4;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;37949:6:::1;37928:13;11049:12:::0;;;10961:108;37928:13:::1;:17;::::0;37944:1:::1;37928:17;:::i;:::-;37927:28;;;;:::i;:::-;37914:9;:41;;37892:144;;;::::0;-1:-1:-1;;;37892:144:0;;8603:2:1;37892:144:0::1;::::0;::::1;8585:21:1::0;8642:2;8622:18;;;8615:30;8681:34;8661:18;;;8654:62;-1:-1:-1;;;8732:18:1;;;8725:51;8793:19;;37892:144:0::1;8401:417:1::0;37892:144:0::1;38104:4;38083:13;11049:12:::0;;;10961:108;38083:13:::1;:17;::::0;38099:1:::1;38083:17;:::i;:::-;38082:26;;;;:::i;:::-;38069:9;:39;;38047:141;;;::::0;-1:-1:-1;;;38047:141:0;;9025:2:1;38047:141:0::1;::::0;::::1;9007:21:1::0;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:50;9214:19;;38047:141:0::1;8823:416:1::0;38047:141:0::1;-1:-1:-1::0;38199:18:0::1;:30:::0;;;38247:4:::1;2600:1;37762:497:::0;;;:::o;3218:238::-;2382:6;;-1:-1:-1;;;;;2382:6:0;1037:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3321:22:0;::::1;3299:110;;;::::0;-1:-1:-1;;;3299:110:0;;9446:2:1;3299:110:0::1;::::0;::::1;9428:21:1::0;9485:2;9465:18;;;9458:30;9524:34;9504:18;;;9497:62;-1:-1:-1;;;9575:18:1;;;9568:36;9621:19;;3299:110:0::1;9244:402:1::0;3299:110:0::1;3420:28;3439:8;3420:18;:28::i;:::-;3218:238:::0;:::o;18369:380::-;-1:-1:-1;;;;;18505:19:0;;18497:68;;;;-1:-1:-1;;;18497:68:0;;9853:2:1;18497:68:0;;;9835:21:1;9892:2;9872:18;;;9865:30;9931:34;9911:18;;;9904:62;-1:-1:-1;;;9982:18:1;;;9975:34;10026:19;;18497:68:0;9651:400:1;18497:68:0;-1:-1:-1;;;;;18584:21:0;;18576:68;;;;-1:-1:-1;;;18576:68:0;;10258:2:1;18576:68:0;;;10240:21:1;10297:2;10277:18;;;10270:30;10336:34;10316:18;;;10309:62;-1:-1:-1;;;10387:18:1;;;10380:32;10429:19;;18576:68:0;10056:398:1;18576:68:0;-1:-1:-1;;;;;18657:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18709:32;;2101:25:1;;;18709:32:0;;2074:18:1;18709:32:0;;;;;;;18369:380;;;:::o;41372:3405::-;-1:-1:-1;;;;;41504:18:0;;41496:68;;;;-1:-1:-1;;;41496:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41583:16:0;;41575:64;;;;-1:-1:-1;;;41575:64:0;;;;;;;:::i;:::-;41656:6;41666:1;41656:11;41652:93;;41684:28;41700:4;41706:2;41710:1;41684:15;:28::i;:::-;41372:3405;;;:::o;41652:93::-;41761:14;;;;41757:1337;;;2382:6;;-1:-1:-1;;;;;41814:15:0;;;2382:6;;41814:15;;;;:49;;-1:-1:-1;2382:6:0;;-1:-1:-1;;;;;41850:13:0;;;2382:6;;41850:13;;41814:49;:86;;;;-1:-1:-1;;;;;;41884:16:0;;;;41814:86;:128;;;;-1:-1:-1;;;;;;41921:21:0;;41935:6;41921:21;;41814:128;:158;;;;-1:-1:-1;41964:8:0;;-1:-1:-1;;;41964:8:0;;;;41963:9;41814:158;41792:1291;;;42012:13;;;;;;;42007:223;;-1:-1:-1;;;;;42084:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42113:23:0;;;;;;:19;:23;;;;;;;;42084:52;42050:160;;;;-1:-1:-1;;;42050:160:0;;11471:2:1;42050:160:0;;;11453:21:1;11510:2;11490:18;;;11483:30;-1:-1:-1;;;11529:18:1;;;11522:52;11591:18;;42050:160:0;11269:346:1;42050:160:0;-1:-1:-1;;;;;42304:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42361:35:0;;;;;;:31;:35;;;;;;;;42360:36;42304:92;42278:790;;;42483:20;;42473:6;:30;;42439:169;;;;-1:-1:-1;;;42439:169:0;;11822:2:1;42439:169:0;;;11804:21:1;11861:2;11841:18;;;11834:30;11900:34;11880:18;;;11873:62;-1:-1:-1;;;11951:18:1;;;11944:51;12012:19;;42439:169:0;11620:417:1;42439:169:0;42691:9;;-1:-1:-1;;;;;11283:18:0;;11251:7;11283:18;;;;;;;;;;;42665:22;;:6;:22;:::i;:::-;:35;;42631:140;;;;-1:-1:-1;;;42631:140:0;;12244:2:1;42631:140:0;;;12226:21:1;12283:2;12263:18;;;12256:30;-1:-1:-1;;;12302:18:1;;;12295:49;12361:18;;42631:140:0;12042:343:1;42631:140:0;42278:790;;;-1:-1:-1;;;;;42848:35:0;;;;;;:31;:35;;;;;;;;42843:225;;42968:9;;-1:-1:-1;;;;;11283:18:0;;11251:7;11283:18;;;;;;;;;;;42942:22;;:6;:22;:::i;:::-;:35;;42908:140;;;;-1:-1:-1;;;42908:140:0;;12244:2:1;42908:140:0;;;12226:21:1;12283:2;12263:18;;;12256:30;-1:-1:-1;;;12302:18:1;;;12295:49;12361:18;;42908:140:0;12042:343:1;42908:140:0;43155:4;43106:28;11283:18;;;;;;;;;;;43213;;43189:42;;;;;;;43262:35;;-1:-1:-1;43286:11:0;;;;;;;43262:35;:61;;;;-1:-1:-1;43315:8:0;;-1:-1:-1;;;43315:8:0;;;;43314:9;43262:61;:110;;;;-1:-1:-1;;;;;;43341:31:0;;;;;;:25;:31;;;;;;;;43340:32;43262:110;:153;;;;-1:-1:-1;;;;;;43390:25:0;;;;;;:19;:25;;;;;;;;43389:26;43262:153;:194;;;;-1:-1:-1;;;;;;43433:23:0;;;;;;:19;:23;;;;;;;;43432:24;43262:194;43244:326;;;43483:8;:15;;-1:-1:-1;;;;43483:15:0;-1:-1:-1;;;43483:15:0;;;43515:10;:8;:10::i;:::-;43542:8;:16;;-1:-1:-1;;;;43542:16:0;;;43244:326;43598:8;;-1:-1:-1;;;;;43708:25:0;;43582:12;43708:25;;;:19;:25;;;;;;43598:8;-1:-1:-1;;;43598:8:0;;;;;43597:9;;43708:25;;:52;;-1:-1:-1;;;;;;43737:23:0;;;;;;:19;:23;;;;;;;;43708:52;43704:100;;;-1:-1:-1;43787:5:0;43704:100;43816:12;43921:7;43917:807;;;-1:-1:-1;;;;;43973:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44022:1;44006:13;;:17;43973:50;43969:606;;;44051:34;44081:3;44051:25;44062:13;;44051:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44044:41;;44142:13;;44128:10;;44121:4;:17;;;;:::i;:::-;44120:35;;;;:::i;:::-;44104:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44224:13:0;;44204:16;;44197:23;;:4;:23;:::i;:::-;44196:41;;;;:::i;:::-;44174:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;43969:606:0;;-1:-1:-1;43969:606:0;;-1:-1:-1;;;;;44299:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44349:1;44334:12;;:16;44299:51;44295:280;;;44378:33;44407:3;44378:24;44389:12;;44378:6;:10;;:24;;;;:::i;:33::-;44371:40;;44467:12;;44454:9;;44447:4;:16;;;;:::i;:::-;44446:33;;;;:::i;:::-;44430:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;44547:12:0;;44528:15;;44521:22;;:4;:22;:::i;:::-;44520:39;;;;:::i;:::-;44498:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44295:280:0;44595:8;;44591:91;;44624:42;44640:4;44654;44661;44624:15;:42::i;:::-;44698:14;44708:4;44698:14;;:::i;:::-;;;43917:807;44736:33;44752:4;44758:2;44762:6;44736:15;:33::i;:::-;41485:3292;;;;41372:3405;;;:::o;3616:191::-;3709:6;;;-1:-1:-1;;;;;3726:17:0;;;-1:-1:-1;;;;;;3726:17:0;;;;;;;3759:40;;3709:6;;;3726:17;3709:6;;3759:40;;3690:16;;3759:40;3679:128;3616:191;:::o;40661:188::-;-1:-1:-1;;;;;40744:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40744:39:0;;;;;;;;;;40801:40;;40744:39;;:31;40801:40;;;40661:188;;:::o;15551:770::-;-1:-1:-1;;;;;15691:20:0;;15683:70;;;;-1:-1:-1;;;15683:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15772:23:0;;15764:71;;;;-1:-1:-1;;;15764:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15932:17:0;;15908:21;15932:17;;;;;;;;;;;15982:23;;;;15960:111;;;;-1:-1:-1;;;15960:111:0;;12725:2:1;15960:111:0;;;12707:21:1;12764:2;12744:18;;;12737:30;12803:34;12783:18;;;12776:62;-1:-1:-1;;;12854:18:1;;;12847:36;12900:19;;15960:111:0;12523:402:1;15960:111:0;-1:-1:-1;;;;;16107:17:0;;;:9;:17;;;;;;;;;;;16127:22;;;16107:42;;16171:20;;;;;;;;:30;;16143:6;;16107:9;16171:30;;16143:6;;16171:30;:::i;:::-;;;;;;;;16236:9;-1:-1:-1;;;;;16219:35:0;16228:6;-1:-1:-1;;;;;16219:35:0;;16247:6;16219:35;;;;2101:25:1;;2089:2;2074:18;;1955:177;16219:35:0;;;;;;;;15672:649;15551:770;;;:::o;45382:918::-;45465:4;45421:23;11283:18;;;;;;;;;;;45421:50;;45482:25;45531:12;;45510:18;;:33;;;;:::i;:::-;45482:61;-1:-1:-1;45554:12:0;45583:20;;;:46;;-1:-1:-1;45607:22:0;;45583:46;45579:85;;;45646:7;;;45382:918::o;45579:85::-;45698:18;;:23;;45719:2;45698:23;:::i;:::-;45680:15;:41;45676:115;;;45756:18;;:23;;45777:2;45756:23;:::i;:::-;45738:41;;45676:115;45803:33;45820:15;45803:16;:33::i;:::-;45849:18;45870:21;45849:42;;45902:23;45928:57;45967:17;45928:34;45943:18;;45928:10;:14;;:34;;;;:::i;:57::-;45902:83;-1:-1:-1;45996:17:0;46016:28;45902:83;46016:10;:28;:::i;:::-;46078:1;46057:18;:22;;;46090:12;:16;;;46141:9;;46133:45;;45996:48;;-1:-1:-1;;;;;;46141:9:0;;45996:48;;46133:45;46078:1;46133:45;45996:48;46141:9;46133:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46213:15:0;;46205:87;;46119:59;;-1:-1:-1;;;;;;46213:15:0;;46256:21;;46205:87;;;;46256:21;46213:15;46205:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;45382:918:0:o;23982:98::-;24040:7;24067:5;24071:1;24067;:5;:::i;:::-;24060:12;23982:98;-1:-1:-1;;;23982:98:0:o;24381:::-;24439:7;24466:5;24470:1;24466;:5;:::i;44785:589::-;44935:16;;;44949:1;44935:16;;;;;;;;44911:21;;44935:16;;;;;;;;;;-1:-1:-1;44935:16:0;44911:40;;44980:4;44962;44967:1;44962:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44962:23:0;;;-1:-1:-1;;;;;44962:23:0;;;;;45006:15;-1:-1:-1;;;;;45006:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44996:4;45001:1;44996:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44996:32:0;;;-1:-1:-1;;;;;44996:32:0;;;;;45041:62;45058:4;45073:15;45091:11;45041:8;:62::i;:::-;45142:224;;-1:-1:-1;;;45142:224:0;;-1:-1:-1;;;;;45142:15:0;:66;;;;:224;;45223:11;;45249:1;;45293:4;;45320;;45340:15;;45142:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44840:534;44785:589;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2137:180::-;2196:6;2249:2;2237:9;2228:7;2224:23;2220:32;2217:52;;;2265:1;2262;2255:12;2217:52;-1:-1:-1;2288:23:1;;2137:180;-1:-1:-1;2137:180:1:o;2322:456::-;2399:6;2407;2415;2468:2;2456:9;2447:7;2443:23;2439:32;2436:52;;;2484:1;2481;2474:12;2436:52;2523:9;2510:23;2542:31;2567:5;2542:31;:::i;:::-;2592:5;-1:-1:-1;2649:2:1;2634:18;;2621:32;2662:33;2621:32;2662:33;:::i;:::-;2322:456;;2714:7;;-1:-1:-1;;;2768:2:1;2753:18;;;;2740:32;;2322:456::o;3180:160::-;3245:20;;3301:13;;3294:21;3284:32;;3274:60;;3330:1;3327;3320:12;3345:315;3410:6;3418;3471:2;3459:9;3450:7;3446:23;3442:32;3439:52;;;3487:1;3484;3477:12;3439:52;3526:9;3513:23;3545:31;3570:5;3545:31;:::i;:::-;3595:5;-1:-1:-1;3619:35:1;3650:2;3635:18;;3619:35;:::i;:::-;3609:45;;3345:315;;;;;:::o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:388::-;3918:6;3926;3979:2;3967:9;3958:7;3954:23;3950:32;3947:52;;;3995:1;3992;3985:12;3947:52;4034:9;4021:23;4053:31;4078:5;4053:31;:::i;:::-;4103:5;-1:-1:-1;4160:2:1;4145:18;;4132:32;4173:33;4132:32;4173:33;:::i;:::-;4225:7;4215:17;;;3850:388;;;;;:::o;4243:356::-;4445:2;4427:21;;;4464:18;;;4457:30;4523:34;4518:2;4503:18;;4496:62;4590:2;4575:18;;4243:356::o;4604:127::-;4665:10;4660:3;4656:20;4653:1;4646:31;4696:4;4693:1;4686:15;4720:4;4717:1;4710:15;4736:125;4801:9;;;4822:10;;;4819:36;;;4835:18;;:::i;5213:380::-;5292:1;5288:12;;;;5335;;;5356:61;;5410:4;5402:6;5398:17;5388:27;;5356:61;5463:2;5455:6;5452:14;5432:18;5429:38;5426:161;;5509:10;5504:3;5500:20;5497:1;5490:31;5544:4;5541:1;5534:15;5572:4;5569:1;5562:15;5426:161;;5213:380;;;:::o;5598:168::-;5671:9;;;5702;;5719:15;;;5713:22;;5699:37;5689:71;;5740:18;;:::i;5771:217::-;5811:1;5837;5827:132;;5881:10;5876:3;5872:20;5869:1;5862:31;5916:4;5913:1;5906:15;5944:4;5941:1;5934:15;5827:132;-1:-1:-1;5973:9:1;;5771:217::o;10459:401::-;10661:2;10643:21;;;10700:2;10680:18;;;10673:30;10739:34;10734:2;10719:18;;10712:62;-1:-1:-1;;;10805:2:1;10790:18;;10783:35;10850:3;10835:19;;10459:401::o;10865:399::-;11067:2;11049:21;;;11106:2;11086:18;;;11079:30;11145:34;11140:2;11125:18;;11118:62;-1:-1:-1;;;11211:2:1;11196:18;;11189:33;11254:3;11239:19;;10865:399::o;12390:128::-;12457:9;;;12478:11;;;12475:37;;;12492:18;;:::i;13272:127::-;13333:10;13328:3;13324:20;13321:1;13314:31;13364:4;13361:1;13354:15;13388:4;13385:1;13378:15;13404:251;13474:6;13527:2;13515:9;13506:7;13502:23;13498:32;13495:52;;;13543:1;13540;13533:12;13495:52;13575:9;13569:16;13594:31;13619:5;13594:31;:::i;13660:980::-;13922:4;13970:3;13959:9;13955:19;14001:6;13990:9;13983:25;14027:2;14065:6;14060:2;14049:9;14045:18;14038:34;14108:3;14103:2;14092:9;14088:18;14081:31;14132:6;14167;14161:13;14198:6;14190;14183:22;14236:3;14225:9;14221:19;14214:26;;14275:2;14267:6;14263:15;14249:29;;14296:1;14306:195;14320:6;14317:1;14314:13;14306:195;;;14385:13;;-1:-1:-1;;;;;14381:39:1;14369:52;;14476:15;;;;14441:12;;;;14417:1;14335:9;14306:195;;;-1:-1:-1;;;;;;;14557:32:1;;;;14552:2;14537:18;;14530:60;-1:-1:-1;;;14621:3:1;14606:19;14599:35;14518:3;13660:980;-1:-1:-1;;;13660:980:1:o

Swarm Source

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