ETH Price: $2,015.45 (+6.31%)

Token

DNAToken (DNA)

Overview

Max Total Supply

420,420,000,000 DNA

Holders

223,827

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DNA Token is not just a cryptocurrency; it’s a community-driven movement.

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:
DNA

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 65535 runs

Other Settings:
paris EvmVersion
File 1 of 12 : DNA.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "./lib/SafeMath.sol";
import "./interfaces/IRewardManager.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./interfaces/IUniswapV2Factory.sol";

contract DNA is ERC20Burnable, Ownable {
    using SafeMath for *;

    // UniswapV2 Router Address
    IUniswapV2Router02 public immutable uniswapV2Router;

    // Pair Address
    address public immutable uniswapV2Pair;

    // Deployer or Owner address
    address public immutable ownerAddress;
    address public companyWalletAddress;

    // Check if trading is open.
    bool public tradingOpen = false;

    // Tax Percentage
    uint8 public constant initialTransferTaxForRegisteredUser = 15;
    uint8 public transferTaxForRegisteredUser = initialTransferTaxForRegisteredUser;
    uint8 public evolutionPoolShareForRegisteredUser = 5;
    uint8 public referralShareForRegisteredUser = 1;

    uint8 public constant initialTransferTaxForUnregisteredUser = 15;
    uint8 public transferTaxForUnregisteredUser = initialTransferTaxForUnregisteredUser;
    uint8 public evolutionPoolShareForUnregisteredUser = 5;

    // Limits
    uint256 public immutable maxBuyAmount;
    uint256 public immutable maxSellAmount;
    uint256 public immutable maxWalletAmount;
    bool public limitsInEffect = true;

    // Reward Manger
    IRewardManager public rewardManager;

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

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

    // Events
    event SetAutomatedMarketMakerPair(address pair, bool value);
    event LimitsUpdated(
        uint256 newBuyAmount,
        uint256 newSellAmount,
        uint256 newWalletAmount
    );
    event MaxTransactionExclusion(address indexed _address, bool excluded);
    event DistributedReferralReward(address from, address referrerAddress, uint256 referrerShareAmount);

    // Errors
    error OnlyOwner();
    error ZeroAddress();
    error InsufficientBalance();
    error InvalidValue();
    error TradingInActive();
    error TradingOpen();
    error PairAlreadyAdded();
    error CannotRemovePair();
    error BuyLimitExceeded();
    error SellLimitExceeded();
    error MaxWalletLimitExceeded();
    error TaxCannotIncrease();

    constructor(
        uint256 _totalSupply,
        address _companyWalletAddress,
        address _uniswapRouterAddress
    ) ERC20("DNAToken", "DNA") Ownable(_msgSender()) {
        _mint(_msgSender(), _totalSupply.mul(10 ** decimals()));
        ownerAddress = _msgSender();

        uniswapV2Router = IUniswapV2Router02(_uniswapRouterAddress);
        _excludeFromMaxTransaction(_uniswapRouterAddress, true);

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );

        maxBuyAmount = ((_totalSupply.mul(10 ** decimals())).mul(2)).div(1000); // 0.2%
        maxSellAmount = ((_totalSupply.mul(10 ** decimals())).mul(2)).div(1000); // 0.2%
        maxWalletAmount = ((_totalSupply.mul(10 ** decimals())).mul(6)).div(1000); // 0.6%

        excludeFromFees(_msgSender(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        companyWalletAddress = _companyWalletAddress;
        excludeFromFees(companyWalletAddress, true);
        _excludeFromMaxTransaction(companyWalletAddress, true);

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); // setting pair address as AMM pair

        _excludeFromMaxTransaction(_msgSender(), true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
    }

    function setCompanyWalletAddress(
        address _companyWalletAddress
    ) external onlyOwner {
        if (_companyWalletAddress == address(0)) {
            revert ZeroAddress();
        }

        companyWalletAddress = _companyWalletAddress;
        excludeFromFees(companyWalletAddress, true);
        _excludeFromMaxTransaction(companyWalletAddress, true);
    }

    // Set AMM pairs
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) external {
        if (_msgSender() != ownerAddress) {
            revert OnlyOwner();
        }
        if (pair == uniswapV2Pair) {
            revert PairAlreadyAdded();
        }

        _setAutomatedMarketMakerPair(pair, value);
    }

    // Exclude addresses from max transaction limit
    function excludeFromMaxTransaction(
        address _account,
        bool _exclude   
    ) external {
        if (_msgSender() != ownerAddress) {
            revert OnlyOwner();
        }
        if (!_exclude) {
            // Cannot exclude pair address
            if (_account == uniswapV2Pair) {
                revert CannotRemovePair();
            }
        }
        _excludeFromMaxTransaction(_account, _exclude);
    }

    // Exclude addresses from tax
    function excludeFromFees(address account, bool excluded) public {
        if (_msgSender() != ownerAddress) {
            revert OnlyOwner();
        }
        _isExcludedFromFees[account] = excluded;
    }

    // Update verified user transfer taxes
    // 6, 5, 1
    function updateRegisteredUserTax(
        uint8 _transferTaxForRegisteredUser,
        uint8 _evolutionPoolShareForRegisteredUser,
        uint8 _referralShareForRegisteredUser
    ) external onlyOwner {
        // Total tax cannot be less than the sum of different taxes for registered user
        if (
            _evolutionPoolShareForRegisteredUser +
                _referralShareForRegisteredUser >
            _transferTaxForRegisteredUser
        ) {
            revert InvalidValue();
        }

        // New tax amount cannot be more than the current tax amount
        if (_transferTaxForRegisteredUser > initialTransferTaxForRegisteredUser) {
            revert TaxCannotIncrease();
        }

        referralShareForRegisteredUser = _referralShareForRegisteredUser;
        evolutionPoolShareForRegisteredUser = _evolutionPoolShareForRegisteredUser;
        transferTaxForRegisteredUser = _transferTaxForRegisteredUser;
    }

    // Update unverified user transfer taxes
    // 10 and 5
    function updateUnregisteredUserTax(
        uint8 _transferTaxForUnregisteredUser,
        uint8 _evolutionPoolShareForUnregisteredUser
    ) external onlyOwner {
        // Total tax cannot be less than the sum of different taxes for unregistered user
        if (
            _evolutionPoolShareForUnregisteredUser >
            _transferTaxForUnregisteredUser
        ) {
            revert InvalidValue();
        }

        // New tax amount cannot be more than the current tax amount
        if (_transferTaxForUnregisteredUser > initialTransferTaxForUnregisteredUser) {
            revert TaxCannotIncrease();
        }

        evolutionPoolShareForUnregisteredUser = _evolutionPoolShareForUnregisteredUser;
        transferTaxForUnregisteredUser = _transferTaxForUnregisteredUser;
    }

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

    function transfer(
        address to,
        uint256 amount
    ) public override returns (bool) {
        _safeTransfer(_msgSender(), to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _safeTransfer(from, to, value);
        return true;
    }

    // Enables the trading.
    // Once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        if (tradingOpen) {
            revert TradingOpen();
        }
        tradingOpen = true;
    }

    // Recover any tokens transferred to token address
    function recoverTokens(
        address _token,
        address _to,
        uint256 _value
    ) external {
        if (_msgSender() != ownerAddress) {
            revert OnlyOwner();
        }

        if (_token == address(0) || _to == address(0)) {
            revert ZeroAddress();
        }

        if (_value == 0) {
            revert InvalidValue();
        }

        uint256 _contractBalance = ERC20(_token).balanceOf(address(this));
        if (_value > _contractBalance) {
            revert InsufficientBalance();
        }
        ERC20(_token).transfer(_to, _contractBalance);
    }

    // withdraw ETH if stuck or someone sends to the address
    function recoverETH(
        address _to,
        uint256 _value
    ) external returns (bool success) {
        if (_msgSender() != ownerAddress) {
            revert OnlyOwner();
        }

        if(_to == address(0)){
            revert ZeroAddress();
        }

        if (_value == 0) {
            revert InvalidValue();
        }

        if(_value > address(this).balance){
            revert InsufficientBalance();
        }

        (success, ) = payable(address(_to)).call{value: _value}("");
    }

    // This function will set the addres for rewardManager
    function setRewardManager(address _rewardManager) external onlyOwner {
        if (_rewardManager == address(0)) {
            revert ZeroAddress();
        }

        rewardManager = IRewardManager(_rewardManager);
        excludeFromFees(_rewardManager, true);
    }

    function isUserExcludedFromFees(address _account) external view returns(bool){
        return _isExcludedFromFees[_account];
    }

    function isUserExcludedFromMaxTransactionAmount(address _account) external view returns(bool){
        return _isExcludedMaxTransactionAmount[_account];
    }

    function _safeTransfer(address from, address to, uint256 amount) private {
        if (from == address(0)) {
            revert ZeroAddress();
        }

        if (to == address(0)) {
            revert ZeroAddress();
        }

        if (amount == 0) {
            revert InvalidValue();
        }

        // Till limits are not removed
        if (limitsInEffect) {
            if (from != owner() && to != owner()) {
                // Only owner can transfer the tokens before trading is enabled
                if (!tradingOpen) {
                    revert TradingInActive();
                }
                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    // Check max buy limit
                    if (amount > maxBuyAmount) {
                       revert BuyLimitExceeded();
                    }

                    // Checks max wallet limit
                    if (amount.add(balanceOf(to)) > maxWalletAmount) {
                        revert MaxWalletLimitExceeded();
                    }
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    // Checks max sell limit
                    if (amount > maxSellAmount) {
                        revert SellLimitExceeded();
                    }
                }
                //when transfer
                    else if (
                    !_isExcludedMaxTransactionAmount[from]
                    ){
                    if (amount.add(balanceOf(to)) > maxWalletAmount) {
                        // Checks max wallet limit
                        revert MaxWalletLimitExceeded();
                    }
                }
            }
        }

        uint256 fees = 0;

        // Tax will be deducted only when trading is open, and will not be applied if the address is whitelisted.
        if (
            tradingOpen &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            fees = _calculateAndTransferTax(from, to, amount);
        }

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

    // Calculates the tax payments, transfers the tax and returns total tax deducted.
    function _calculateAndTransferTax(
        address from,
        address to,
        uint256 amount
    ) private returns (uint256) {
        address referrer;
        address addressToCheck = from;

        if (automatedMarketMakerPairs[from]) {
            addressToCheck = to;
        }

        // checking if address is registered
        if (rewardManager.isAccountRegistered(addressToCheck)) {
            referrer = rewardManager.getReferrerAddress(addressToCheck);
        }

        return _processTaxPayment(from, referrer, amount);
    }

    // Transfers the tax amount and returns the total tax deducted
    function _processTaxPayment(
        address _from,
        address _referrerAddress,
        uint256 _amount
    ) private returns (uint256) {
        // Tax Percentage transfer to rewardManager to distribute the tokens as rewards
        uint8 evolutionPoolShare;

        // Tax Percentage transfer to referrer as rewards.
        uint8 referrerShare;

        // Tax Percentage transfer to company Wallet as rewards.
        uint8 companyWalletShare;

        // Address to transfer ( can be referrer address )
        address referrerAddress;

        // If participant is registered and referrer is not zero address
        if (_referrerAddress != address(0)) {
            evolutionPoolShare = evolutionPoolShareForRegisteredUser;

            // If user is registered, the rewards will be transferred to referrer.
            referrerAddress = _referrerAddress;

            // Referrer Share will be the amount transferring to referral address of the sender.
            referrerShare = referralShareForRegisteredUser;

            // Company wallet share will be the amount transferring to company wallet address in the initial phase.
            companyWalletShare = uint8(
                (transferTaxForRegisteredUser)
                    .sub(evolutionPoolShareForRegisteredUser)
                    .sub(referralShareForRegisteredUser)
            );
        } else {
            evolutionPoolShare = evolutionPoolShareForUnregisteredUser;

            // If initial block limit is passed, Apply unverifiedUserTaxToOwner ((transferTaxForUnregisteredUser) - evolutionPoolShareForUnregisteredUser
            companyWalletShare = uint8(
                (transferTaxForUnregisteredUser).sub(
                    evolutionPoolShareForUnregisteredUser
                )
            );
        }

        // Calculating amount to transfer to rewrdManager.
        uint256 evolutionPoolShareAmount = _amount.mul(evolutionPoolShare).div(
            100
        );

        // Calculating amount to transfer to owner/referrer.
        uint256 referrerShareAmount = _amount.mul(referrerShare).div(100);

        // Calculating amount to transfer to company wallet
        uint256 companyWalletShareAmount = _amount.mul(companyWalletShare).div(
            100
        );

        // Transferring the rewards to referrer
        if (referrerShareAmount > 0) {
            super._transfer(_from, referrerAddress, referrerShareAmount);
            emit DistributedReferralReward(_from, referrerAddress, referrerShareAmount);
        }

        // Transferring the rewards to company wallet
        if (companyWalletShareAmount > 0) {
            super._transfer(
                _from,
                companyWalletAddress,
                companyWalletShareAmount
            );
        }

        // Transferring the rewards to rewardManager and distributing the rewards.
        if (evolutionPoolShareAmount > 0) {
            super._transfer(
                _from,
                address(rewardManager),
                evolutionPoolShareAmount
            );
            rewardManager.distributeRewards(evolutionPoolShareAmount);
        }

        // Returning totalTax Amount transferred or deducted.
        return
            evolutionPoolShareAmount.add(referrerShareAmount).add(
                companyWalletShareAmount
            );
    }

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

        _excludeFromMaxTransaction(pair, value);

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    // Excludes address from max transaction limit
    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 3 of 12 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 12 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

