ETH Price: $3,419.13 (+1.11%)
Gas: 4 Gwei

Contract

0x426a688eE72811773eB64F5717A32981B56F10c1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Value
Approve202065302024-06-30 19:15:594 mins ago1719774959IN
AMC: AMC Token
0 ETH0.000151653.22270897
Approve202065042024-06-30 19:10:479 mins ago1719774647IN
AMC: AMC Token
0 ETH0.000161513.41822853
Approve202065022024-06-30 19:10:239 mins ago1719774623IN
AMC: AMC Token
0 ETH0.000266085.63153245
Transfer202064942024-06-30 19:08:4711 mins ago1719774527IN
AMC: AMC Token
0 ETH0.000390315.724914
Approve202064492024-06-30 18:59:4720 mins ago1719773987IN
AMC: AMC Token
0 ETH0.000146463.09986236
Approve202064332024-06-30 18:56:3523 mins ago1719773795IN
AMC: AMC Token
0 ETH0.000192164.06688891
Approve202063832024-06-30 18:46:3533 mins ago1719773195IN
AMC: AMC Token
0 ETH0.000139772.95527209
Approve202063442024-06-30 18:38:4741 mins ago1719772727IN
AMC: AMC Token
0 ETH0.000127432.70931792
Approve202063222024-06-30 18:34:2345 mins ago1719772463IN
AMC: AMC Token
0 ETH0.000129932.762575
Approve202063092024-06-30 18:31:4748 mins ago1719772307IN
AMC: AMC Token
0 ETH0.00028215.96281925
Approve202062632024-06-30 18:22:2357 mins ago1719771743IN
AMC: AMC Token
0 ETH0.000160493.39231883
Approve202062502024-06-30 18:19:471 hr ago1719771587IN
AMC: AMC Token
0 ETH0.00015553.29114152
Approve202062292024-06-30 18:15:351 hr ago1719771335IN
AMC: AMC Token
0 ETH0.00036737.76383733
Approve202062262024-06-30 18:14:591 hr ago1719771299IN
AMC: AMC Token
0 ETH0.000236034.99535421
Approve202062122024-06-30 18:12:111 hr ago1719771131IN
AMC: AMC Token
0 ETH0.000159773.38145309
Approve202061152024-06-30 17:52:351 hr ago1719769955IN
AMC: AMC Token
0 ETH0.00012272.59703558
Approve202060642024-06-30 17:42:231 hr ago1719769343IN
AMC: AMC Token
0 ETH0.000097213.25155524
Approve202060612024-06-30 17:41:471 hr ago1719769307IN
AMC: AMC Token
0 ETH0.000159193.36924373
Approve202060452024-06-30 17:38:351 hr ago1719769115IN
AMC: AMC Token
0 ETH0.000165433.50122766
Approve202060432024-06-30 17:38:111 hr ago1719769091IN
AMC: AMC Token
0 ETH0.000169033.57291644
Approve202060272024-06-30 17:34:591 hr ago1719768899IN
AMC: AMC Token
0 ETH0.000188323.98073697
Approve202059192024-06-30 17:12:592 hrs ago1719767579IN
AMC: AMC Token
0 ETH0.000199614.21936365
Approve202058362024-06-30 16:56:232 hrs ago1719766583IN
AMC: AMC Token
0 ETH0.000233924.97600222
Approve202058212024-06-30 16:53:232 hrs ago1719766403IN
AMC: AMC Token
0 ETH0.000244995.18501706
Approve202058192024-06-30 16:52:592 hrs ago1719766379IN
AMC: AMC Token
0 ETH0.000288856.11331044
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AMCToken

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : AMCToken.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

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

/*
I see you nerd! ⌐⊙_⊙
*/

