ETH Price: $1,953.83 (+4.61%)

Token

Chicken (CHKN)

Overview

Max Total Supply

690,000,000 CHKN

Holders

10

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
498,645,712.72363711622 CHKN

Value
$0.00
0xe7C8ec6e68452f950B749a401e0284976680B386
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Retard

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.10

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion
File 1 of 6 : Retard.sol
// SPDX-License-Identifier: UNLICENSED

import "./BondingCurve.sol";
import "./Interfaces/IERC7572.sol";

interface IWETH {
    function deposit() external payable;

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

interface IUniswapV2Pair {
    function mint(address to) external returns (uint256 liquidity);

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

pragma solidity ^0.8.19;

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (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);
}

// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.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 subtraction 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;
        }
    }
}

// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

    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 Retard is ERC20, Ownable, IERC7572 {
    using SafeMath for uint256;
    BondingCurve public TradingContract;
    error UnauthorizedOperator(address account);

    address private _operator; // bonding curve smartcontract

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public treasuryWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingActive;

    uint256 public activeTime;

    bool private maxBuyStat1;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _automatedMarketMakerPairs;
    mapping(address => bool) private _isExcludedFromMaxTransaction;

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    event operatorAccessTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    uint256 public maxTransaction;
    uint256 public maxWallet;
    address private pairAddressTemp;

    string internal _contractURI;

    constructor(
        string memory name,
        string memory symbol,
        string memory contractUri,
        address devBuyAddress,
        bool devBuyEnabled,
        bool maxBuyEnabled,
        address swapRouter
    ) ERC20(name, symbol) Ownable(msg.sender) {
        uint256 totalSupply = 690_000_000 * 1e18;
        _contractURI = contractUri;
        TradingContract = new BondingCurve(
            devBuyAddress,
            devBuyEnabled,
            address(this),
            msg.sender
        );
        _operator = address(TradingContract);

        uniswapV2Router = IUniswapV2Router02(
            swapRouter
            // use mainnet uniswap v2 replace
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        maxBuyStat1 = maxBuyEnabled;

        if (maxBuyEnabled) {
            maxTransaction = totalSupply.div(100);
            maxWallet = totalSupply.div(100);
        } else {
            maxTransaction = totalSupply;
            maxWallet = totalSupply;
        }
        treasuryWallet = msg.sender; // tax and lp collection wallet

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(address(TradingContract), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(address(TradingContract), true);

        address factory = uniswapV2Router.factory();
        address weth = uniswapV2Router.WETH();

        address existingPair = IUniswapV2Factory(factory).getPair(
            address(this),
            weth
        );
        if (existingPair == address(0)) {
            uniswapV2Pair = IUniswapV2Factory(factory).createPair(
                address(this),
                weth
            );
        } else {
            uniswapV2Pair = existingPair;
        }

        pairAddressTemp = address(uniswapV2Pair);

        _setAutomatedMarketMakerPair(pairAddressTemp, true);
        excludeFromMaxTransaction(pairAddressTemp, true);
        _setAutomatedMarketMakerPair(address(TradingContract), true);
        _mint(address(this), 190_000_000 * 1e18);
        _mint(address(TradingContract), 500_000_000 * 1e18);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function addLiquidity() internal {
        require(!tradingActive, "Trading already active.");

        uint256 tokens = balanceOf(address(this));
        uint256 tokensToSend = tokens - tokens.div(25); // keeps 4%
        uint256 ethAmount = address(this).balance;

        address pair = pairAddressTemp;
        address wethAddress = uniswapV2Router.WETH();

        _transfer(address(this), pair, tokensToSend);

        IWETH(wethAddress).deposit{value: ethAmount}();
        IERC20(wethAddress).transfer(pair, ethAmount);

        IUniswapV2Pair(pair).mint(deadAddress);
    }

    function enableTrading() public onlyOperator {
        addLiquidity();
        require(!tradingActive, "Trading already active.");
        tradingActive = true;
        activeTime = block.timestamp;
    }

    function settreasuryWallet(address _treasuryWallet) external onlyOwner {
        require(_treasuryWallet != address(0), "ERC20: Address 0");
        address oldWallet = treasuryWallet;
        treasuryWallet = _treasuryWallet;
        emit treasuryWalletUpdated(treasuryWallet, oldWallet);
    }

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

    function excludeFromMaxTransaction(
        address account,
        bool value
    ) public onlyOwner {
        _isExcludedFromMaxTransaction[account] = value;
        emit ExcludeFromLimits(account, value);
    }

    function withdrawStuckTokens(address tkn) external onlyOwner {
        bool success;
        if (tkn == address(0))
            (success, ) = address(msg.sender).call{
                value: address(this).balance
            }("");
        else {
            require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
            uint256 amount = IERC20(tkn).balanceOf(address(this));
            IERC20(tkn).transfer(msg.sender, amount);
        }
    }

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

    function isExcludedFromMaxTransaction(
        address account
    ) external view returns (bool) {
        return _isExcludedFromMaxTransaction[account];
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    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 (maxTransactionEnabled()) {
            //when buy uniswap
            if (
                (_automatedMarketMakerPairs[from] ||
                    from == address(TradingContract)) &&
                !_isExcludedFromMaxTransaction[to]
            ) {
                require(
                    amount <= maxTransaction,
                    "ERC20: Buy transfer amount exceeds the maxTransaction."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            //when sell uniswap
            else if (
                (_automatedMarketMakerPairs[to] ||
                    from == address(TradingContract)) &&
                !_isExcludedFromMaxTransaction[from]
            ) {
                require(
                    amount <= maxTransaction,
                    "ERC20: Sell transfer amount exceeds the maxTransaction."
                );
            } else if (!_isExcludedFromMaxTransaction[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
        }

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

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

    function bondingCurveContract() external view virtual returns (address) {
        return address(TradingContract);
    }

    function maxTransactionEnabled() public view returns (bool) {
        if (tradingActive) {
            if (block.timestamp - activeTime <= 600) {
                return maxBuyStat1;
            } else {
                return false;
            }
        } else {
            return maxBuyStat1;
        }
    }

    function contractURI() external view returns (string memory) {
        return _contractURI;
    }

    modifier onlyOperator() {
        _checkOperator();
        _;
    }

    function operator() public view virtual returns (address) {
        return _operator;
    }

    function _checkOperator() internal view virtual {
        if (operator() != _msgSender()) {
            revert UnauthorizedOperator(_msgSender());
        }
    }

    function transferOperatorAccess(address _NewOperator) public onlyOwner {
        address oldOperator = _operator;
        _operator = _NewOperator;
        emit operatorAccessTransferred(oldOperator, _NewOperator);
    }
}

File 2 of 6 : BondingCurve.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "./Interfaces/ITokenContract.sol";
import "./Deps/ReentrancyGuard.sol";
import "./Deps/Ownable.sol";

contract BondingCurve is ReentrancyGuard, Ownable {
    address private _operator = 0xE019bCE3E260a0b9285e5C21A5409504f66Fa9a7;
    address public dev;
    address public TokenContractAddress;
    event BondingCurveCompleted(bool success);
    error UnauthorizedDevBuy(address account);
    error UnauthorizedOperator(address account);
    event Buy(
        address indexed buyer,
        uint256 ethSpent,
        uint256 tokensReceived,
        uint256 ethBalance,
        uint256 tokenBalance,
        uint256 fee
    );
    event Sell(
        address indexed seller,
        uint256 tokensSpent,
        uint256 ethReceived,
        uint256 tokenBalance,
        uint256 ethBalance,
        uint256 fee
    );
    event Released(
        address indexed recipient,
        uint256 ethAmount,
        uint256 tokenAmount
    );
    event operatorAccessTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    // Constants for Bonding Curve
    uint256 public constant P0 = 5e15; // 5e15 wei per million tokens
    uint256 public constant A = 180e9; // 1.8e11 wei per million^3 tokens
    uint256 public constant MAX_MILLION_TOKENS = 500 * 1e18; // Allow full precision

    // Fees and spread
    uint256 public constant SPREAD_PERCENT = 2; // 2% spread on sell
    uint256 public constant FEES_PERCENT = 1; // 1% fees on buy/sell
    address private feesWallet = 0xC07AF1c04a90F2c80e27B4644417D6922B464A4c;

    // BC calculations
    uint256 public n;
    bool public bondingCurveActive = true;
    bool public devBuyEnabled = true;
    uint256 private deploymentTimeStamp;

    constructor(
        address _dev,
        bool _devBuyEnabled,
        address _tokenContract,
        address initialOwner
    ) Ownable(initialOwner) {
        dev = _dev;
        TokenContractAddress = _tokenContract;
        devBuyEnabled = _devBuyEnabled;
        deploymentTimeStamp = block.timestamp;
    }

    function transferAll() internal {
        // Transfer all tokens
        uint256 ethBalance = address(this).balance;
        require(ethBalance >= 9.95 ether, "Not enough eth for liquidity!");

        ITokenContract tokenContract = ITokenContract(TokenContractAddress);

        uint256 tokenBalance = ITokenContract(tokenContract).balanceOf(
            address(this)
        );
        if (tokenBalance > 0) {
            ITokenContract(tokenContract).transfer(
                address(0xdead),
                tokenBalance
            );
        }

        // Transfer all Ether

        (bool success1, ) = dev.call{value: 0.1 ether}("");
        require(success1, "Failed to send 0.1 ETH to dev wallet");

        (bool success2, ) = feesWallet.call{value: 0.4 ether}("");
        require(success2, "Failed to send 0.4 ETH to feesWallet wallet");

        (bool success3, ) = address(tokenContract).call{
            value: (address(this).balance)
        }("");
        require(success3, "Failed to transfer Ether");

        // Emit release event
        emit Released(address(tokenContract), ethBalance, tokenBalance);
    }

    function EndBondingCurve() internal {
        bondingCurveActive = false;
        ITokenContract tokenContract = ITokenContract(TokenContractAddress);
        transferAll();
        tokenContract.enableTrading();
        emit BondingCurveCompleted(true);
    }

    function buy(uint256 minTokens) external payable nonReentrant {
        require(bondingCurveActive, "Bonding Curve is inactive!");
        require(msg.value > 0, "ETH required");

        if (devBuyEnabled) {
            if (dev != msg.sender) {
                revert UnauthorizedDevBuy(msg.sender);
            }
            devBuyEnabled = false;
        }

        ITokenContract tokenContract = ITokenContract(TokenContractAddress);

        uint256 fees = (msg.value * FEES_PERCENT) / 100;
        uint256 netETH = msg.value - fees;

        uint256 tokensToTransfer = tokensForETH(netETH) * 1e6;
        require(tokensToTransfer >= minTokens, "Slippage too high");

        uint256 newN = n + (tokensToTransfer / 1e6);
        require(newN <= MAX_MILLION_TOKENS, "Max token supply reached");

        uint256 refund;
        if (newN == MAX_MILLION_TOKENS) {
            refund = (netETH - (ethForN(newN) - ethForN(n)));
            uint256 feeAdjustment = refund / (100 - FEES_PERCENT);
            fees -= feeAdjustment;
            refund += feeAdjustment;
        }

        require(
            tokenContract.transfer(msg.sender, tokensToTransfer),
            "Token transfer failed"
        );

        n = newN;

        if (refund > 0) {
            (bool refundSent, ) = address(msg.sender).call{value: refund}("");
            require(refundSent, "Refund transfer failed");
        }

        (bool feesSent, ) = feesWallet.call{value: fees}("");
        require(feesSent, "fees transfer failed");

        emit Buy(
            msg.sender,
            msg.value,
            tokensToTransfer,
            address(this).balance,
            tokenContract.balanceOf(address(this)),
            fees
        );

        // To End Bonding Curve

        uint256 ethBalance = address(this).balance;
        if (ethBalance >= 9.95 ether) {
            EndBondingCurve();
        }
    }

    function sell(
        uint256 tokenAmount,
        uint256 minEthers
    ) external nonReentrant {
        require(bondingCurveActive, "Bonding Curve is inactive!");
        require(tokenAmount > 0, "Token amount required");
        require(tokenAmount / 1e6 <= n, "Not enough tokens to sell");

        ITokenContract tokenContract = ITokenContract(TokenContractAddress);

        uint256 refundETH = ethForTokens(tokenAmount);
        uint256 spread = (refundETH * SPREAD_PERCENT) / 100;
        uint256 netRefund = refundETH - spread;
        uint256 fees = (netRefund * FEES_PERCENT) / 100;
        netRefund -= fees;

        require(netRefund >= minEthers, "Slippage too high");
        require(
            address(this).balance >= netRefund,
            "Contract does not have enough ETH"
        );
        require(
            tokenContract.transferFrom(msg.sender, address(this), tokenAmount),
            "Token transfer failed"
        );

        n = n - (tokenAmount / 1e6);

        (bool feesSent, ) = feesWallet.call{value: fees}("");
        require(feesSent, "fees transfer failed");

        (bool refundSent, ) = msg.sender.call{value: netRefund}("");
        require(refundSent, "ETH refund failed");

        emit Sell(
            msg.sender,
            tokenAmount,
            netRefund,
            tokenContract.balanceOf(address(this)),
            address(this).balance,
            fees
        );
    }

    function ethForN(uint256 n_) public pure returns (uint256) {
        uint256 linear = (P0 * n_) / 1e18;
        uint256 cubic = (A * (n_ ** 3)) / (3 * 1e54);
        return linear + cubic;
    }

    function tokensForETH(uint256 ethAmount) public view returns (uint256) {
        uint256 newETH = ethForN(n) + ethAmount;
        return solveForN(newETH) - n;
    }

    function ethForTokens(uint256 tokenAmount) public view returns (uint256) {
        uint256 newN = n - (tokenAmount / 1e6);
        return ethForN(n) - ethForN(newN);
    }

    function solveForN(uint256 targetETH) public pure returns (uint256) {
        uint256 low = 0;
        uint256 high = MAX_MILLION_TOKENS;
        for (uint256 i = 0; i < 100; i++) {
            uint256 mid = (low + high + 1) / 2;
            uint256 midETH = ethForN(mid);
            if (midETH == targetETH) {
                return mid;
            } else if (midETH < targetETH) {
                low = mid;
            } else {
                high = mid;
            }
        }
        return low;
    }

    function withdrawStuckETH() public onlyOperator {
        require(
            block.timestamp > (deploymentTimeStamp + 7776000),
            "90 Days Haven't Passed Yet!"
        );

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

    modifier onlyOperator() {
        _checkOperator();
        _;
    }

    function operator() public view virtual returns (address) {
        return _operator;
    }

    function _checkOperator() internal view virtual {
        if (operator() != _msgSender()) {
            revert UnauthorizedOperator(_msgSender());
        }
    }

    function transferOperatorAccess(address _NewOperator) external onlyOwner {
        address oldOperator = _operator;
        _operator = _NewOperator;
        emit operatorAccessTransferred(oldOperator, _NewOperator);
    }

    receive() external payable {}

    fallback() external payable {}
}

File 3 of 6 : IERC7572.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC7572 {
    function contractURI() external view returns (string memory);

    event ContractURIUpdated();
}

File 4 of 6 : ITokenContract.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

interface ITokenContract {
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function enableTrading() external;
}

File 5 of 6 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,
 * consider using {ReentrancyGuardTransient} instead.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

File 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// OpenZeppelin Contracts (last updated v4.7.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(address initialOwner) {
        _transferOwnership(initialOwner);
    }

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

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

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

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

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

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

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"contractUri","type":"string"},{"internalType":"address","name":"devBuyAddress","type":"address"},{"internalType":"bool","name":"devBuyEnabled","type":"bool"},{"internalType":"bool","name":"maxBuyEnabled","type":"bool"},{"internalType":"address","name":"swapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"UnauthorizedOperator","type":"error"},{"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":[],"name":"ContractURIUpdated","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"operatorAccessTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[],"name":"TradingContract","outputs":[{"internalType":"contract BondingCurve","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bondingCurveContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"settreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_NewOperator","type":"address"}],"name":"transferOperatorAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100048380433ed6038454d1d5040542eed72836d693054a7a71c8c0660eea5d0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000008817556bb79bbc569d3cdc0b070efbfdde6b397100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad1eca41e6f772be3cb5a48a6141f9bcc1af9f7c0000000000000000000000000000000000000000000000000000000000000007436869636b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443484b4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006568747470733a2f2f6173736574732e62757a7a63646e2e66756e2f62757a7a646f7466756e2d70726f64756374696f6e2d73706163652f6a736f6e2f62643332323936362d663938362d343837662d613866342d3964633536336130646230302e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x00020000000000020009000000000002000000000801034f00010000000103550000006001100270000003e50010019d000003e5011001970000000100200190000000240000c13d0000008002000039000000400020043f000000040010008c0000005e0000413d000000000208043b000000e002200270000004190020009c000000620000213d000004330020009c000000750000213d000004400020009c0000018e0000a13d000004410020009c0000021f0000a13d000004420020009c000004c00000613d000004430020009c0000047b0000613d000004440020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000001201000039000000800010043f0000044c0100004100000f8d0001042e000000a003000039000000400030043f0000000002000416000000000002004b000005fd0000c13d0000001f02100039000003e602200197000000a002200039000000400020043f0000001f0410018f000003e705100198000000a002500039000000360000613d000000000608034f000000006706043c0000000003730436000000000023004b000000320000c13d000000000004004b000000430000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000e00010008c000005fd0000413d000000a00300043d000003e80030009c000005fd0000213d0000001f02300039000000000012004b0000000004000019000003e904008041000003e902200197000000000002004b0000000005000019000003e905004041000003e90020009c000000000504c019000000000005004b000005fd0000c13d000000a0023000390000000002020433000003e80020009c000000c80000a13d0000046901000041000000000010043f0000004101000039000000040010043f000004520100004100000f8e00010430000000000001004b000005fd0000c13d000000000100001900000f8d0001042e0000041a0020009c000000b90000213d000004270020009c000001a20000a13d000004280020009c000002660000a13d000004290020009c000004c70000613d0000042a0020009c000004960000613d0000042b0020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000000901000039000000000101041a00000458001001980000045c0000013d000004340020009c000001ad0000a13d000004350020009c0000029f0000a13d000004360020009c000004e50000613d000004370020009c000004ab0000613d000004380020009c000005fd0000c13d000000440010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000600000001001d000003ea0010009c000005fd0000213d0000002401800370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b000005fd0000c13d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b000005140000c13d0000000601000029000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a00000471022001970000000503000029000000000232019f000000000021041b000000400100043d0000000000310435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d02000039000000020300003900000401040000410000040c0000013d0000041b0020009c000001c90000a13d0000041c0020009c000002a80000a13d0000041d0020009c000004f70000613d0000041e0020009c000002cc0000613d0000041f0020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000001001000039000004f30000013d0000001f0420003900000472044001970000003f044000390000047205400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000003e80050009c000000580000213d0000000100600190000000580000c13d000000a006100039000000400050043f0000000005240436000000c0033000390000000007320019000000000067004b000005fd0000213d000000000002004b000000e60000613d000000000700001900000000087500190000000009370019000000000909043300000000009804350000002007700039000000000027004b000000df0000413d000000000242001900000020022000390000000000020435000000c00800043d000003e80080009c000005fd0000213d0000001f02800039000000000012004b0000000003000019000003e903008041000003e902200197000000000002004b0000000007000019000003e907004041000003e90020009c000000000703c019000000000007004b000005fd0000c13d000000a0028000390000000007020433000003e80070009c000000580000213d0000001f0270003900000472022001970000003f022000390000047203200197000000400200043d0000000003320019000000000023004b00000000090000390000000109004039000003e80030009c000000580000213d0000000100900190000000580000c13d000000400030043f0000000003720436000000c0088000390000000009870019000000000069004b000005fd0000213d000000000007004b000001190000613d0000000009000019000000000a930019000000000b890019000000000b0b04330000000000ba04350000002009900039000000000079004b000001120000413d000000000727001900000020077000390000000000070435000000e00700043d000003e80070009c000005fd0000213d0000001f08700039000000000018004b0000000001000019000003e901008041000003e908800197000000000008004b0000000009000019000003e909004041000003e90080009c000000000901c019000000000009004b000005fd0000c13d000000a0017000390000000001010433000003e80010009c000000580000213d0000001f0810003900000472088001970000003f088000390000047208800197000000400a00043d00000000088a00190000000000a8004b00000000090000390000000109004039000003e80080009c000000580000213d0000000100900190000000580000c13d000000400080043f00060000000a001d00000000081a0436000500000008001d000000c0077000390000000008710019000000000068004b000005fd0000213d000000000001004b000000050a0000290000014f0000613d000000000600001900000000086a00190000000009760019000000000909043300000000009804350000002006600039000000000016004b000001480000413d000000060110002900000020011000390000000000010435000001000100043d000400000001001d000003ea0010009c000005fd0000213d000001200600043d000000000006004b0000000001000039000000010100c039000300000006001d000000000016004b000005fd0000c13d000001400600043d000000000006004b0000000001000039000000010100c039000200000006001d000000000016004b000005fd0000c13d000001600100043d000100000001001d000003ea0010009c000005fd0000213d0000000006040433000003e80060009c000000580000213d0000000301000039000000000701041a000000010870019000000001077002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000098004b000004450000c13d000000200070008c000001860000413d000000000010043f0000001f086000390000000508800270000003eb0880009a000000200060008c000003ec080040410000001f077000390000000507700270000003eb0770009a000000000078004b000001860000813d000000000008041b0000000108800039000000000078004b000001820000413d0000001f0060008c000007a20000a13d000000000010043f0000047208600198000007b90000c13d0000002007000039000003ec05000041000007c50000013d000004470020009c000001d40000213d0000044a0020009c000002d10000613d0000044b0020009c000005fd0000c13d000000440010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000201043b000003ea0020009c000005fd0000213d0000002401800370000000000301043b00000000010004110f8c0d490000040f000004a30000013d0000042e0020009c000001dd0000213d000004310020009c000002f10000613d000004320020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000000501000039000004200000013d0000043b0020009c000001e90000213d0000043e0020009c000003990000613d0000043f0020009c000005fd0000c13d000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000201043b0000000001000411000000000001004b0000052b0000c13d0000040a01000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f0000046c01000041000000c40010043f0000046d01000041000000e40010043f0000044f0100004100000f8e00010430000004220020009c000001f20000213d000004250020009c000003d30000613d000004260020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000000f01000039000004f30000013d000004480020009c0000040e0000613d000004490020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000000201000039000004f30000013d0000042f0020009c000002cc0000613d000004300020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0f8c0d240000040f000000000001004b0000000001000039000000010100c039000004a40000013d0000043c0020009c0000041c0000613d0000043d0020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000000801000039000004200000013d000004230020009c000004250000613d000004240020009c000005fd0000c13d000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000600000001001d000003ea0010009c000005fd0000213d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b000005140000c13d00000000030004100000000602000029000000000002004b0000057b0000c13d0000045501000041000000000010044300000004003004430000000001000414000003e50010009c000003e501008041000000c00110021000000456011001c70000800a020000390f8c0f870000040f00000001002001900000055e0000613d000000000301043b0000000001000414000003e50010009c000003e501008041000000c001100210000000000003004b0000061d0000c13d0000000002000411000006210000013d000004450020009c0000042a0000613d000004460020009c000005fd0000c13d000000640010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000600000001001d000003ea0010009c000005fd0000213d0000002401800370000000000101043b000500000001001d000003ea0010009c000005fd0000213d0000004401800370000000000101043b000400000001001d0000000601000029000000000010043f0000000101000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000101041a000004730010009c000006ce0000613d000000040310006c000006cb0000813d000000400100043d00000044021000390000047003000041000000000032043500000024021000390000001d0300003900000000003204350000040a020000410000000000210435000000040210003900000020030000390000000000320435000003e50010009c000003e50100804100000040011002100000040b011001c700000f8e000104300000042c0020009c000004360000613d0000042d0020009c000005fd0000c13d000000440010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000600000001001d000003ea0010009c000005fd0000213d0000002401800370000000000101043b000500000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000101041a000000050310006c000003c80000813d000000400100043d00000064021000390000045b03000041000000000032043500000044021000390000045c03000041000000000032043500000024021000390000002503000039000005440000013d000004390020009c0000044b0000613d0000043a0020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000000701000039000004200000013d000004200020009c000004610000613d000004210020009c000005fd0000c13d0000000001000416000000000001004b000005fd0000c13d0000001203000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000004450000c13d000000800010043f000000000005004b000005250000613d000000000030043f000000020020008c0000055c0000413d000003f50200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002c30000413d000005690000013d0000000001000416000000000001004b000005fd0000c13d0000000601000039000004200000013d0000000001000416000000000001004b000005fd0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000004450000c13d000000800010043f000000000005004b000005250000613d000000000030043f000000020020008c0000055c0000413d000003ec0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002e80000413d000005690000013d0000000001000416000000000001004b000005fd0000c13d0000000701000039000000000101041a000003ea021001970000000001000411000000000012004b0000051d0000c13d0000000901000039000000000101041a00000458001001980000054f0000c13d0000000001000410000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000101041a000600000001001d00000455010000410000000000100443000000000100041000000004001004430000000001000414000003e50010009c000003e501008041000000c00110021000000456011001c70000800a020000390f8c0f870000040f00000001002001900000055e0000613d000000000101043b000300000001001d0000001101000039000000000101041a000400000001001d000000400200043d0000040401000041000500000002001d0000000000120435000004600100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003e50010009c000003e501008041000000c00110021000000461011001c700008005020000390f8c0f870000040f00000001002001900000055e0000613d000000000201043b0000000501000029000003e50010009c000003e50100804100000040011002100000000003000414000003e50030009c000003e503008041000000c003300210000000000113019f00000403011001c7000003ea022001970f8c0f870000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050b00002900000000057b00190000034e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000034a0000c13d00000000090b0019000000000006004b0000035c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000064c0000613d0000001f01400039000000600210018f0000000001920019000000000021004b00000000020000390000000102004039000003e80010009c000000580000213d0000000100200190000000580000c13d000000400010043f000000200030008c000005fd0000413d0000000001090433000500000001001d000004620010009c000005fd0000813d0000000602000029000000190120011a00000000031200490000000401000029000003ea021001970000000001000410000600000002001d0f8c0da00000040f00000463010000410000000000100443000000050100002900000004001004430000000001000414000003e50010009c000003e501008041000000c00110021000000456011001c700008002020000390f8c0f870000040f00000001002001900000055e0000613d000000000101043b000000000001004b000005fd0000613d000000400200043d00000464010000410000000000120435000003e50020009c000400000002001d000003e501000041000000000102401900020040001002180000000001000414000003e50010009c000003e501008041000000c00110021000000002011001af000000030000006b000006eb0000c13d00000403011001c70000000502000029000006f00000013d000000440010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000600000001001d000003ea0010009c000005fd0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c7000080100200003900050000000803530f8c0f870000040f000000050300035f0000000100200190000005fd0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000002401300370000000000101043b000500000001001d0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000101041a0000000502000029000000000021001a00000cb40000413d0000000003210019000000000100041100000006020000290f8c0d490000040f000000400100043d00000001020000390000000000210435000003e50010009c000003e501008041000000400110021000000459011001c700000f8d0001042e000000440010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000600000001001d000003ea0010009c000005fd0000213d0000002401800370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b000005fd0000c13d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b000005140000c13d0000000601000029000000000010043f0000000c01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a00000471022001970000000503000029000000000232019f000000000021041b000000400100043d0000000000310435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000003ff040000410000000605000029000005fa0000013d0000000001000416000000000001004b000005fd0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a000000050440021000000460020000410f8c0f640000040f000004210000013d0000000001000416000000000001004b000005fd0000c13d0000000901000039000000000101041a000003ea01100197000000800010043f0000044c0100004100000f8d0001042e0000000001000416000000000001004b000005fd0000c13d0000000a01000039000004f30000013d000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000003ea0010009c000005fd0000213d000000000010043f0000000e01000039000004560000013d0000000001000416000000000001004b000005fd0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000005220000613d0000046901000041000000000010043f0000002201000039000000040010043f000004520100004100000f8e00010430000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000003ea0010009c000005fd0000213d000000000010043f0000000c01000039000000200010043f000000400200003900000000010000190f8c0f4f0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000044c0100004100000f8d0001042e000000440010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000003ea0010009c000005fd0000213d0000002402800370000000000202043b000600000002001d000003ea0020009c000005fd0000213d000000000010043f0000000101000039000000200010043f000000400200003900000000010000190f8c0f4f0000040f0000000602000029000000000020043f000000200010043f00000000010000190000004002000039000004f20000013d000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000501043b000003ea0050009c000005fd0000213d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b000005140000c13d000000000005004b000005e00000c13d0000040a01000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f0000046f01000041000000c40010043f0000045f0100004100000f8e00010430000000440010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000201043b000003ea0020009c000005fd0000213d0000002401800370000000000301043b00000000010004110f8c0da00000040f0000000101000039000000400200043d0000000000120435000003e50020009c000003e502008041000000400120021000000459011001c700000f8d0001042e0000000001000416000000000001004b000005fd0000c13d0000000501000039000000000201041a000003ea032001970000000005000411000000000053004b000005140000c13d000003f102200197000000000021041b0000000001000414000003e50010009c000003e501008041000000c001100210000003f2011001c70000800d020000390000000303000039000003f3040000410000000006000019000005fa0000013d0000000001000416000000000001004b000005fd0000c13d0000dead01000039000000800010043f0000044c0100004100000f8d0001042e000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000601043b000003ea0060009c000005fd0000213d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b000005140000c13d0000000701000039000000000201041a000003f103200197000000000363019f000000000031041b0000000001000414000003ea05200197000003e50010009c000003e501008041000000c001100210000003f2011001c70000800d0200003900000003030000390000045a04000041000005fa0000013d000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000101043b000003ea0010009c000005fd0000213d000000000010043f000000200000043f000000400200003900000000010000190f8c0f4f0000040f000000000101041a000000800010043f0000044c0100004100000f8d0001042e000000240010008c000005fd0000413d0000000001000416000000000001004b000005fd0000c13d0000000401800370000000000601043b000003ea0060009c000005fd0000213d0000000501000039000000000201041a000003ea032001970000000005000411000000000053004b000005140000c13d000000000006004b000005ef0000c13d0000040a01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000044d01000041000000c40010043f0000044e01000041000000e40010043f0000044f0100004100000f8e000104300000040a01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000040901000041000000c40010043f0000045f0100004100000f8e000104300000045d02000041000000800020043f000000840010043f000004510100004100000f8e00010430000000800010043f000000000005004b000005590000c13d0000047101200197000000a00010043f000000000004004b000000c001000039000000a0010060390000056a0000013d000600000002001d000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000101041a000000060110006c000005bb0000813d000000400100043d00000064021000390000046a03000041000000000032043500000044021000390000046b0300004100000000003204350000002402100039000000220300003900000000003204350000040a020000410000000000210435000000040210003900000020030000390000000000320435000003e50010009c000003e501008041000000400110021000000416011001c700000f8e000104300000040a01000041000000800010043f0000002001000039000000840010043f0000001701000039000000a40010043f0000045e01000041000000c40010043f0000045f0100004100000f8e00010430000000000030043f000000020020008c0000055f0000813d000000a0010000390000056a0000013d000000000001042f000003ef0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000005610000413d000000c001300039000000800210008a00000080010000390f8c0cfe0000040f000000400100043d000600000001001d00000080020000390f8c0ce90000040f00000006020000290000000001210049000003e50010009c000003e5010080410000006001100210000003e50020009c000003e5020080410000004002200210000000000121019f00000f8d0001042e0000045001000041000000800010043f000000840030043f0000000001000414000003e50010009c000003e501008041000000c00110021000000451011001c70f8c0f870000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000000800a000039000005930000613d000000000801034f000000008908043c000000000a9a043600000000005a004b0000058f0000c13d000000000006004b000005a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000005ff0000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c000005fd0000413d00000084021001bf000000800300043d000000000003004b000006580000c13d0000040a030000410000000504000029000000000034043500000020030000390000000000320435000000c40210003900000454030000410000000000320435000000a4011000390000000902000039000000000021043500000040014002100000040b011001c700000f8e00010430000500000001001d0000000001000411000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b0000000502000029000000000021041b0000000201000039000000000201041a00000006030000290000000002320049000000000021041b000000400100043d0000000000310435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d0200003900000003030000390000040e040000410000000005000411000004be0000013d0000000901000039000000000201041a000003f103200197000000000353019f000000000031041b0000000001000414000003ea06200197000003e50010009c000003e501008041000000c001100210000003f2011001c70000800d0200003900000003030000390000046e04000041000005fa0000013d000003f102200197000000000262019f000000000021041b0000000001000414000003e50010009c000003e501008041000000c001100210000003f2011001c70000800d020000390000000303000039000003f3040000410f8c0f820000040f0000000100200190000000600000c13d000000000100001900000f8e000104300000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006060000c13d000000000005004b000006170000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000003e50020009c000003e5020080410000004002200210000000000112019f00000f8e00010430000003f2011001c70000800902000039000000000400041100000000050000190f8c0f820000040f0000006002100270000003e502200198000000600000613d0000001f03200039000003e6033001970000003f033000390000045703300197000000400400043d0000000003340019000000000043004b00000000050000390000000105004039000003e80030009c000000580000213d0000000100500190000000580000c13d000000400030043f0000001f0320018f0000000005240436000003e70420019800000000024500190000063d0000613d000000000601034f000000006706043c0000000005750436000000000025004b000006390000c13d000000000003004b000000600000613d000000000141034f0000000303300210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000000000100001900000f8d0001042e0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006530000c13d0000060a0000013d000004500100004100000005030000290000000000130435000000000100041000000000001204350000000001000414000003e50010009c000003e501008041000000c0011002100000004002300210000000000121019f00000452011001c700000006020000290f8c0f870000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000006750000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000006710000c13d000000000006004b000006820000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000006d30000613d0000001f01400039000000600110018f0000000501100029000400000001001d000000400010043f000000200030008c000005fd0000413d000000050100002900000000010104330000045302000041000000040400002900000000002404350000000002000411000003ea0220019700000004034001bf0000000000230435000000240240003900000000001204350000000001000414000003e50010009c000003e501008041000000c0011002100000004002400210000000000121019f00000406011001c700000006020000290f8c0f820000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000405700029000006ae0000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b000006aa0000c13d000000000006004b000006bb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000006df0000613d0000001f01400039000000600110018f0000000401100029000000400010043f000000200030008c000005fd0000413d00000004010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000600000613d000005fd0000013d000000060100002900000000020004110f8c0d490000040f0000000601000029000000050200002900000004030000290f8c0da00000040f000003cb0000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006da0000c13d0000060a0000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006e60000c13d0000060a0000013d00000465011001c700008009020000390000000303000029000000050400002900000000050000190f8c0f820000040f0000000100200190000007860000613d0000000401000029000003e80010009c000000580000213d0000000403000029000000400030043f000000240130003900000003020000290000000000210435000004530100004100000000001304350000000401300039000000060200002900000000002104350000000001000414000003e50010009c000003e501008041000000c00110021000000002011001af00000406011001c700000005020000290f8c0f820000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000405700029000007170000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b000007130000c13d000000000006004b000007240000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007ad0000613d0000001f01400039000000600110018f0000000401100029000500000001001d000003e80010009c000000580000213d0000000501000029000000400010043f000000200030008c000005fd0000413d00000004010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000005fd0000c13d00000466010000410000000503000029000000000013043500000004013000390000dead020000390000000000210435000003e50030009c000003e501000041000000000103401900000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f00000452011001c700000006020000290f8c0f820000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000007580000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000007540000c13d000000000006004b000007650000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000008570000613d0000001f01400039000000600110018f0000000501100029000003e80010009c000000580000213d000000400010043f000000200030008c000005fd0000413d0000000901000039000000000101041a000600000001001d0000045800100198000000000100003900000001010060390f8c0d100000040f0000000601000029000004670110019700000462011001c70000000902000039000000000012041b0000800b0100003900000004030000390000000004000415000000090440008a000000050440021000000468020000410f8c0f640000040f0000000a02000039000000000012041b000000000100001900000f8d0001042e00000060061002700000001f0460018f000003e705600198000000400200043d0000000003520019000007920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000078e0000c13d000003e506600197000000000004004b000007a00000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000006001600210000006180000013d000000000006004b0000000004000019000007a60000613d00000000040504330000000305600210000004730550027f0000047305500167000000000454016f0000000105600210000000000454019f000007d10000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007b40000c13d0000060a0000013d000003ec050000410000002007000039000000010980008a0000000509900270000003ed0990009a000000000a470019000000000a0a04330000000000a5041b00000020077000390000000105500039000000000095004b000007be0000c13d000000000068004b000007cf0000813d0000000308600210000000f80880018f000004730880027f000004730880016700000000044700190000000004040433000000000484016f000000000045041b000000010460021000000001044001bf000000000041041b0000000004020433000003e80040009c000000580000213d0000000401000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000004450000c13d000000200050008c000007f10000413d000000000010043f0000001f064000390000000506600270000003ee0660009a000000200040008c000003ef060040410000001f055000390000000505500270000003ee0550009a000000000056004b000007f10000813d000000000006041b0000000106600039000000000056004b000007ed0000413d0000001f0040008c000007f90000a13d000000000010043f0000047206400198000008040000c13d0000002005000039000003ef03000041000008100000013d000000000004004b0000000002000019000007fd0000613d00000000020304330000000303400210000004730330027f0000047303300167000000000232016f0000000103400210000000000232019f0000081c0000013d000003ef030000410000002005000039000000010760008a0000000507700270000003f00770009a00000000082500190000000008080433000000000083041b00000020055000390000000103300039000000000073004b000008090000c13d000000000046004b0000081a0000813d0000000306400210000000f80660018f000004730660027f000004730660016700000000022500190000000002020433000000000262016f000000000023041b000000010240021000000001022001bf000000000021041b0000000503000039000000000103041a000003f1021001970000000006000411000000000226019f000000000023041b0000000002000414000003ea05100197000003e50020009c000003e502008041000000c001200210000003f2011001c70000800d020000390000000303000039000003f3040000410f8c0f820000040f0000000100200190000005fd0000613d00000006010000290000000002010433000003e80020009c000000580000213d0000001201000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000004450000c13d000000200030008c0000084f0000413d000000000010043f0000001f042000390000000504400270000003f40440009a000000200020008c000003f5040040410000001f033000390000000503300270000003f40330009a000000000034004b0000084f0000813d000000000004041b0000000104400039000000000034004b0000084b0000413d0000001f0020008c000008630000a13d000000000010043f00000472052001980000086f0000c13d0000002004000039000003f5030000410000087c0000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000085e0000c13d0000060a0000013d000000000002004b0000000003000019000008680000613d000000050300002900000000030304330000000304200210000004730440027f0000047304400167000000000343016f0000000102200210000000000223019f000008880000013d000003f5030000410000002004000039000000010650008a0000000506600270000003f60660009a000000060800002900000000078400190000000007070433000000000073041b00000020044000390000000103300039000000000063004b000008750000c13d000000000025004b000008860000813d0000000305200210000000f80550018f000004730550027f000004730550016700000006044000290000000004040433000000000454016f000000000043041b000000010220021000000001022001bf000000000021041b000000400100043d000003f70010009c000000580000213d000000e40210003900000000030004110000000000320435000000a402100039000000030300002900000000003204350000000402000029000003ea02200197000000840310003900000000002304350000002402100039000003e4030000410000000000320435000000c402100039000000000300041000000000003204350000006402100039000000000300041400000080040000390000000000420435000000440210003900000060040000390000000000420435000003f802000041000000000021043500000004021000390000000000020435000003e50010009c000003e5010080410000004001100210000003e50030009c000003e503008041000000c002300210000000000121019f000003f9011001c700008006020000390f8c0f820000040f0000000100200190000008d50000613d00000000020000310000000103200367000000000101043b000000000001004b0000000002000019000008d80000613d000003ea011001970000000603000039000000000203041a000003f102200197000000000212019f000000000023041b0000000702000039000000000302041a000003f103300197000000000113019f000000000012041b0000000101000029000003ea01100197000600000001001d000000800010043f0000000001000410000000000001004b000008f60000c13d000000400100043d00000064021000390000041703000041000000000032043500000044021000390000041803000041000000000032043500000024021000390000002403000039000005440000013d0000006002100270000003e502200197000000000301034f0000001f0520018f000003e706200198000000400100043d0000000004610019000008e30000613d000000000703034f0000000008010019000000007907043c0000000008980436000000000048004b000008df0000c13d000000000005004b000008f00000613d000000000363034f0000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000006002200210000003e50010009c000003e5010080410000004001100210000000000121019f00000f8e00010430000000060000006b000008ff0000c13d000000400100043d00000064021000390000041403000041000000000032043500000044021000390000041503000041000005410000013d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000010200008a000000000021041b000000400100043d0000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000303000039000003fc04000041000000000500041000000006060000290f8c0f820000040f0000000100200190000005fd0000613d0000000b01000039000000000201041a000004710220019700000002022001af000000000021041b000000020000006b000003fe01000041000003fd010060410000000f02000039000000000012041b0000001002000039000000000012041b0000000901000039000000000201041a000003f1022001970000000003000411000000000232019f000000000021041b0000000501000039000000000101041a000003ea01100197000000000031004b00000c750000c13d0000000001000411000000000010043f0000000c01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000003ff0400004100000000050004110f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000000001000410000000000010043f0000000c01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000003ff0400004100000000050004100f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000dead05000039000000000050043f0000000c01000039000000200010043f0000040001000041000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000003ff040000410f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000000601000039000000000101041a000003ea01100197000600000001001d000000000010043f0000000c01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000003ff0400004100000006050000290f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000004010400004100000000050004110f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000000001000410000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000004010400004100000000050004100f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000dead01000039000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d0200003900000002030000390000dead0500003900000401040000410f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d000000800100043d000003ea01100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000004010400004100000006050000290f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000000601000039000000000101041a000003ea01100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000004010400004100000006050000290f8c0f820000040f0000000100200190000005fd0000613d000000800200043d000000400300043d000500000003001d00000402010000410000000000130435000003e50030009c000003e501000041000000000103401900000040011002100000000003000414000003e50030009c000003e503008041000000c003300210000000000113019f00000403011001c7000003ea022001970f8c0f870000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050b000029000000050570002900000ae20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000ade0000c13d000000000006004b00000aef0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c800000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000600000002001d000003e80020009c000000580000213d0000000100100190000000580000c13d0000000601000029000000400010043f000000200030008c000005fd0000413d00000000010b0433000400000001001d000003ea0010009c000005fd0000213d000000800200043d000004040100004100000006030000290000000000130435000003e50030009c000003e501000041000000000103401900000040011002100000000003000414000003e50030009c000003e503008041000000c003300210000000000113019f00000403011001c7000003ea022001970f8c0f870000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900000b230000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00000b1f0000c13d000000000006004b00000b300000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c8c0000613d0000001f01400039000000600110018f0000000601100029000500000001001d000003e80010009c000000580000213d0000000501000029000000400010043f000000200030008c000005fd0000413d00000006010000290000000001010433000300000001001d000003ea0010009c000005fd0000213d0000000503000029000000240130003900000003020000290000000000210435000004050100004100000000001304350000000001000410000003ea021001970000000401300039000200000002001d0000000000210435000003e50030009c000003e501000041000000000103401900000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f00000406011001c700000004020000290f8c0f870000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050570002900000b670000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b00000b630000c13d000000000006004b00000b740000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c980000613d0000001f01400039000000600110018f0000000501100029000600000001001d000003e80010009c000000580000213d0000000601000029000000400010043f000000200030008c000005fd0000413d00000005010000290000000001010433000500000001001d000003ea0010009c000005fd0000213d000000050000006b00000bc70000c13d000000060300002900000024013000390000000302000029000000000021043500000407010000410000000000130435000000040130003900000002020000290000000000210435000003e50030009c000003e501000041000000000103401900000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f00000406011001c700000004020000290f8c0f820000040f0000006003100270000003e503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900000bab0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00000ba70000c13d000000000006004b00000bb80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000ca40000613d0000001f01400039000000600110018f0000000601100029000003e80010009c000000580000213d000000400010043f000000200030008c000005fd0000413d00000006010000290000000001010433000500000001001d000003ea0010009c000005fd0000213d0000000801000039000000000201041a000003f1022001970000000503000029000000000232019f000000000021041b0000001102000039000000000102041a000003f101100197000000000131019f000000000012041b000000000030043f0000000d01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b0000000001000414000003e50010009c000003e501008041000000c001100210000003f2011001c70000800d0200003900000003030000390000000106000039000004080400004100000005050000290f8c0f820000040f0000000100200190000005fd0000613d0000000501000039000000000101041a000003ea011001970000000002000411000000000021004b00000c750000c13d0000001101000039000000000101041a000003ea01100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000203000039000004010400004100000006050000290f8c0f820000040f0000000100200190000005fd0000613d0000000601000039000000000101041a000003ea01100197000600000001001d000000000010043f0000000d01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004710220019700000001022001bf000000000021041b0000000001000414000003e50010009c000003e501008041000000c001100210000003f2011001c70000800d0200003900000003030000390000000106000039000004080400004100000006050000290f8c0f820000040f0000000100200190000005fd0000613d0000000201000039000000000101041a0000040c0110009c00000cb40000813d0000000202000039000000000012041b0000000001000410000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a0000040c0220009a000000000021041b0000040d01000041000000400200043d0000000000120435000003e50020009c000003e50200804100000040012002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d0200003900000003030000390000040e04000041000000000500001900000000060004100f8c0f820000040f0000000100200190000005fd0000613d0000000601000039000000000101041a000603ea0010019c00000cb00000c13d000000400100043d00000044021000390000041303000041000000000032043500000024021000390000001f030000390000025b0000013d000000400100043d0000004402100039000004090300004100000000003204350000040a0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000002600000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c870000c13d0000060a0000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c930000c13d0000060a0000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c9f0000c13d0000060a0000013d0000001f0530018f000003e706300198000000400200043d00000000046200190000060a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000cab0000c13d0000060a0000013d0000000201000039000000000101041a000004100110009c00000cba0000413d0000046901000041000000000010043f0000001101000039000000040010043f000004520100004100000f8e000104300000000202000039000000000012041b0000000601000029000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000005fd0000613d000000000101043b000000000201041a000004100220009a000000000021041b0000041101000041000000400200043d0000000000120435000003e50020009c000003e50200804100000040012002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d0200003900000003030000390000040e04000041000000000500001900000006060000290f8c0f820000040f0000000100200190000005fd0000613d000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000004120100004100000f8d0001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000cf80000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000cf10000413d000000000321001900000000000304350000001f0220003900000472022001970000000001210019000000000001042d0000001f0220003900000472022001970000000001120019000000000021004b00000000020000390000000102004039000003e80010009c00000d0a0000213d000000010020019000000d0a0000c13d000000400010043f000000000001042d0000046901000041000000000010043f0000004101000039000000040010043f000004520100004100000f8e00010430000000000001004b00000d130000613d000000000001042d000000400100043d00000044021000390000045e0300004100000000003204350000002402100039000000170300003900000000003204350000040a020000410000000000210435000000040210003900000020030000390000000000320435000003e50010009c000003e50100804100000040011002100000040b011001c700000f8e0001043000010000000000020000000901000039000000000101041a000004580010019800000d3e0000613d0000000a01000039000000000101041a000100000001001d000004680100004100000000001004430000000001000414000003e50010009c000003e501008041000000c00110021000000474011001c70000800b020000390f8c0f870000040f000000010020019000000d420000613d000000000101043b000000010110006c00000d430000413d000002580010008c000000000100001900000d3e0000a13d000000000001042d0000000b01000039000000000101041a000000ff0110018f000000000001042d000000000001042f0000046901000041000000000010043f0000001101000039000000040010043f000004520100004100000f8e000104300003000000000002000003ea0110019800000d820000613d000200000003001d000303ea0020019c00000d8c0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000100200190000000030300002900000d800000613d000000000101043b000000000030043f000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f0000000306000029000000010020019000000d800000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d020000390000000303000039000003fc0400004100000001050000290f8c0f820000040f000000010020019000000d800000613d000000000001042d000000000100001900000f8e00010430000000400100043d0000006402100039000004170300004100000000003204350000004402100039000004180300004100000000003204350000002402100039000000240300003900000d950000013d000000400100043d0000006402100039000004140300004100000000003204350000004402100039000004150300004100000000003204350000002402100039000000220300003900000000003204350000040a020000410000000000210435000000040210003900000020030000390000000000320435000003e50010009c000003e501008041000000400110021000000416011001c700000f8e000104300008000000000002000403ea0010019c00000f040000613d000303ea0020019c00000f0e0000613d000000000003004b00000dd90000613d000200000003001d0000000901000039000000000101041a000004580010019800000dbf0000613d0000000a01000039000000000101041a000100000001001d000004680100004100000000001004430000000001000414000003e50010009c000003e501008041000000c00110021000000474011001c70000800b020000390f8c0f870000040f000000010020019000000f2c0000613d000000000101043b000000010110006c00000f2d0000413d000002580010008c00000e800000213d0000000b01000039000000000101041a000000ff0010019000000e800000613d0000000401000029000000000010043f0000000d01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000000ff0110019000000dec0000613d000800000001001d0000000003000415000000080330008a000000050330021000000df60000013d000000200000043f0000000306000029000000000060043f000000400100043d0000000000010435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d0200003900000003030000390000040e04000041000000040500002900000efe0000013d0000000003000415000000070330008a00000005033002100000000601000039000000000101041a000003ea01100197000000040010006b000700000000003d000700010000603d00000e0c0000c13d000100000003001d0000000301000029000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000000ff0010019000000001010000290000000501100270000000000100003f000000010100603f00000e520000613d0000000301000029000000000010043f0000000d01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d0000000003000415000000060330008a0000000503300210000000000101043b000000000101041a000000ff0010019000000e280000c13d0000000003000415000000050330008a00000005033002100000000601000039000000000101041a000003ea01100197000000040010006b00000e3e0000c13d000100000003001d0000000401000029000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000000ff0010019000000001010000290000000501100270000000000100003f000000010100603f00000e7c0000613d0000000301000029000000000010043f0000000e01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000000ff0010019000000e800000c13d000000200000043f000000000100041400000e5a0000013d0000000f01000039000000000101041a000000020010006c00000f330000413d0000000301000029000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000000020010002a00000f2d0000413d00000002011000290000001002000039000000000202041a000000000021004b00000e800000a13d000000400100043d00000044021000390000047703000041000000000032043500000024021000390000001a0300003900000000003204350000040a020000410000000000210435000000040210003900000020030000390000000000320435000003e50010009c000003e50100804100000040011002100000040b011001c700000f8e000104300000000f01000039000000000101041a000000020010006c00000f3d0000413d0000000501000039000000000101041a000003ea01100197000000040010006b00000ebf0000613d000000030010006b00000ebf0000613d0000000401000029000000000010043f0000000c01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b00000003020000290000dead0020008c00000ebf0000613d000000000101041a000000ff0010019000000ebf0000c13d0000000901000039000000000101041a000004580010019800000ebf0000c13d0000000401000029000000000010043f0000000c01000039000000200010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000000ff0010019000000ebf0000c13d0000000301000029000000000010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000000ff0010019000000f470000613d0000000401000029000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000101041a000100020010007400000f180000413d0000000401000029000000000010043f000000200000043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b0000000102000029000000000021041b0000000301000029000000000010043f0000000001000414000003e50010009c000003e501008041000000c001100210000003fa011001c700008010020000390f8c0f870000040f000000010020019000000f020000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000003e50010009c000003e50100804100000040011002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003fb011001c70000800d0200003900000003030000390000040e04000041000000040500002900000003060000290f8c0f820000040f000000010020019000000f020000613d000000000001042d000000000100001900000f8e00010430000000400100043d00000064021000390000047f0300004100000000003204350000004402100039000004800300004100000000003204350000002402100039000000250300003900000f210000013d000000400100043d00000064021000390000047d03000041000000000032043500000044021000390000047e0300004100000000003204350000002402100039000000230300003900000f210000013d000000400100043d00000064021000390000047a03000041000000000032043500000044021000390000047b0300004100000000003204350000002402100039000000260300003900000000003204350000040a020000410000000000210435000000040210003900000020030000390000000000320435000003e50010009c000003e501008041000000400110021000000416011001c700000f8e00010430000000000001042f0000046901000041000000000010043f0000001101000039000000040010043f000004520100004100000f8e00010430000000400100043d0000006402100039000004780300004100000000003204350000004402100039000004790300004100000000003204350000002402100039000000360300003900000f210000013d000000400100043d0000006402100039000004750300004100000000003204350000004402100039000004760300004100000000003204350000002402100039000000370300003900000f210000013d000000400100043d00000044021000390000047c03000041000000000032043500000024021000390000001d0300003900000e710000013d000000000001042f000003e50010009c000003e5010080410000004001100210000003e50020009c000003e5020080410000006002200210000000000112019f0000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f000003f2011001c700008010020000390f8c0f870000040f000000010020019000000f620000613d000000000101043b000000000001042d000000000100001900000f8e0001043000000000050100190000000000200443000000050030008c00000f720000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b00000f6a0000413d000003e50030009c000003e50300804100000060013002100000000002000414000003e50020009c000003e502008041000000c002200210000000000112019f00000481011001c700000000020500190f8c0f870000040f000000010020019000000f810000613d000000000101043b000000000001042d000000000001042f00000f85002104210000000102000039000000000001042d0000000002000019000000000001042d00000f8a002104230000000102000039000000000001042d0000000002000019000000000001042d00000f8c0000043200000f8d0001042e00000f8e000104300000000000000000010002f76c4fb69574a5bfbd1305e9940a05496cbb739a819c72a0340846407d00000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a475ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e64ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbcbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbb000000000000000000000000000000000000000000000000ffffffffffffff7b9c4d535bdea7cd8a978f128b93471df48c7dbab89d703809115bdc118c235bfd0200000000000000000000000000000000000104000000000000000000000000020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000200000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9250000000000000000000000000000000000000000023ac12ef364587bf200000000000000000000000000000000000000000000000005b521bfdfb934708000009d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df745117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92c45a0155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ad5c464800000000000000000000000000000000000000000000000000000000e6a43905000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000c9c6539600000000000000000000000000000000000000000000000000000000ffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657208c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ffffffffffffffffffffffffffffffffffffffffff62d5ef5c83e7a2820000000000000000000000000000000000000000000000009d2a10a37c185d7e000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effffffffffffffffffffffffffffffffffffffffffe6268e1b017bfe18bfffffffffffffffffffffffffffffffffffffffffffffffe6268e1b017bfe18c0000000000000000000000000000000000000000000000019d971e4fe8401e74000000000000020000000000000000000000000000008000000100000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f2061646472650000000000000000000000000000000000000084000000000000000000000000726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464000000000000000000000000000000000000000000000000000000008a8c523b00000000000000000000000000000000000000000000000000000000c024666700000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f52b691f00000000000000000000000000000000000000000000000000000000f8b45b0500000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000cb8c478900000000000000000000000000000000000000000000000000000000cb8c478a00000000000000000000000000000000000000000000000000000000cb96372800000000000000000000000000000000000000000000000000000000c024666800000000000000000000000000000000000000000000000000000000c3f70b520000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a637af6400000000000000000000000000000000000000000000000000000000a637af6500000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bbc0c7420000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d7000000000000000000000000000000000000000000000000000000008ffdae02000000000000000000000000000000000000000000000000000000008ffdae0300000000000000000000000000000000000000000000000000000000936fc63c000000000000000000000000000000000000000000000000000000008a8c523c000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000039509350000000000000000000000000000000000000000000000000000000004fbee1920000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007571336a000000000000000000000000000000000000000000000000000000004fbee19300000000000000000000000000000000000000000000000000000000570ca735000000000000000000000000000000000000000000000000000000004626402a000000000000000000000000000000000000000000000000000000004626402b0000000000000000000000000000000000000000000000000000000049bd5a5e00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000018d9cead0000000000000000000000000000000000000000000000000000000027c8f8340000000000000000000000000000000000000000000000000000000027c8f835000000000000000000000000000000000000000000000000000000002fa327a800000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000018d9ceae0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000001694505d000000000000000000000000000000000000000000000000000000001694505e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000200000008000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000070a082310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000008000000000000000000000000000000000000000000000000000000024000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000004e6f20746f6b656e7300000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe00000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f002d44a556911dfb26c3439289ffc2278c02f7eb8c658179333ab5c4afda228207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77740fbe610000000000000000000000000000000000000000000000000000000054726164696e6720616c7265616479206163746976652e0000000000000000000000000000000000000000000000000000000064000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e020000020000000000000000000000000000004400000000000000000000000000000000000000000000000100000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83d0e30db00000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000040000000000000000000000006a62784200000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391324e487b7100000000000000000000000000000000000000000000000000000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e45524332303a206275726e2066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000002f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63545524332303a204164647265737320300000000000000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff020000020000000000000000000000000000000400000000000000000000000065647320746865206d61785472616e73616374696f6e2e00000000000000000045524332303a2053656c6c207472616e7366657220616d6f756e74206578636545524332303a204d61782077616c6c6574206578636565646564000000000000647320746865206d61785472616e73616374696f6e2e0000000000000000000045524332303a20427579207472616e7366657220616d6f756e74206578636565616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e742065786365656473206245524332303a2054726164696e67206973206e6f74206163746976652e000000657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000200000000000000000000000000000000000000000000000000000000588edd4b319e4b987f4ed394458c17f9f7325cf25db82791c8205d648ee62618

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000008817556bb79bbc569d3cdc0b070efbfdde6b397100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ad1eca41e6f772be3cb5a48a6141f9bcc1af9f7c0000000000000000000000000000000000000000000000000000000000000007436869636b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443484b4e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006568747470733a2f2f6173736574732e62757a7a63646e2e66756e2f62757a7a646f7466756e2d70726f64756374696f6e2d73706163652f6a736f6e2f62643332323936362d663938362d343837662d613866342d3964633536336130646230302e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Chicken
Arg [1] : symbol (string): CHKN
Arg [2] : contractUri (string): https://assets.buzzcdn.fun/buzzdotfun-production-space/json/bd322966-f986-487f-a8f4-9dc563a0db00.json
Arg [3] : devBuyAddress (address): 0x8817556BB79bbC569d3Cdc0b070EfBFdDe6b3971
Arg [4] : devBuyEnabled (bool): True
Arg [5] : maxBuyEnabled (bool): False
Arg [6] : swapRouter (address): 0xad1eCa41E6F772bE3cb5A48A6141f9bcc1AF9F7c

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000008817556bb79bbc569d3cdc0b070efbfdde6b3971
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000ad1eca41e6f772be3cb5a48a6141f9bcc1af9f7c
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 436869636b656e00000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 43484b4e00000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000065
Arg [12] : 68747470733a2f2f6173736574732e62757a7a63646e2e66756e2f62757a7a64
Arg [13] : 6f7466756e2d70726f64756374696f6e2d73706163652f6a736f6e2f62643332
Arg [14] : 323936362d663938362d343837662d613866342d396463353633613064623030
Arg [15] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


[ 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.