File 6 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

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

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

File 7 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 8 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 12 : IRewardManager.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

interface IRewardManager {
    function getReferrerAddress(
        address _account
    ) external view returns (address);

    function isAccountRegistered(address _account) external view returns (bool);

    function distributeRewards(uint256 _taxAmount) external;

    function updateLevel(address _account) external;
}

File 10 of 12 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

File 11 of 12 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

interface IUniswapV2Router02 {
    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

File 12 of 12 : SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
    * @dev Multiplies two unsigned integers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Adds two unsigned integers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 65535
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_companyWalletAddress","type":"address"},{"internalType":"address","name":"_uniswapRouterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BuyLimitExceeded","type":"error"},{"inputs":[],"name":"CannotRemovePair","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"MaxWalletLimitExceeded","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"PairAlreadyAdded","type":"error"},{"inputs":[],"name":"SellLimitExceeded","type":"error"},{"inputs":[],"name":"TaxCannotIncrease","type":"error"},{"inputs":[],"name":"TradingInActive","type":"error"},{"inputs":[],"name":"TradingOpen","type":"error"},{"inputs":[],"name":"ZeroAddress","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":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"referrerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"referrerShareAmount","type":"uint256"}],"name":"DistributedReferralReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newBuyAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newWalletAmount","type":"uint256"}],"name":"LimitsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"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"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"companyWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"evolutionPoolShareForRegisteredUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evolutionPoolShareForUnregisteredUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_exclude","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialTransferTaxForRegisteredUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialTransferTaxForUnregisteredUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isUserExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isUserExcludedFromMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"recoverETH","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"referralShareForRegisteredUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardManager","outputs":[{"internalType":"contract IRewardManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_companyWalletAddress","type":"address"}],"name":"setCompanyWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardManager","type":"address"}],"name":"setRewardManager","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":"tradingOpen","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxForRegisteredUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferTaxForUnregisteredUser","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"uint8","name":"_transferTaxForRegisteredUser","type":"uint8"},{"internalType":"uint8","name":"_evolutionPoolShareForRegisteredUser","type":"uint8"},{"internalType":"uint8","name":"_referralShareForRegisteredUser","type":"uint8"}],"name":"updateRegisteredUserTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_transferTaxForUnregisteredUser","type":"uint8"},{"internalType":"uint8","name":"_evolutionPoolShareForUnregisteredUser","type":"uint8"}],"name":"updateUnregisteredUserTax","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040526006805466ffffffffffffff60a01b19166501050f01050f60a81b1790553480156200003057600080fd5b50604051620034da380380620034da833981016040819052620000539162000733565b3360405180604001604052806008815260200167222720aa37b5b2b760c11b81525060405180604001604052806003815260200162444e4160e81b8152508160039081620000a291906200081b565b506004620000b182826200081b565b5050506001600160a01b038116620000e457604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000ef81620003b3565b5062000115336200010f620001076012600a620009fa565b869062000405565b6200044a565b3360c0526001600160a01b0381166080526200013381600162000488565b6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019a919062000a12565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000a12565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200025e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000284919062000a12565b6001600160a01b031660a052620002c76103e8620002c06002620002b960125b620002b190600a620009fa565b889062000405565b9062000405565b90620004e7565b60e052620002e36103e8620002c06002620002b96012620002a4565b61010052620003006103e8620002c06006620002b96012620002a4565b61012052620003113360016200050c565b6200031e3060016200050c565b6200032d61dead60016200050c565b600680546001600160a01b0319166001600160a01b038416908117909155620003589060016200050c565b60065462000371906001600160a01b0316600162000488565b60a051620003819060016200056c565b6200038e33600162000488565b6200039b30600162000488565b620003aa61dead600162000488565b50505062000a83565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082600003620004195750600062000444565b600062000427838562000a30565b90508262000436858362000a4a565b146200044157600080fd5b90505b92915050565b6001600160a01b038216620004765760405163ec442f0560e01b815260006004820152602401620000db565b6200048460008383620005e3565b5050565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a25050565b6000808211620004f657600080fd5b600062000504838562000a4a565b949350505050565b60c0516001600160a01b0316336001600160a01b0316146200054157604051635fc483c560e01b815260040160405180910390fd5b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6001600160a01b0382166000908152600a60205260409020805460ff19168215151790556200059c828262000488565b604080516001600160a01b038416815282151560208201527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab910160405180910390a15050565b6001600160a01b0383166200061257806002600082825462000606919062000a6d565b90915550620006869050565b6001600160a01b03831660009081526020819052604090205481811015620006675760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000db565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620006a457600280548290039055620006c3565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200070991815260200190565b60405180910390a3505050565b80516001600160a01b03811681146200072e57600080fd5b919050565b6000806000606084860312156200074957600080fd5b835192506200075b6020850162000716565b91506200076b6040850162000716565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200079f57607f821691505b602082108103620007c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000816576000816000526020600020601f850160051c81016020861015620007f15750805b601f850160051c820191505b818110156200081257828155600101620007fd565b5050505b505050565b81516001600160401b0381111562000837576200083762000774565b6200084f816200084884546200078a565b84620007c6565b602080601f8311600181146200088757600084156200086e5750858301515b600019600386901b1c1916600185901b17855562000812565b600085815260208120601f198616915b82811015620008b85788860151825594840194600190910190840162000897565b5085821015620008d75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200093e578160001904821115620009225762000922620008e7565b808516156200093057918102915b93841c939080029062000902565b509250929050565b600082620009575750600162000444565b81620009665750600062000444565b81600181146200097f57600281146200098a57620009aa565b600191505062000444565b60ff8411156200099e576200099e620008e7565b50506001821b62000444565b5060208310610133831016604e8410600b8410161715620009cf575081810a62000444565b620009db8383620008fd565b8060001904821115620009f257620009f2620008e7565b029392505050565b600062000a0b60ff84168362000946565b9392505050565b60006020828403121562000a2557600080fd5b62000a0b8262000716565b8082028115828204841417620004445762000444620008e7565b60008262000a6857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004445762000444620008e7565b60805160a05160c05160e05161010051610120516129ba62000b20600039600081816106da015281816118ec0152611a6701526000818161054201526119e0015260008181610638015261189201526000818161068501528181610ac901528181610dca0152818161115b015281816113240152611438015260008181610489015281816111ce0152611392015260006103c401526129ba6000f3fe608060405234801561001057600080fd5b50600436106102ff5760003560e01c806370a082311161019c57806395d89b41116100ee578063c024666811610097578063f2fde38b11610071578063f2fde38b146107da578063fa0c21e3146107ed578063ffb54a991461081557600080fd5b8063c024666814610758578063dd62ed3e1461076b578063ed2dfc52146107b157600080fd5b8063aa4bde28116100c8578063aa4bde28146106d5578063af7747c1146106fc578063b62496f51461073557600080fd5b806395d89b41146106a75780639a7a23d6146106af578063a9059cbb146106c257600080fd5b806379cc6790116101505780638a8c523c1161012a5780638a8c523c1461065a5780638da5cb5b146106625780638f84aa091461068057600080fd5b806379cc6790146105e7578063877c7ff9146105fa57806388e765ff1461063357600080fd5b8063751039fc11610181578063751039fc146105a25780637571336a146105aa57806379c58dd0146105bd57600080fd5b806370a0823114610564578063715018a61461059a57600080fd5b80633e0c0629116102555780635ab259fa116102095780636090befe116101e35780636090befe1461052a578063649a96bf1461050f57806366d602ae1461053d57600080fd5b80635ab259fa146104fc5780635af403731461050f5780635f3e849f1461051757600080fd5b806349bd5a5e1161023a57806349bd5a5e146104845780634a62bb65146104ab57806350cd8e4c146104d657600080fd5b80633e0c06291461045e57806342966c681461047157600080fd5b80631694505e116102b757806329ae1a221161029157806329ae1a221461040b5780632afeadaa1461041e578063313ce5671461045757600080fd5b80631694505e146103bf57806318160ddd146103e657806323b872dd146103f857600080fd5b8063095ea7b3116102e8578063095ea7b3146103675780630f4ef8a61461038a578063153ee554146103aa57600080fd5b806306fdde0314610304578063074e894014610322575b600080fd5b61030c61083a565b60405161031991906125eb565b60405180910390f35b6006546103429073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610319565b61037a61037536600461267a565b6108cc565b6040519015158152602001610319565b6007546103429073ffffffffffffffffffffffffffffffffffffffff1681565b6103bd6103b83660046126a6565b6108e6565b005b6103427f000000000000000000000000000000000000000000000000000000000000000081565b6002545b604051908152602001610319565b61037a6104063660046126c3565b610989565b6103bd61041936600461271a565b6109ad565b60065461044590760100000000000000000000000000000000000000000000900460ff1681565b60405160ff9091168152602001610319565b6012610445565b61037a61046c36600461267a565b610ac4565b6103bd61047f36600461274d565b610c5b565b6103427f000000000000000000000000000000000000000000000000000000000000000081565b60065461037a907a010000000000000000000000000000000000000000000000000000900460ff1681565b600654610445907501000000000000000000000000000000000000000000900460ff1681565b6103bd61050a366004612766565b610c65565b610445600f81565b6103bd6105253660046126c3565b610dc7565b6103bd6105383660046126a6565b61104b565b6103ea7f000000000000000000000000000000000000000000000000000000000000000081565b6103ea6105723660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6103bd611112565b6103bd611126565b6103bd6105b83660046127b7565b611158565b60065461044590790100000000000000000000000000000000000000000000000000900460ff1681565b6103bd6105f536600461267a565b61125f565b61037a6106083660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205460ff1690565b6103ea7f000000000000000000000000000000000000000000000000000000000000000081565b6103bd611274565b60055473ffffffffffffffffffffffffffffffffffffffff16610342565b6103427f000000000000000000000000000000000000000000000000000000000000000081565b61030c611312565b6103bd6106bd3660046127b7565b611321565b61037a6106d036600461267a565b61141f565b6103ea7f000000000000000000000000000000000000000000000000000000000000000081565b61037a61070a3660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205460ff1690565b61037a6107433660046126a6565b600a6020526000908152604090205460ff1681565b6103bd6107663660046127b7565b611435565b6103ea6107793660046127f0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600654610445907801000000000000000000000000000000000000000000000000900460ff1681565b6103bd6107e83660046126a6565b6114fa565b6006546104459077010000000000000000000000000000000000000000000000900460ff1681565b60065461037a9074010000000000000000000000000000000000000000900460ff1681565b6060600380546108499061281e565b80601f01602080910402602001604051908101604052809291908181526020018280546108759061281e565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b6000336108da818585611560565b60019150505b92915050565b6108ee611572565b73ffffffffffffffffffffffffffffffffffffffff811661093b576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055610986816001611435565b50565b6000336109978582856115c5565b6109a2858585611694565b506001949350505050565b6109b5611572565b8160ff168160ff1611156109f5576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60ff83161115610a33576040517f77427c0500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffff1679010000000000000000000000000000000000000000000000000060ff938416027fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff161778010000000000000000000000000000000000000000000000009390921692909202179055565b6000337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316610b82576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003610bbc576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b47821115610bf6576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8416908390600081818185875af1925050503d8060008114610c4c576040519150601f19603f3d011682016040523d82523d6000602084013e610c51565b606091505b5090949350505050565b6109863382611b99565b610c6d611572565b60ff8316610c7b82846128a0565b60ff161115610cb6576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60ff84161115610cf4576040517f77427c0500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006805460ff9485167501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff948616760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff949096167701000000000000000000000000000000000000000000000002939093167fffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffff909116179390931791909116179055565b337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83161580610e6d575073ffffffffffffffffffffffffffffffffffffffff8216155b15610ea4576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600003610ede576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610f4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6f91906128b9565b905080821115610fab576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526024820183905285169063a9059cbb906044016020604051808303816000875af1158015611020573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104491906128d2565b5050505050565b611053611572565b73ffffffffffffffffffffffffffffffffffffffff81166110a0576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556110ee906001611435565b6006546109869073ffffffffffffffffffffffffffffffffffffffff166001611bf5565b61111a611572565b6111246000611c7f565b565b61112e611572565b600680547fffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffff169055565b337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80611251577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611251576040517f9c4e22fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125b8282611bf5565b5050565b61126a8233836115c5565b61125b8282611b99565b61127c611572565b60065474010000000000000000000000000000000000000000900460ff16156112d1576040517f08fd3d0500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6060600480546108499061281e565b337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614611390576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611415576040517fa5d832e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125b8282611cf6565b600061142c338484611694565b50600192915050565b337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611502611572565b73ffffffffffffffffffffffffffffffffffffffff8116611557576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b61098681611c7f565b61156d8383836001611da3565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611124576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461168e578181101561167f576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018290526044810183905260640161154e565b61168e84848484036000611da3565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166116e1576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661172e576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600003611768576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006547a010000000000000000000000000000000000000000000000000000900460ff1615611aed5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906117d7575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b15611aed5760065474010000000000000000000000000000000000000000900460ff16611830576040517feb30de5c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff16801561188b575073ffffffffffffffffffffffffffffffffffffffff821660009081526009602052604090205460ff16155b1561197e577f00000000000000000000000000000000000000000000000000000000000000008111156118ea576040517fbe601f7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061194161193a8473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b8390611eeb565b1115611979576040517faf1a8f1900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aed565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff1680156119d9575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff16155b15611a38577f0000000000000000000000000000000000000000000000000000000000000000811115611979576040517f75bff70900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff16611aed577f0000000000000000000000000000000000000000000000000000000000000000611ab561193a8473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b1115611aed576040517faf1a8f1900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065460009074010000000000000000000000000000000000000000900460ff168015611b40575073ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16155b8015611b72575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b15611b8557611b82848484611f0e565b90505b61168e8484611b948585612088565b6120ab565b73ffffffffffffffffffffffffffffffffffffffff8216611be9576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b61125b82600083612152565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a25050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179055611d4f8282611bf5565b6040805173ffffffffffffffffffffffffffffffffffffffff8416815282151560208201527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab910160405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff8416611df3576040517fe602df050000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff8316611e43576040517f94280d620000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600160209081526040808320938716835292905220829055801561168e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611edd91815260200190565b60405180910390a350505050565b600080611ef883856128ef565b905083811015611f0757600080fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a60205260408120548190859060ff1615611f435750835b6007546040517ff585149300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301529091169063f585149390602401602060405180830381865afa158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd791906128d2565b15612073576007546040517fb8d04f4e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301529091169063b8d04f4e90602401602060405180830381865afa15801561204c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120709190612902565b91505b61207e8683866122fd565b9695505050505050565b60008282111561209757600080fd5b60006120a3838561291f565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff83166120fb576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff821661214b576040517fec442f050000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b61156d8383835b73ffffffffffffffffffffffffffffffffffffffff831661218a57806002600082825461217f91906128ef565b9091555061223c9050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612210576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602481018290526044810183905260640161154e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff821661226557600280548290039055612291565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122f091815260200190565b60405180910390a3505050565b60008080808073ffffffffffffffffffffffffffffffffffffffff87161561239c575060065460ff76010000000000000000000000000000000000000000000082048116945077010000000000000000000000000000000000000000000000820481169350879161239591859161238f9175010000000000000000000000000000000000000000009091041687612088565b90612088565b91506123ec565b60065460ff7901000000000000000000000000000000000000000000000000008204811695506123e991780100000000000000000000000000000000000000000000000090041685612088565b91505b600061240660646124008960ff891661259c565b906125d1565b9050600061241c60646124008a60ff891661259c565b9050600061243260646124008b60ff891661259c565b9050811561249e576124458b85846120ab565b6040805173ffffffffffffffffffffffffffffffffffffffff808e168252861660208201529081018390527fd03c3735da9cacf061495b9e0a88f8999a058631af12df29522ccacde17922ba9060600160405180910390a15b80156124c9576006546124c9908c9073ffffffffffffffffffffffffffffffffffffffff16836120ab565b8215612579576007546124f4908c9073ffffffffffffffffffffffffffffffffffffffff16856120ab565b6007546040517f59974e380000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff909116906359974e3890602401600060405180830381600087803b15801561256057600080fd5b505af1158015612574573d6000803e3d6000fd5b505050505b61258d816125878585611eeb565b90611eeb565b9b9a5050505050505050505050565b6000826000036125ae575060006108e0565b60006125ba8385612932565b9050826125c78583612949565b14611f0757600080fd5b60008082116125df57600080fd5b60006120a38385612949565b60006020808352835180602085015260005b81811015612619578581018301518582016040015282016125fd565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461098657600080fd5b6000806040838503121561268d57600080fd5b823561269881612658565b946020939093013593505050565b6000602082840312156126b857600080fd5b8135611f0781612658565b6000806000606084860312156126d857600080fd5b83356126e381612658565b925060208401356126f381612658565b929592945050506040919091013590565b803560ff8116811461271557600080fd5b919050565b6000806040838503121561272d57600080fd5b61273683612704565b915061274460208401612704565b90509250929050565b60006020828403121561275f57600080fd5b5035919050565b60008060006060848603121561277b57600080fd5b61278484612704565b925061279260208501612704565b91506127a060408501612704565b90509250925092565b801515811461098657600080fd5b600080604083850312156127ca57600080fd5b82356127d581612658565b915060208301356127e5816127a9565b809150509250929050565b6000806040838503121561280357600080fd5b823561280e81612658565b915060208301356127e581612658565b600181811c9082168061283257607f821691505b60208210810361286b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60ff81811683821601908111156108e0576108e0612871565b6000602082840312156128cb57600080fd5b5051919050565b6000602082840312156128e457600080fd5b8151611f07816127a9565b808201808211156108e0576108e0612871565b60006020828403121561291457600080fd5b8151611f0781612658565b818103818111156108e0576108e0612871565b80820281158282048414176108e0576108e0612871565b60008261297f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea26469706673582212202e7f6fbdd31e5a6cee37977fab6bb12abb8b8f026ec745f5dfed8ebc85fd3afa64736f6c6343000818003300000000000000000000000000000000000000000000000000000061f313f880000000000000000000000000c022e89b655b65ba956eb46825b47bda6d4c5ff4000000000000000000000000541ab7c31a119441ef3575f6973277de0ef460bd

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102ff5760003560e01c806370a082311161019c57806395d89b41116100ee578063c024666811610097578063f2fde38b11610071578063f2fde38b146107da578063fa0c21e3146107ed578063ffb54a991461081557600080fd5b8063c024666814610758578063dd62ed3e1461076b578063ed2dfc52146107b157600080fd5b8063aa4bde28116100c8578063aa4bde28146106d5578063af7747c1146106fc578063b62496f51461073557600080fd5b806395d89b41146106a75780639a7a23d6146106af578063a9059cbb146106c257600080fd5b806379cc6790116101505780638a8c523c1161012a5780638a8c523c1461065a5780638da5cb5b146106625780638f84aa091461068057600080fd5b806379cc6790146105e7578063877c7ff9146105fa57806388e765ff1461063357600080fd5b8063751039fc11610181578063751039fc146105a25780637571336a146105aa57806379c58dd0146105bd57600080fd5b806370a0823114610564578063715018a61461059a57600080fd5b80633e0c0629116102555780635ab259fa116102095780636090befe116101e35780636090befe1461052a578063649a96bf1461050f57806366d602ae1461053d57600080fd5b80635ab259fa146104fc5780635af403731461050f5780635f3e849f1461051757600080fd5b806349bd5a5e1161023a57806349bd5a5e146104845780634a62bb65146104ab57806350cd8e4c146104d657600080fd5b80633e0c06291461045e57806342966c681461047157600080fd5b80631694505e116102b757806329ae1a221161029157806329ae1a221461040b5780632afeadaa1461041e578063313ce5671461045757600080fd5b80631694505e146103bf57806318160ddd146103e657806323b872dd146103f857600080fd5b8063095ea7b3116102e8578063095ea7b3146103675780630f4ef8a61461038a578063153ee554146103aa57600080fd5b806306fdde0314610304578063074e894014610322575b600080fd5b61030c61083a565b60405161031991906125eb565b60405180910390f35b6006546103429073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610319565b61037a61037536600461267a565b6108cc565b6040519015158152602001610319565b6007546103429073ffffffffffffffffffffffffffffffffffffffff1681565b6103bd6103b83660046126a6565b6108e6565b005b6103427f000000000000000000000000541ab7c31a119441ef3575f6973277de0ef460bd81565b6002545b604051908152602001610319565b61037a6104063660046126c3565b610989565b6103bd61041936600461271a565b6109ad565b60065461044590760100000000000000000000000000000000000000000000900460ff1681565b60405160ff9091168152602001610319565b6012610445565b61037a61046c36600461267a565b610ac4565b6103bd61047f36600461274d565b610c5b565b6103427f00000000000000000000000084bf434c13c28f6b7fa245d7209831adc57a659781565b60065461037a907a010000000000000000000000000000000000000000000000000000900460ff1681565b600654610445907501000000000000000000000000000000000000000000900460ff1681565b6103bd61050a366004612766565b610c65565b610445600f81565b6103bd6105253660046126c3565b610dc7565b6103bd6105383660046126a6565b61104b565b6103ea7f000000000000000000000000000000000000000002b7f92531bd2a5c5e80000081565b6103ea6105723660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6103bd611112565b6103bd611126565b6103bd6105b83660046127b7565b611158565b60065461044590790100000000000000000000000000000000000000000000000000900460ff1681565b6103bd6105f536600461267a565b61125f565b61037a6106083660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205460ff1690565b6103ea7f000000000000000000000000000000000000000002b7f92531bd2a5c5e80000081565b6103bd611274565b60055473ffffffffffffffffffffffffffffffffffffffff16610342565b6103427f0000000000000000000000007c0a1190e8899be914fa68dfe2745ece929dc03d81565b61030c611312565b6103bd6106bd3660046127b7565b611321565b61037a6106d036600461267a565b61141f565b6103ea7f00000000000000000000000000000000000000000827eb6f95377f151b80000081565b61037a61070a3660046126a6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205460ff1690565b61037a6107433660046126a6565b600a6020526000908152604090205460ff1681565b6103bd6107663660046127b7565b611435565b6103ea6107793660046127f0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600654610445907801000000000000000000000000000000000000000000000000900460ff1681565b6103bd6107e83660046126a6565b6114fa565b6006546104459077010000000000000000000000000000000000000000000000900460ff1681565b60065461037a9074010000000000000000000000000000000000000000900460ff1681565b6060600380546108499061281e565b80601f01602080910402602001604051908101604052809291908181526020018280546108759061281e565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b6000336108da818585611560565b60019150505b92915050565b6108ee611572565b73ffffffffffffffffffffffffffffffffffffffff811661093b576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055610986816001611435565b50565b6000336109978582856115c5565b6109a2858585611694565b506001949350505050565b6109b5611572565b8160ff168160ff1611156109f5576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60ff83161115610a33576040517f77427c0500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffff1679010000000000000000000000000000000000000000000000000060ff938416027fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff161778010000000000000000000000000000000000000000000000009390921692909202179055565b6000337f0000000000000000000000007c0a1190e8899be914fa68dfe2745ece929dc03d73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316610b82576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003610bbc576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b47821115610bf6576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8416908390600081818185875af1925050503d8060008114610c4c576040519150601f19603f3d011682016040523d82523d6000602084013e610c51565b606091505b5090949350505050565b6109863382611b99565b610c6d611572565b60ff8316610c7b82846128a0565b60ff161115610cb6576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f60ff84161115610cf4576040517f77427c0500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006805460ff9485167501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff948616760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff949096167701000000000000000000000000000000000000000000000002939093167fffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffff909116179390931791909116179055565b337f0000000000000000000000007c0a1190e8899be914fa68dfe2745ece929dc03d73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83161580610e6d575073ffffffffffffffffffffffffffffffffffffffff8216155b15610ea4576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600003610ede576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610f4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6f91906128b9565b905080821115610fab576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526024820183905285169063a9059cbb906044016020604051808303816000875af1158015611020573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104491906128d2565b5050505050565b611053611572565b73ffffffffffffffffffffffffffffffffffffffff81166110a0576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556110ee906001611435565b6006546109869073ffffffffffffffffffffffffffffffffffffffff166001611bf5565b61111a611572565b6111246000611c7f565b565b61112e611572565b600680547fffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffff169055565b337f0000000000000000000000007c0a1190e8899be914fa68dfe2745ece929dc03d73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80611251577f00000000000000000000000084bf434c13c28f6b7fa245d7209831adc57a659773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611251576040517f9c4e22fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125b8282611bf5565b5050565b61126a8233836115c5565b61125b8282611b99565b61127c611572565b60065474010000000000000000000000000000000000000000900460ff16156112d1576040517f08fd3d0500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6060600480546108499061281e565b337f0000000000000000000000007c0a1190e8899be914fa68dfe2745ece929dc03d73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000084bf434c13c28f6b7fa245d7209831adc57a659773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611415576040517fa5d832e300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125b8282611cf6565b600061142c338484611694565b50600192915050565b337f0000000000000000000000007c0a1190e8899be914fa68dfe2745ece929dc03d73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611502611572565b73ffffffffffffffffffffffffffffffffffffffff8116611557576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b61098681611c7f565b61156d8383836001611da3565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611124576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461168e578181101561167f576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018290526044810183905260640161154e565b61168e84848484036000611da3565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166116e1576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661172e576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600003611768576040517faa7feadc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006547a010000000000000000000000000000000000000000000000000000900460ff1615611aed5760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906117d7575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b15611aed5760065474010000000000000000000000000000000000000000900460ff16611830576040517feb30de5c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a602052604090205460ff16801561188b575073ffffffffffffffffffffffffffffffffffffffff821660009081526009602052604090205460ff16155b1561197e577f000000000000000000000000000000000000000002b7f92531bd2a5c5e8000008111156118ea576040517fbe601f7600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000827eb6f95377f151b80000061194161193a8473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b8390611eeb565b1115611979576040517faf1a8f1900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aed565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a602052604090205460ff1680156119d9575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff16155b15611a38577f000000000000000000000000000000000000000002b7f92531bd2a5c5e800000811115611979576040517f75bff70900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff16611aed577f00000000000000000000000000000000000000000827eb6f95377f151b800000611ab561193a8473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b1115611aed576040517faf1a8f1900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065460009074010000000000000000000000000000000000000000900460ff168015611b40575073ffffffffffffffffffffffffffffffffffffffff841660009081526008602052604090205460ff16155b8015611b72575073ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16155b15611b8557611b82848484611f0e565b90505b61168e8484611b948585612088565b6120ab565b73ffffffffffffffffffffffffffffffffffffffff8216611be9576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b61125b82600083612152565b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a25050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179055611d4f8282611bf5565b6040805173ffffffffffffffffffffffffffffffffffffffff8416815282151560208201527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab910160405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff8416611df3576040517fe602df050000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff8316611e43576040517f94280d620000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600160209081526040808320938716835292905220829055801561168e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611edd91815260200190565b60405180910390a350505050565b600080611ef883856128ef565b905083811015611f0757600080fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600a60205260408120548190859060ff1615611f435750835b6007546040517ff585149300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301529091169063f585149390602401602060405180830381865afa158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd791906128d2565b15612073576007546040517fb8d04f4e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301529091169063b8d04f4e90602401602060405180830381865afa15801561204c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120709190612902565b91505b61207e8683866122fd565b9695505050505050565b60008282111561209757600080fd5b60006120a3838561291f565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff83166120fb576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b73ffffffffffffffffffffffffffffffffffffffff821661214b576040517fec442f050000000000000000000000000000000000000000000000000000000081526000600482015260240161154e565b61156d8383835b73ffffffffffffffffffffffffffffffffffffffff831661218a57806002600082825461217f91906128ef565b9091555061223c9050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612210576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602481018290526044810183905260640161154e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff821661226557600280548290039055612291565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516122f091815260200190565b60405180910390a3505050565b60008080808073ffffffffffffffffffffffffffffffffffffffff87161561239c575060065460ff76010000000000000000000000000000000000000000000082048116945077010000000000000000000000000000000000000000000000820481169350879161239591859161238f9175010000000000000000000000000000000000000000009091041687612088565b90612088565b91506123ec565b60065460ff7901000000000000000000000000000000000000000000000000008204811695506123e991780100000000000000000000000000000000000000000000000090041685612088565b91505b600061240660646124008960ff891661259c565b906125d1565b9050600061241c60646124008a60ff891661259c565b9050600061243260646124008b60ff891661259c565b9050811561249e576124458b85846120ab565b6040805173ffffffffffffffffffffffffffffffffffffffff808e168252861660208201529081018390527fd03c3735da9cacf061495b9e0a88f8999a058631af12df29522ccacde17922ba9060600160405180910390a15b80156124c9576006546124c9908c9073ffffffffffffffffffffffffffffffffffffffff16836120ab565b8215612579576007546124f4908c9073ffffffffffffffffffffffffffffffffffffffff16856120ab565b6007546040517f59974e380000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff909116906359974e3890602401600060405180830381600087803b15801561256057600080fd5b505af1158015612574573d6000803e3d6000fd5b505050505b61258d816125878585611eeb565b90611eeb565b9b9a5050505050505050505050565b6000826000036125ae575060006108e0565b60006125ba8385612932565b9050826125c78583612949565b14611f0757600080fd5b60008082116125df57600080fd5b60006120a38385612949565b60006020808352835180602085015260005b81811015612619578581018301518582016040015282016125fd565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461098657600080fd5b6000806040838503121561268d57600080fd5b823561269881612658565b946020939093013593505050565b6000602082840312156126b857600080fd5b8135611f0781612658565b6000806000606084860312156126d857600080fd5b83356126e381612658565b925060208401356126f381612658565b929592945050506040919091013590565b803560ff8116811461271557600080fd5b919050565b6000806040838503121561272d57600080fd5b61273683612704565b915061274460208401612704565b90509250929050565b60006020828403121561275f57600080fd5b5035919050565b60008060006060848603121561277b57600080fd5b61278484612704565b925061279260208501612704565b91506127a060408501612704565b90509250925092565b801515811461098657600080fd5b600080604083850312156127ca57600080fd5b82356127d581612658565b915060208301356127e5816127a9565b809150509250929050565b6000806040838503121561280357600080fd5b823561280e81612658565b915060208301356127e581612658565b600181811c9082168061283257607f821691505b60208210810361286b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60ff81811683821601908111156108e0576108e0612871565b6000602082840312156128cb57600080fd5b5051919050565b6000602082840312156128e457600080fd5b8151611f07816127a9565b808201808211156108e0576108e0612871565b60006020828403121561291457600080fd5b8151611f0781612658565b818103818111156108e0576108e0612871565b80820281158282048414176108e0576108e0612871565b60008261297f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea26469706673582212202e7f6fbdd31e5a6cee37977fab6bb12abb8b8f026ec745f5dfed8ebc85fd3afa64736f6c63430008180033

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

00000000000000000000000000000000000000000000000000000061f313f880000000000000000000000000c022e89b655b65ba956eb46825b47bda6d4c5ff4000000000000000000000000541ab7c31a119441ef3575f6973277de0ef460bd

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000
Arg [1] : _companyWalletAddress (address): 0xc022E89b655B65ba956Eb46825B47BdA6d4c5Ff4
Arg [2] : _uniswapRouterAddress (address): 0x541aB7c31A119441eF3575F6973277DE0eF460bd

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000061f313f880
Arg [1] : 000000000000000000000000c022e89b655b65ba956eb46825b47bda6d4c5ff4
Arg [2] : 000000000000000000000000541ab7c31a119441ef3575f6973277de0ef460bd


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