contract AMCToken is ERC20, Ownable {
    IUniRouter public uniRouter;
    address public uniPair;

    address public antibotWallet;
    address public operator;

    mapping(address => bool) public freelos;
    mapping(address => bool) public liberatos;

    uint256 public sellPercent = 0;
    uint256 public buyPercent = 0;

    uint256 public maxTx;
    uint256 public maxWallet;

    bool public openTrading = false;

    // Errors
    error UnauthorizedCaller();
    error TradingNotOpen();
    error LimitExceeded();

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply,
        address _router
    ) ERC20(_name, _symbol) Ownable(msg.sender) {
        uniRouter = IUniRouter(_router);
        uniPair = IUniFactory(uniRouter.factory()).createPair(
            address(this),
            uniRouter.WETH()
        );

        antibotWallet = 0x6286E3CF6447d6DBab1FAE5C488d9df8f09B88C8;
        operator = msg.sender;

        freelos[msg.sender] = true;
        freelos[address(this)] = true;
        freelos[antibotWallet] = true;
        freelos[0xDc8Eb8d2D1babD956136b57B0B9F49b433c019e3] = true;
        liberatos[msg.sender] = true;
        liberatos[uniPair] = true;
        liberatos[antibotWallet] = true;
        liberatos[address(this)] = true;
        liberatos[address(0)] = true;

        maxTx = _totalSupply / 25;
        maxWallet = _totalSupply / 25;

        _mint(msg.sender, _totalSupply);
    }

    modifier onlyOwnerOrOperator() {
        if (msg.sender != owner() && msg.sender != operator) {
            revert UnauthorizedCaller();
        }
        _;
    }

    function setWallets(
        address _antibotWallet,
        address _operator
    ) external onlyOwner {
        antibotWallet = _antibotWallet;
        operator = _operator;
    }

    function setConfig(
        uint256 _sellPercent,
        uint256 _buyPercent
    ) external onlyOwnerOrOperator {
        sellPercent = _sellPercent;
        buyPercent = _buyPercent;
    }

    function setLimits(uint256 _maxTx, uint256 _maxWallet) external onlyOwner {
        maxTx = _maxTx;
        maxWallet = _maxWallet;
    }

    function removeLimits() external onlyOwner {
        maxTx = type(uint256).max;
        maxWallet = type(uint256).max;
    }

    function clearStuckToken(address _token) external returns (bool) {
        uint256 _amount = IERC20(_token).balanceOf(address(this));

        return IERC20(_token).transfer(antibotWallet, _amount);
    }

    function startTrading() external onlyOwnerOrOperator {
        openTrading = true;
    }

    function editFreelos(
        address[] calldata _freelos,
        bool _status
    ) external onlyOwner {
        for (uint256 i = 0; i < _freelos.length; i++) {
            freelos[_freelos[i]] = _status;
        }
    }

    function editLiberatos(
        address[] calldata _liberatos,
        bool _status
    ) external onlyOwner {
        for (uint256 i = 0; i < _liberatos.length; i++) {
            liberatos[_liberatos[i]] = _status;
        }
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (!openTrading && from != owner() && to != owner() && from != operator && to != operator) {
            revert TradingNotOpen();
        }

        if (
            from != owner() &&
            to != uniPair &&
            to != address(this) &&
            to != antibotWallet &&
            !liberatos[to]
        ) {
            uint256 heldTokens = balanceOf(to);
            if ((heldTokens + value) > maxWallet) {
                revert LimitExceeded();
            }
        }

        if (value > maxTx && !liberatos[from]) {
            revert LimitExceeded();
        }

        if (
            !freelos[from] && !freelos[to] && (from == uniPair || to == uniPair)
        ) {
            uint256 antibotAmt = from == uniPair
                ? ((value * buyPercent) / 100)
                : ((value * sellPercent) / 100);
            super._update(from, antibotWallet, antibotAmt);
            super._update(from, to, value - antibotAmt);
        } else {
            super._update(from, to, value);
        }
    }
}

File 2 of 8 : 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 8 : 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 8 : 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 8 : 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 6 of 8 : 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 7 of 8 : 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 8 of 8 : IUniRouter.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

interface IUniRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"LimitExceeded","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":"TradingNotOpen","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antibotWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_freelos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editFreelos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_liberatos","type":"address[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"editLiberatos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liberatos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellPercent","type":"uint256"},{"internalType":"uint256","name":"_buyPercent","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_antibotWallet","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526000600c556000600d556000601060006101000a81548160ff0219169083151502179055503480156200003657600080fd5b5060405162003e7c38038062003e7c83398181016040528101906200005c91906200144b565b33848481600390816200007091906200173c565b5080600490816200008291906200173c565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000fa5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000f1919062001834565b60405180910390fd5b6200010b81620007a460201b60201c565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e1919062001851565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000291919062001851565b6040518363ffffffff1660e01b8152600401620002b092919062001883565b6020604051808303816000875af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f6919062001851565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736286e3cf6447d6dbab1fae5c488d9df8f09b88c8600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a600073dc8eb8d2d1babd956136b57b0b9f49b433c019e373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506019826200076d91906200190e565b600e819055506019826200078291906200190e565b600f819055506200079a33836200086a60201b60201c565b5050505062001a72565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008df5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008d6919062001834565b60405180910390fd5b620008f360008383620008f760201b60201c565b5050565b601060009054906101000a900460ff161580156200095057506200092062000f7660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200099857506200096862000f7660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620009f35750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801562000a4e5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000a86576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000a9662000f7660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000b205750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000b5957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000bb45750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000c0b5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000c7257600062000c248362000fa060201b60201c565b9050600f54828262000c37919062001946565b111562000c70576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e548111801562000cce5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000d06576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801562000dab5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000e5e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000e5d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b1562000f5d576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161462000ee0576064600c548362000ece919062001981565b62000eda91906200190e565b62000eff565b6064600d548362000ef2919062001981565b62000efe91906200190e565b5b905062000f3684600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000fe860201b60201c565b62000f568484838562000f4a9190620019cc565b62000fe860201b60201c565b5062000f71565b62000f7083838362000fe860201b60201c565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200103e57806002600082825462001031919062001946565b9250508190555062001114565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620010cd578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620010c49392919062001a18565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200115f5780600260008282540392505081905550620011ac565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200120b919062001a55565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620012818262001236565b810181811067ffffffffffffffff82111715620012a357620012a262001247565b5b80604052505050565b6000620012b862001218565b9050620012c6828262001276565b919050565b600067ffffffffffffffff821115620012e957620012e862001247565b5b620012f48262001236565b9050602081019050919050565b60005b838110156200132157808201518184015260208101905062001304565b60008484015250505050565b6000620013446200133e84620012cb565b620012ac565b90508281526020810184848401111562001363576200136262001231565b5b6200137084828562001301565b509392505050565b600082601f83011262001390576200138f6200122c565b5b8151620013a28482602086016200132d565b91505092915050565b6000819050919050565b620013c081620013ab565b8114620013cc57600080fd5b50565b600081519050620013e081620013b5565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200141382620013e6565b9050919050565b620014258162001406565b81146200143157600080fd5b50565b60008151905062001445816200141a565b92915050565b6000806000806080858703121562001468576200146762001222565b5b600085015167ffffffffffffffff81111562001489576200148862001227565b5b620014978782880162001378565b945050602085015167ffffffffffffffff811115620014bb57620014ba62001227565b5b620014c98782880162001378565b9350506040620014dc87828801620013cf565b9250506060620014ef8782880162001434565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200154e57607f821691505b60208210810362001564576200156362001506565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015ce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200158f565b620015da86836200158f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200161d620016176200161184620013ab565b620015f2565b620013ab565b9050919050565b6000819050919050565b6200163983620015fc565b62001651620016488262001624565b8484546200159c565b825550505050565b600090565b6200166862001659565b620016758184846200162e565b505050565b5b818110156200169d57620016916000826200165e565b6001810190506200167b565b5050565b601f821115620016ec57620016b6816200156a565b620016c1846200157f565b81016020851015620016d1578190505b620016e9620016e0856200157f565b8301826200167a565b50505b505050565b600082821c905092915050565b60006200171160001984600802620016f1565b1980831691505092915050565b60006200172c8383620016fe565b9150826002028217905092915050565b6200174782620014fb565b67ffffffffffffffff81111562001763576200176262001247565b5b6200176f825462001535565b6200177c828285620016a1565b600060209050601f831160018114620017b457600084156200179f578287015190505b620017ab85826200171e565b8655506200181b565b601f198416620017c4866200156a565b60005b82811015620017ee57848901518255600182019150602085019450602081019050620017c7565b868310156200180e57848901516200180a601f891682620016fe565b8355505b6001600288020188555050505b505050505050565b6200182e8162001406565b82525050565b60006020820190506200184b600083018462001823565b92915050565b6000602082840312156200186a576200186962001222565b5b60006200187a8482850162001434565b91505092915050565b60006040820190506200189a600083018562001823565b620018a9602083018462001823565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200191b82620013ab565b91506200192883620013ab565b9250826200193b576200193a620018b0565b5b828204905092915050565b60006200195382620013ab565b91506200196083620013ab565b92508282019050808211156200197b576200197a620018df565b5b92915050565b60006200198e82620013ab565b91506200199b83620013ab565b9250828202620019ab81620013ab565b91508282048414831517620019c557620019c4620018df565b5b5092915050565b6000620019d982620013ab565b9150620019e683620013ab565b925082820390508181111562001a015762001a00620018df565b5b92915050565b62001a1281620013ab565b82525050565b600060608201905062001a2f600083018662001823565b62001a3e602083018562001a07565b62001a4d604083018462001a07565b949350505050565b600060208201905062001a6c600083018462001a07565b92915050565b6123fa8062001a826000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a9059cbb116100a2578063d3f6a15711610071578063d3f6a1571461054e578063dd62ed3e1461056a578063f2fde38b1461059a578063f8b45b05146105b6576101e5565b8063a9059cbb146104c6578063c4590d3f146104f6578063c9567bf914610512578063d36d049714610530576101e5565b80638da5cb5b116100de5780638da5cb5b1461043c57806395d89b411461045a5780639be953b314610478578063a0e47bf6146104a8576101e5565b8063715018a6146103ee5780637437681e146103f8578063751039fc146104165780638a218a7d14610420576101e5565b80633090b64011610187578063471131ac11610156578063471131ac146103525780634f1455c914610382578063570ca735146103a057806370a08231146103be576101e5565b80633090b640146102dc578063313ce567146102fa57806332972e46146103185780633ef6136314610336576101e5565b806318160ddd116101c357806318160ddd146102685780631e34c5851461028657806323b872dd146102a2578063293230b8146102d2576101e5565b806306fdde03146101ea578063095ea7b31461020857806312fb555014610238575b600080fd5b6101f26105d4565b6040516101ff9190611cec565b60405180910390f35b610222600480360381019061021d9190611dac565b610666565b60405161022f9190611e07565b60405180910390f35b610252600480360381019061024d9190611e22565b610689565b60405161025f9190611e07565b60405180910390f35b6102706106a9565b60405161027d9190611e5e565b60405180910390f35b6102a0600480360381019061029b9190611e79565b6106b3565b005b6102bc60048036038101906102b79190611eb9565b61078d565b6040516102c99190611e07565b60405180910390f35b6102da6107bc565b005b6102e46108a1565b6040516102f19190611f1b565b60405180910390f35b6103026108c7565b60405161030f9190611f52565b60405180910390f35b6103206108d0565b60405161032d9190611f1b565b60405180910390f35b610350600480360381019061034b9190611ffe565b6108f6565b005b61036c60048036038101906103679190611e22565b61099d565b6040516103799190611e07565b60405180910390f35b61038a6109bd565b6040516103979190611e5e565b60405180910390f35b6103a86109c3565b6040516103b59190611f1b565b60405180910390f35b6103d860048036038101906103d39190611e22565b6109e9565b6040516103e59190611e5e565b60405180910390f35b6103f6610a31565b005b610400610a45565b60405161040d9190611e5e565b60405180910390f35b61041e610a4b565b005b61043a60048036038101906104359190611ffe565b610aa3565b005b610444610b4a565b6040516104519190611f1b565b60405180910390f35b610462610b74565b60405161046f9190611cec565b60405180910390f35b610492600480360381019061048d9190611e22565b610c06565b60405161049f9190611e07565b60405180910390f35b6104b0610d2d565b6040516104bd91906120bd565b60405180910390f35b6104e060048036038101906104db9190611dac565b610d53565b6040516104ed9190611e07565b60405180910390f35b610510600480360381019061050b9190611e79565b610d76565b005b61051a610d90565b6040516105279190611e07565b60405180910390f35b610538610da3565b6040516105459190611e5e565b60405180910390f35b610568600480360381019061056391906120d8565b610da9565b005b610584600480360381019061057f91906120d8565b610e37565b6040516105919190611e5e565b60405180910390f35b6105b460048036038101906105af9190611e22565b610ebe565b005b6105be610f44565b6040516105cb9190611e5e565b60405180910390f35b6060600380546105e390612147565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90612147565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600080610671610f4a565b905061067e818585610f52565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6106bb610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107445750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b1561077b576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b600080610798610f4a565b90506107a5858285610f64565b6107b0858585610ff8565b60019150509392505050565b6107c4610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561084d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610884576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108fe6110ec565b60005b838390508110156109975781600a600086868581811061092457610923612178565b5b90506020020160208101906109399190611e22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610901565b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a396110ec565b610a436000611173565b565b600e5481565b610a536110ec565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600f81905550565b610aab6110ec565b60005b83839050811015610b445781600b6000868685818110610ad157610ad0612178565b5b9050602002016020810190610ae69190611e22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610aae565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b8390612147565b80601f0160208091040260200160405190810160405280929190818152602001828054610baf90612147565b8015610bfc5780601f10610bd157610100808354040283529160200191610bfc565b820191906000526020600020905b815481529060010190602001808311610bdf57829003601f168201915b5050505050905090565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c429190611f1b565b602060405180830381865afa158015610c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8391906121bc565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610ce29291906121e9565b6020604051808303816000875af1158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190612227565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d5e610f4a565b9050610d6b818585610ff8565b600191505092915050565b610d7e6110ec565b81600e8190555080600f819055505050565b601060009054906101000a900460ff1681565b600c5481565b610db16110ec565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ec66110ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f385760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f2f9190611f1b565b60405180910390fd5b610f4181611173565b50565b600f5481565b600033905090565b610f5f8383836001611239565b505050565b6000610f708484610e37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ff25781811015610fe2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fd993929190612254565b60405180910390fd5b610ff184848484036000611239565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361106a5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110619190611f1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110d39190611f1b565b60405180910390fd5b6110e7838383611410565b505050565b6110f4610f4a565b73ffffffffffffffffffffffffffffffffffffffff16611112610b4a565b73ffffffffffffffffffffffffffffffffffffffff161461117157611135610f4a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111689190611f1b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112ab5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112a29190611f1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113149190611f1b565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561140a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114019190611e5e565b60405180910390a35b50505050565b601060009054906101000a900460ff161580156114605750611430610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561149f575061146f610b4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114f95750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115535750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561158a576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611592610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561161b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ad5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561175e576000611713836109e9565b9050600f54828261172491906122ba565b111561175c576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e54811180156117b95750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117f0576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118945750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119455750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806119445750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611a26576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146119c0576064600c54836119b191906122ee565b6119bb919061235f565b6119db565b6064600d54836119d091906122ee565b6119da919061235f565b5b9050611a0a84600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a37565b611a2084848385611a1b9190612390565b611a37565b50611a32565b611a31838383611a37565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a89578060026000828254611a7d91906122ba565b92505081905550611b5c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b15578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611b0c93929190612254565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba55780600260008282540392505081905550611bf2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c4f9190611e5e565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c96578082015181840152602081019050611c7b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cbe82611c5c565b611cc88185611c67565b9350611cd8818560208601611c78565b611ce181611ca2565b840191505092915050565b60006020820190508181036000830152611d068184611cb3565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d4382611d18565b9050919050565b611d5381611d38565b8114611d5e57600080fd5b50565b600081359050611d7081611d4a565b92915050565b6000819050919050565b611d8981611d76565b8114611d9457600080fd5b50565b600081359050611da681611d80565b92915050565b60008060408385031215611dc357611dc2611d0e565b5b6000611dd185828601611d61565b9250506020611de285828601611d97565b9150509250929050565b60008115159050919050565b611e0181611dec565b82525050565b6000602082019050611e1c6000830184611df8565b92915050565b600060208284031215611e3857611e37611d0e565b5b6000611e4684828501611d61565b91505092915050565b611e5881611d76565b82525050565b6000602082019050611e736000830184611e4f565b92915050565b60008060408385031215611e9057611e8f611d0e565b5b6000611e9e85828601611d97565b9250506020611eaf85828601611d97565b9150509250929050565b600080600060608486031215611ed257611ed1611d0e565b5b6000611ee086828701611d61565b9350506020611ef186828701611d61565b9250506040611f0286828701611d97565b9150509250925092565b611f1581611d38565b82525050565b6000602082019050611f306000830184611f0c565b92915050565b600060ff82169050919050565b611f4c81611f36565b82525050565b6000602082019050611f676000830184611f43565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611f9257611f91611f6d565b5b8235905067ffffffffffffffff811115611faf57611fae611f72565b5b602083019150836020820283011115611fcb57611fca611f77565b5b9250929050565b611fdb81611dec565b8114611fe657600080fd5b50565b600081359050611ff881611fd2565b92915050565b60008060006040848603121561201757612016611d0e565b5b600084013567ffffffffffffffff81111561203557612034611d13565b5b61204186828701611f7c565b9350935050602061205486828701611fe9565b9150509250925092565b6000819050919050565b600061208361207e61207984611d18565b61205e565b611d18565b9050919050565b600061209582612068565b9050919050565b60006120a78261208a565b9050919050565b6120b78161209c565b82525050565b60006020820190506120d260008301846120ae565b92915050565b600080604083850312156120ef576120ee611d0e565b5b60006120fd85828601611d61565b925050602061210e85828601611d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061215f57607f821691505b60208210810361217257612171612118565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506121b681611d80565b92915050565b6000602082840312156121d2576121d1611d0e565b5b60006121e0848285016121a7565b91505092915050565b60006040820190506121fe6000830185611f0c565b61220b6020830184611e4f565b9392505050565b60008151905061222181611fd2565b92915050565b60006020828403121561223d5761223c611d0e565b5b600061224b84828501612212565b91505092915050565b60006060820190506122696000830186611f0c565b6122766020830185611e4f565b6122836040830184611e4f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122c582611d76565b91506122d083611d76565b92508282019050808211156122e8576122e761228b565b5b92915050565b60006122f982611d76565b915061230483611d76565b925082820261231281611d76565b915082820484148315176123295761232861228b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061236a82611d76565b915061237583611d76565b92508261238557612384612330565b5b828204905092915050565b600061239b82611d76565b91506123a683611d76565b92508282039050818111156123be576123bd61228b565b5b9291505056fea2646970667358221220bf822a937b0214f088761def7357448dfd8d432b8d706a2ba31383292906ea2064736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000001b5d96f73101b813d45d00000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000003414d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003414d430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a9059cbb116100a2578063d3f6a15711610071578063d3f6a1571461054e578063dd62ed3e1461056a578063f2fde38b1461059a578063f8b45b05146105b6576101e5565b8063a9059cbb146104c6578063c4590d3f146104f6578063c9567bf914610512578063d36d049714610530576101e5565b80638da5cb5b116100de5780638da5cb5b1461043c57806395d89b411461045a5780639be953b314610478578063a0e47bf6146104a8576101e5565b8063715018a6146103ee5780637437681e146103f8578063751039fc146104165780638a218a7d14610420576101e5565b80633090b64011610187578063471131ac11610156578063471131ac146103525780634f1455c914610382578063570ca735146103a057806370a08231146103be576101e5565b80633090b640146102dc578063313ce567146102fa57806332972e46146103185780633ef6136314610336576101e5565b806318160ddd116101c357806318160ddd146102685780631e34c5851461028657806323b872dd146102a2578063293230b8146102d2576101e5565b806306fdde03146101ea578063095ea7b31461020857806312fb555014610238575b600080fd5b6101f26105d4565b6040516101ff9190611cec565b60405180910390f35b610222600480360381019061021d9190611dac565b610666565b60405161022f9190611e07565b60405180910390f35b610252600480360381019061024d9190611e22565b610689565b60405161025f9190611e07565b60405180910390f35b6102706106a9565b60405161027d9190611e5e565b60405180910390f35b6102a0600480360381019061029b9190611e79565b6106b3565b005b6102bc60048036038101906102b79190611eb9565b61078d565b6040516102c99190611e07565b60405180910390f35b6102da6107bc565b005b6102e46108a1565b6040516102f19190611f1b565b60405180910390f35b6103026108c7565b60405161030f9190611f52565b60405180910390f35b6103206108d0565b60405161032d9190611f1b565b60405180910390f35b610350600480360381019061034b9190611ffe565b6108f6565b005b61036c60048036038101906103679190611e22565b61099d565b6040516103799190611e07565b60405180910390f35b61038a6109bd565b6040516103979190611e5e565b60405180910390f35b6103a86109c3565b6040516103b59190611f1b565b60405180910390f35b6103d860048036038101906103d39190611e22565b6109e9565b6040516103e59190611e5e565b60405180910390f35b6103f6610a31565b005b610400610a45565b60405161040d9190611e5e565b60405180910390f35b61041e610a4b565b005b61043a60048036038101906104359190611ffe565b610aa3565b005b610444610b4a565b6040516104519190611f1b565b60405180910390f35b610462610b74565b60405161046f9190611cec565b60405180910390f35b610492600480360381019061048d9190611e22565b610c06565b60405161049f9190611e07565b60405180910390f35b6104b0610d2d565b6040516104bd91906120bd565b60405180910390f35b6104e060048036038101906104db9190611dac565b610d53565b6040516104ed9190611e07565b60405180910390f35b610510600480360381019061050b9190611e79565b610d76565b005b61051a610d90565b6040516105279190611e07565b60405180910390f35b610538610da3565b6040516105459190611e5e565b60405180910390f35b610568600480360381019061056391906120d8565b610da9565b005b610584600480360381019061057f91906120d8565b610e37565b6040516105919190611e5e565b60405180910390f35b6105b460048036038101906105af9190611e22565b610ebe565b005b6105be610f44565b6040516105cb9190611e5e565b60405180910390f35b6060600380546105e390612147565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90612147565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600080610671610f4a565b905061067e818585610f52565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6106bb610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156107445750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b1561077b576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c8190555080600d819055505050565b600080610798610f4a565b90506107a5858285610f64565b6107b0858585610ff8565b60019150509392505050565b6107c4610b4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561084d5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610884576040517f5c427cd900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108fe6110ec565b60005b838390508110156109975781600a600086868581811061092457610923612178565b5b90506020020160208101906109399190611e22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610901565b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b600d5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a396110ec565b610a436000611173565b565b600e5481565b610a536110ec565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600e819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600f81905550565b610aab6110ec565b60005b83839050811015610b445781600b6000868685818110610ad157610ad0612178565b5b9050602002016020810190610ae69190611e22565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610aae565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b8390612147565b80601f0160208091040260200160405190810160405280929190818152602001828054610baf90612147565b8015610bfc5780601f10610bd157610100808354040283529160200191610bfc565b820191906000526020600020905b815481529060010190602001808311610bdf57829003601f168201915b5050505050905090565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c429190611f1b565b602060405180830381865afa158015610c5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8391906121bc565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610ce29291906121e9565b6020604051808303816000875af1158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d259190612227565b915050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d5e610f4a565b9050610d6b818585610ff8565b600191505092915050565b610d7e6110ec565b81600e8190555080600f819055505050565b601060009054906101000a900460ff1681565b600c5481565b610db16110ec565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ec66110ec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f385760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f2f9190611f1b565b60405180910390fd5b610f4181611173565b50565b600f5481565b600033905090565b610f5f8383836001611239565b505050565b6000610f708484610e37565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ff25781811015610fe2578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fd993929190612254565b60405180910390fd5b610ff184848484036000611239565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361106a5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110619190611f1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110d39190611f1b565b60405180910390fd5b6110e7838383611410565b505050565b6110f4610f4a565b73ffffffffffffffffffffffffffffffffffffffff16611112610b4a565b73ffffffffffffffffffffffffffffffffffffffff161461117157611135610f4a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111689190611f1b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112ab5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112a29190611f1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131d5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113149190611f1b565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561140a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114019190611e5e565b60405180910390a35b50505050565b601060009054906101000a900460ff161580156114605750611430610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561149f575061146f610b4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114f95750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115535750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561158a576040517fe09f033100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611592610b4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561161b5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561165357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ad5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561175e576000611713836109e9565b9050600f54828261172491906122ba565b111561175c576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b600e54811180156117b95750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117f0576040517f3261c79200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156118945750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119455750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806119445750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b15611a26576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146119c0576064600c54836119b191906122ee565b6119bb919061235f565b6119db565b6064600d54836119d091906122ee565b6119da919061235f565b5b9050611a0a84600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a37565b611a2084848385611a1b9190612390565b611a37565b50611a32565b611a31838383611a37565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a89578060026000828254611a7d91906122ba565b92505081905550611b5c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b15578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611b0c93929190612254565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba55780600260008282540392505081905550611bf2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c4f9190611e5e565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c96578082015181840152602081019050611c7b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cbe82611c5c565b611cc88185611c67565b9350611cd8818560208601611c78565b611ce181611ca2565b840191505092915050565b60006020820190508181036000830152611d068184611cb3565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d4382611d18565b9050919050565b611d5381611d38565b8114611d5e57600080fd5b50565b600081359050611d7081611d4a565b92915050565b6000819050919050565b611d8981611d76565b8114611d9457600080fd5b50565b600081359050611da681611d80565b92915050565b60008060408385031215611dc357611dc2611d0e565b5b6000611dd185828601611d61565b9250506020611de285828601611d97565b9150509250929050565b60008115159050919050565b611e0181611dec565b82525050565b6000602082019050611e1c6000830184611df8565b92915050565b600060208284031215611e3857611e37611d0e565b5b6000611e4684828501611d61565b91505092915050565b611e5881611d76565b82525050565b6000602082019050611e736000830184611e4f565b92915050565b60008060408385031215611e9057611e8f611d0e565b5b6000611e9e85828601611d97565b9250506020611eaf85828601611d97565b9150509250929050565b600080600060608486031215611ed257611ed1611d0e565b5b6000611ee086828701611d61565b9350506020611ef186828701611d61565b9250506040611f0286828701611d97565b9150509250925092565b611f1581611d38565b82525050565b6000602082019050611f306000830184611f0c565b92915050565b600060ff82169050919050565b611f4c81611f36565b82525050565b6000602082019050611f676000830184611f43565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611f9257611f91611f6d565b5b8235905067ffffffffffffffff811115611faf57611fae611f72565b5b602083019150836020820283011115611fcb57611fca611f77565b5b9250929050565b611fdb81611dec565b8114611fe657600080fd5b50565b600081359050611ff881611fd2565b92915050565b60008060006040848603121561201757612016611d0e565b5b600084013567ffffffffffffffff81111561203557612034611d13565b5b61204186828701611f7c565b9350935050602061205486828701611fe9565b9150509250925092565b6000819050919050565b600061208361207e61207984611d18565b61205e565b611d18565b9050919050565b600061209582612068565b9050919050565b60006120a78261208a565b9050919050565b6120b78161209c565b82525050565b60006020820190506120d260008301846120ae565b92915050565b600080604083850312156120ef576120ee611d0e565b5b60006120fd85828601611d61565b925050602061210e85828601611d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061215f57607f821691505b60208210810361217257612171612118565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506121b681611d80565b92915050565b6000602082840312156121d2576121d1611d0e565b5b60006121e0848285016121a7565b91505092915050565b60006040820190506121fe6000830185611f0c565b61220b6020830184611e4f565b9392505050565b60008151905061222181611fd2565b92915050565b60006020828403121561223d5761223c611d0e565b5b600061224b84828501612212565b91505092915050565b60006060820190506122696000830186611f0c565b6122766020830185611e4f565b6122836040830184611e4f565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122c582611d76565b91506122d083611d76565b92508282019050808211156122e8576122e761228b565b5b92915050565b60006122f982611d76565b915061230483611d76565b925082820261231281611d76565b915082820484148315176123295761232861228b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061236a82611d76565b915061237583611d76565b92508261238557612384612330565b5b828204905092915050565b600061239b82611d76565b91506123a683611d76565b92508282039050818111156123be576123bd61228b565b5b9291505056fea2646970667358221220bf822a937b0214f088761def7357448dfd8d432b8d706a2ba31383292906ea2064736f6c63430008180033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000001b5d96f73101b813d45d00000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000003414d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003414d430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AMC
Arg [1] : _symbol (string): AMC
Arg [2] : _totalSupply (uint256): 34690000000000000000000000000000
Arg [3] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000001b5d96f73101b813d45d0000000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 414d430000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 414d430000000000000000000000000000000000000000000000000000000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

America's Meme Coin (AMC) is a meme coin - representing USA and ETH.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.