BNB Price: $642.59 (+4.03%)
 

Overview

Max Total Supply

190,830,486.903037RWX

Holders

21,400

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 RWX

Value
$0.00
0x89489a79d676c053c02bdf221953edf17952d872
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
RWXToken

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

/**
 * @title RWXToken
 * @dev BEP-20代币,实现买入收取10%、卖出收取20%交易税费功能
 */
contract RWXToken is ERC20, ERC20Burnable, Ownable {
    // 税费接收地址A
    address public taxWallet;
    
    // PancakeSwap配对合约地址(用于识别买入和卖出交易)
    address public pancakePair;
    
    // 买入和卖出税率(以基点表示,10000 = 100%)
    uint256 public buyTaxRate = 500;    // 5%
    uint256 public sellTaxRate = 1000;   // 10%
    uint256 private constant MAX_RATE = 10000; // 最高税率上限(100%)
    uint256 public feeTotal = 0;
    
    // 是否启用税费
    bool public taxesEnabled = true;

    // 是否关闭pancakeSwap买入
    bool public pancakeSwapBuyDisabled = true;
    
    // 地址白名单,免受税费影响
    mapping(address => bool) private _isExcludedFromTax;
    
    // 事件定义
    event TaxWalletUpdated(address indexed newWallet);
    event PancakePairUpdated(address indexed newPair);
    event TaxRatesUpdated(uint256 newBuyTaxRate, uint256 newSellTaxRate);
    event TaxStatusUpdated(bool enabled);
    event ExcludeFromTax(address indexed account, bool excluded);
    event BonusDistributed(address indexed from, address indexed to, uint256 amount, string bonusType);
    
    /**
     * @dev 构造函数
     * @param name 代币名称
     * @param symbol 代币符号
     * @param initialSupply 初始供应量(包含精度)
     * @param _taxWallet 税费接收地址
     */
    constructor(
        string memory name,
        string memory symbol,
        uint256 initialSupply,
        address _taxWallet
    ) ERC20(name, symbol) Ownable(msg.sender) {
        require(_taxWallet != address(0), "Tax wallet cannot be zero address");
        
        taxWallet = _taxWallet;
        
        // 将合约部署者和税费钱包排除在税费之外
        _isExcludedFromTax[owner()] = true;
        _isExcludedFromTax[_taxWallet] = true;
        
        // 铸造初始供应量给合约部署者
        _mint(msg.sender, initialSupply);
    }
    
    /**
     * @dev 设置PancakeSwap配对合约地址
     * @param pair 配对合约地址
     */
    function setPancakePair(address pair) external onlyOwner {
        require(pair != address(0), "Pair cannot be zero address");
        pancakePair = pair;
        
        // 不将配对合约添加到白名单,以确保买入卖出交易能正确收取税费
        // 移除这行:_isExcludedFromTax[pair] = true;
        
        emit PancakePairUpdated(pair);
    }
    
    /**
     * @dev 设置税费接收地址
     * @param wallet 新的税费接收地址
     */
    function setTaxWallet(address wallet) external onlyOwner {
        require(wallet != address(0), "Wallet cannot be zero address");
        taxWallet = wallet;
        _isExcludedFromTax[wallet] = true;
        emit TaxWalletUpdated(wallet);
    }
    
    /**
     * @dev 设置买入和卖出税率
     * @param _buyTaxRate 买入税率(基点)
     * @param _sellTaxRate 卖出税率(基点)
     */
    function setTaxRates(uint256 _buyTaxRate, uint256 _sellTaxRate) external onlyOwner {
        require(_buyTaxRate <= MAX_RATE, "Buy tax rate exceeds maximum");
        require(_sellTaxRate <= MAX_RATE, "Sell tax rate exceeds maximum");
        
        buyTaxRate = _buyTaxRate;
        sellTaxRate = _sellTaxRate;
        
        emit TaxRatesUpdated(_buyTaxRate, _sellTaxRate);
    }
    
    /**
     * @dev 启用或禁用税费
     * @param enabled 是否启用税费
     */
    function setTaxesEnabled(bool enabled) external onlyOwner {
        taxesEnabled = enabled;
        emit TaxStatusUpdated(enabled);
    }

    /**
     * @dev 重置feeTotal
     */
    function resetFeeTotal() external onlyOwner {
        feeTotal = 0;
    }

    /**
     * @dev 启用或禁用pancakeSwap买入
     * @param disabled 是否禁用pancakeSwap买入
     */
    function setPancakeSwapBuyDisabled(bool disabled) external onlyOwner {
        pancakeSwapBuyDisabled = disabled;
        emit TaxStatusUpdated(!disabled);
    }
    
    /**
     * @dev 将地址排除或包含在税费之外
     * @param account 要操作的地址
     * @param excluded 是否排除在税费之外
     */
    function setExcludeFromTax(address account, bool excluded) external onlyOwner {
        require(account != address(0), "Account cannot be zero address");
        _isExcludedFromTax[account] = excluded;
        emit ExcludeFromTax(account, excluded);
    }
    
    /**
     * @dev 检查地址是否被排除在税费之外
     * @param account 要检查的地址
     * @return 是否排除在税费之外
     */
    function isExcludedFromTax(address account) public view returns (bool) {
        return _isExcludedFromTax[account];
    }
    

    
    /**
     * @dev 重写_update函数以实现税费机制
     * 此函数在每次余额变更时被调用(转账、铸造、销毁)
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal override(ERC20) {
        // 特殊处理:0值操作直接调用父类实现
        if (value == 0) {
            super._update(from, to, value);
            return;
        }
        
        // 处理铸造操作 (from = address(0)) 或销毁操作 (to = address(0))
        if (from == address(0) || to == address(0)) {
            super._update(from, to, value);
            return;
        }
        
        // 如果税费未启用或地址在白名单中,直接调用父类实现
        if (!taxesEnabled || _isExcludedFromTax[from] || _isExcludedFromTax[to]) {
            super._update(from, to, value);
            return;
        }
        
        
        
        // 确定是否为交易对相关交易并计算税费
        bool isBuyTransaction = (from == pancakePair && to != pancakePair);
        bool isSellTransaction = (to == pancakePair && from != pancakePair);

        // 如果禁用pancakeSwap买入且是pancakeSwap交易,且不在白名单中,直接拒绝
        if (pancakeSwapBuyDisabled && isBuyTransaction && !_isExcludedFromTax[from]) {
            revert("PancakeSwap buy disabled");
        }
        
        if (isBuyTransaction || isSellTransaction) {
            // 确定税率
            uint256 taxRate = isBuyTransaction ? buyTaxRate : sellTaxRate;
            string memory bonusType = isBuyTransaction ? "buy" : "sell";
            
            // 计算税费和实际转账金额
            uint256 taxAmount = (value * taxRate) / MAX_RATE;
            uint256 transferAmount = value - taxAmount;

            feeTotal += taxAmount;
            
            // 确保转账金额大于0
            require(transferAmount > 0, "Transfer amount after tax must be greater than 0");
            
            // 执行主转账 (实际转账金额)
            super._update(from, to, transferAmount);
            
            // 转账税费到税费钱包
            if (taxAmount > 0 && taxWallet != address(0)) {
                super._update(from, taxWallet, taxAmount);
                emit BonusDistributed(from, taxWallet, taxAmount, bonusType);
            }
        } else {
            // 普通转账不收取税费
            super._update(from, to, value);
        }
    }
    

}

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

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

pragma solidity ^0.8.20;

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.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 ERC-20
 * applications.
 */
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}.
     *
     * Both 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;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

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

    /// @inheritdoc IERC20
    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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;

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

/**
 * @dev Interface for the optional metadata functions from the ERC-20 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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_taxWallet","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"bonusType","type":"string"}],"name":"BonusDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFromTax","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":"newPair","type":"address"}],"name":"PancakePairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newBuyTaxRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellTaxRate","type":"uint256"}],"name":"TaxRatesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TaxStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"TaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pancakePair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pancakeSwapBuyDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetFeeTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPancakePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"disabled","type":"bool"}],"name":"setPancakeSwapBuyDisabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTaxRate","type":"uint256"},{"internalType":"uint256","name":"_sellTaxRate","type":"uint256"}],"name":"setTaxRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60806040526101f46008556103e86009555f600a556001600b5f6101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff021916908315150217905550348015610054575f5ffd5b506040516139d13803806139d183398181016040528101906100769190610ddb565b3384848160039081610088919061107e565b508060049081610098919061107e565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010b575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610102919061115c565b60405180910390fd5b61011a8161029960201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610180906111f5565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f6101dc61035c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610290338361038460201b60201c565b505050506114fd565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103f4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103eb919061115c565b60405180910390fd5b6104055f838361040960201b60201c565b5050565b5f8103610426576104218383836109e860201b60201c565b6109e3565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061048b57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156104a6576104a18383836109e860201b60201c565b6109e3565b600b5f9054906101000a900460ff1615806105075750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b806105585750600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156105735761056e8383836109e860201b60201c565b6109e3565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561061d575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90505f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156106c9575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b9050600b60019054906101000a900460ff1680156106e45750815b80156107375750600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076e9061125d565b60405180910390fd5b81806107805750805b156109ce575f8261079357600954610797565b6008545b90505f836107da576040518060400160405280600481526020017f73656c6c00000000000000000000000000000000000000000000000000000000815250610811565b6040518060400160405280600381526020017f62757900000000000000000000000000000000000000000000000000000000008152505b90505f612710838761082391906112a8565b61082d9190611316565b90505f818761083c9190611346565b905081600a5f82825461084f9190611379565b925050819055505f8111610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f9061141c565b60405180910390fd5b6108a98989836109e860201b60201c565b5f8211801561090557505f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b156109c55761093c8960065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846109e860201b60201c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167f86abe71eb7f7a1790a3b8371a05b624050d7b855f145c75b63b54f3b39923de484866040516109bc929190611481565b60405180910390a35b505050506109e0565b6109df8585856109e860201b60201c565b5b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a38578060025f828254610a2c9190611379565b92505081905550610b06565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ac1578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ab8939291906114af565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4d578060025f8282540392505081905550610b97565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bf491906114e4565b60405180910390a3505050565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610c6082610c1a565b810181811067ffffffffffffffff82111715610c7f57610c7e610c2a565b5b80604052505050565b5f610c91610c01565b9050610c9d8282610c57565b919050565b5f67ffffffffffffffff821115610cbc57610cbb610c2a565b5b610cc582610c1a565b9050602081019050919050565b8281835e5f83830152505050565b5f610cf2610ced84610ca2565b610c88565b905082815260208101848484011115610d0e57610d0d610c16565b5b610d19848285610cd2565b509392505050565b5f82601f830112610d3557610d34610c12565b5b8151610d45848260208601610ce0565b91505092915050565b5f819050919050565b610d6081610d4e565b8114610d6a575f5ffd5b50565b5f81519050610d7b81610d57565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610daa82610d81565b9050919050565b610dba81610da0565b8114610dc4575f5ffd5b50565b5f81519050610dd581610db1565b92915050565b5f5f5f5f60808587031215610df357610df2610c0a565b5b5f85015167ffffffffffffffff811115610e1057610e0f610c0e565b5b610e1c87828801610d21565b945050602085015167ffffffffffffffff811115610e3d57610e3c610c0e565b5b610e4987828801610d21565b9350506040610e5a87828801610d6d565b9250506060610e6b87828801610dc7565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610ec557607f821691505b602082108103610ed857610ed7610e81565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610f3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610eff565b610f448683610eff565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610f7f610f7a610f7584610d4e565b610f5c565b610d4e565b9050919050565b5f819050919050565b610f9883610f65565b610fac610fa482610f86565b848454610f0b565b825550505050565b5f5f905090565b610fc3610fb4565b610fce818484610f8f565b505050565b5b81811015610ff157610fe65f82610fbb565b600181019050610fd4565b5050565b601f8211156110365761100781610ede565b61101084610ef0565b8101602085101561101f578190505b61103361102b85610ef0565b830182610fd3565b50505b505050565b5f82821c905092915050565b5f6110565f198460080261103b565b1980831691505092915050565b5f61106e8383611047565b9150826002028217905092915050565b61108782610e77565b67ffffffffffffffff8111156110a05761109f610c2a565b5b6110aa8254610eae565b6110b5828285610ff5565b5f60209050601f8311600181146110e6575f84156110d4578287015190505b6110de8582611063565b865550611145565b601f1984166110f486610ede565b5f5b8281101561111b578489015182556001820191506020850194506020810190506110f6565b868310156111385784890151611134601f891682611047565b8355505b6001600288020188555050505b505050505050565b61115681610da0565b82525050565b5f60208201905061116f5f83018461114d565b92915050565b5f82825260208201905092915050565b7f5461782077616c6c65742063616e6e6f74206265207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6111df602183611175565b91506111ea82611185565b604082019050919050565b5f6020820190508181035f83015261120c816111d3565b9050919050565b7f50616e63616b6553776170206275792064697361626c656400000000000000005f82015250565b5f611247601883611175565b915061125282611213565b602082019050919050565b5f6020820190508181035f8301526112748161123b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112b282610d4e565b91506112bd83610d4e565b92508282026112cb81610d4e565b915082820484148315176112e2576112e161127b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61132082610d4e565b915061132b83610d4e565b92508261133b5761133a6112e9565b5b828204905092915050565b5f61135082610d4e565b915061135b83610d4e565b92508282039050818111156113735761137261127b565b5b92915050565b5f61138382610d4e565b915061138e83610d4e565b92508282019050808211156113a6576113a561127b565b5b92915050565b7f5472616e7366657220616d6f756e7420616674657220746178206d75737420625f8201527f652067726561746572207468616e203000000000000000000000000000000000602082015250565b5f611406603083611175565b9150611411826113ac565b604082019050919050565b5f6020820190508181035f830152611433816113fa565b9050919050565b61144381610d4e565b82525050565b5f61145382610e77565b61145d8185611175565b935061146d818560208601610cd2565b61147681610c1a565b840191505092915050565b5f6040820190506114945f83018561143a565b81810360208301526114a68184611449565b90509392505050565b5f6060820190506114c25f83018661114d565b6114cf602083018561143a565b6114dc604083018461143a565b949350505050565b5f6020820190506114f75f83018461143a565b92915050565b6124c78061150a5f395ff3fe608060405234801561000f575f5ffd5b50600436106101cd575f3560e01c8063681fff1111610102578063a5b601be116100a0578063cb4ca6311161006f578063cb4ca631146104d1578063dd62ed3e14610501578063ea414b2814610531578063f2fde38b1461054d576101cd565b8063a5b601be14610449578063a9059cbb14610465578063b8c9d25c14610495578063bff51ef8146104b3576101cd565b8063715018a6116100dc578063715018a6146103e757806379cc6790146103f15780638da5cb5b1461040d57806395d89b411461042b576101cd565b8063681fff111461037d578063691f224f1461039957806370a08231146103b7576101cd565b806334e5ed5e1161016f57806342966c681161014957806342966c681461030b578063442567451461032757806359512ab0146103455780635cb23e1214610361576101cd565b806334e5ed5e146102c757806337bfc1ef146102d157806339fb86c5146102ef576101cd565b806323b872dd116101ab57806323b872dd1461023d57806324024efd1461026d5780632dc0562d1461028b578063313ce567146102a9576101cd565b806306fdde03146101d1578063095ea7b3146101ef57806318160ddd1461021f575b5f5ffd5b6101d9610569565b6040516101e69190611c20565b60405180910390f35b61020960048036038101906102049190611cd1565b6105f9565b6040516102169190611d29565b60405180910390f35b61022761061b565b6040516102349190611d51565b60405180910390f35b61025760048036038101906102529190611d6a565b610624565b6040516102649190611d29565b60405180910390f35b610275610652565b6040516102829190611d51565b60405180910390f35b610293610658565b6040516102a09190611dc9565b60405180910390f35b6102b161067d565b6040516102be9190611dfd565b60405180910390f35b6102cf610685565b005b6102d9610696565b6040516102e69190611d51565b60405180910390f35b61030960048036038101906103049190611e40565b61069c565b005b61032560048036038101906103209190611e7e565b6107b8565b005b61032f6107cc565b60405161033c9190611d29565b60405180910390f35b61035f600480360381019061035a9190611ea9565b6107df565b005b61037b60048036038101906103769190611ed4565b61083a565b005b61039760048036038101906103929190611ea9565b610917565b005b6103a1610974565b6040516103ae9190611d51565b60405180910390f35b6103d160048036038101906103cc9190611f12565b61097a565b6040516103de9190611d51565b60405180910390f35b6103ef6109bf565b005b61040b60048036038101906104069190611cd1565b6109d2565b005b6104156109f2565b6040516104229190611dc9565b60405180910390f35b610433610a1a565b6040516104409190611c20565b60405180910390f35b610463600480360381019061045e9190611f12565b610aaa565b005b61047f600480360381019061047a9190611cd1565b610ba6565b60405161048c9190611d29565b60405180910390f35b61049d610bc8565b6040516104aa9190611dc9565b60405180910390f35b6104bb610bed565b6040516104c89190611d29565b60405180910390f35b6104eb60048036038101906104e69190611f12565b610bff565b6040516104f89190611d29565b60405180910390f35b61051b60048036038101906105169190611f3d565b610c51565b6040516105289190611d51565b60405180910390f35b61054b60048036038101906105469190611f12565b610cd3565b005b61056760048036038101906105629190611f12565b610e24565b005b60606003805461057890611fa8565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490611fa8565b80156105ef5780601f106105c6576101008083540402835291602001916105ef565b820191905f5260205f20905b8154815290600101906020018083116105d257829003601f168201915b5050505050905090565b5f5f610603610ea8565b9050610610818585610eaf565b600191505092915050565b5f600254905090565b5f5f61062e610ea8565b905061063b858285610ec1565b610646858585610f54565b60019150509392505050565b60095481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b61068d611044565b5f600a81905550565b600a5481565b6106a4611044565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070990612022565b60405180910390fd5b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f7e9c88b87a525bea9b5a9169ddf4660ad19e19b88ea5057a584ee4d31cceec9c826040516107ac9190611d29565b60405180910390a25050565b6107c96107c3610ea8565b826110cb565b50565b600b60019054906101000a900460ff1681565b6107e7611044565b80600b5f6101000a81548160ff0219169083151502179055507ffcee2f8a7deb8619b3bf35fc6bb132f28f41cb8e3a2a2758ecc1e051fa0ce7168160405161082f9190611d29565b60405180910390a150565b610842611044565b612710821115610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e9061208a565b60405180910390fd5b6127108111156108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c3906120f2565b60405180910390fd5b81600881905550806009819055507f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba828260405161090b929190612110565b60405180910390a15050565b61091f611044565b80600b60016101000a81548160ff0219169083151502179055507ffcee2f8a7deb8619b3bf35fc6bb132f28f41cb8e3a2a2758ecc1e051fa0ce71681156040516109699190611d29565b60405180910390a150565b60085481565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109c7611044565b6109d05f61114a565b565b6109e4826109de610ea8565b83610ec1565b6109ee82826110cb565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a2990611fa8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5590611fa8565b8015610aa05780601f10610a7757610100808354040283529160200191610aa0565b820191905f5260205f20905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b610ab2611044565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612181565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fa6984d5d140544e581ce26b0a7bf128f9813dd3175f4e9f72c76d12f3c5f5a7560405160405180910390a250565b5f5f610bb0610ea8565b9050610bbd818585610f54565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900460ff1681565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cdb611044565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d40906121e9565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c760405160405180910390a250565b610e2c611044565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e9c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e939190611dc9565b60405180910390fd5b610ea58161114a565b50565b5f33905090565b610ebc838383600161120d565b505050565b5f610ecc8484610c51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610f4e5781811015610f3f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f3693929190612207565b60405180910390fd5b610f4d84848484035f61120d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc4575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fbb9190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611034575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161102b9190611dc9565b60405180910390fd5b61103f8383836113dc565b505050565b61104c610ea8565b73ffffffffffffffffffffffffffffffffffffffff1661106a6109f2565b73ffffffffffffffffffffffffffffffffffffffff16146110c95761108d610ea8565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110c09190611dc9565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111329190611dc9565b60405180910390fd5b611146825f836113dc565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361127d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112749190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ed575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112e49190611dc9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113d6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113cd9190611d51565b60405180910390a35b50505050565b5f81036113f3576113ee838383611997565b611992565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061145857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561146d57611468838383611997565b611992565b600b5f9054906101000a900460ff1615806114ce5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061151f5750600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156115345761152f838383611997565b611992565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156115de575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90505f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561168a575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b9050600b60019054906101000a900460ff1680156116a55750815b80156116f85750600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90612286565b60405180910390fd5b81806117415750805b15611983575f8261175457600954611758565b6008545b90505f8361179b576040518060400160405280600481526020017f73656c6c000000000000000000000000000000000000000000000000000000008152506117d2565b6040518060400160405280600381526020017f62757900000000000000000000000000000000000000000000000000000000008152505b90505f61271083876117e491906122d1565b6117ee919061233f565b90505f81876117fd919061236f565b905081600a5f82825461181091906123a2565b925050819055505f8111611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090612445565b60405180910390fd5b611864898983611997565b5f821180156118c057505f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561197a576118f18960065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611997565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167f86abe71eb7f7a1790a3b8371a05b624050d7b855f145c75b63b54f3b39923de48486604051611971929190612463565b60405180910390a35b5050505061198f565b61198e858585611997565b5b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119e7578060025f8282546119db91906123a2565b92505081905550611ab5565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a70578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611a6793929190612207565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afc578060025f8282540392505081905550611b46565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ba39190611d51565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611bf282611bb0565b611bfc8185611bba565b9350611c0c818560208601611bca565b611c1581611bd8565b840191505092915050565b5f6020820190508181035f830152611c388184611be8565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c6d82611c44565b9050919050565b611c7d81611c63565b8114611c87575f5ffd5b50565b5f81359050611c9881611c74565b92915050565b5f819050919050565b611cb081611c9e565b8114611cba575f5ffd5b50565b5f81359050611ccb81611ca7565b92915050565b5f5f60408385031215611ce757611ce6611c40565b5b5f611cf485828601611c8a565b9250506020611d0585828601611cbd565b9150509250929050565b5f8115159050919050565b611d2381611d0f565b82525050565b5f602082019050611d3c5f830184611d1a565b92915050565b611d4b81611c9e565b82525050565b5f602082019050611d645f830184611d42565b92915050565b5f5f5f60608486031215611d8157611d80611c40565b5b5f611d8e86828701611c8a565b9350506020611d9f86828701611c8a565b9250506040611db086828701611cbd565b9150509250925092565b611dc381611c63565b82525050565b5f602082019050611ddc5f830184611dba565b92915050565b5f60ff82169050919050565b611df781611de2565b82525050565b5f602082019050611e105f830184611dee565b92915050565b611e1f81611d0f565b8114611e29575f5ffd5b50565b5f81359050611e3a81611e16565b92915050565b5f5f60408385031215611e5657611e55611c40565b5b5f611e6385828601611c8a565b9250506020611e7485828601611e2c565b9150509250929050565b5f60208284031215611e9357611e92611c40565b5b5f611ea084828501611cbd565b91505092915050565b5f60208284031215611ebe57611ebd611c40565b5b5f611ecb84828501611e2c565b91505092915050565b5f5f60408385031215611eea57611ee9611c40565b5b5f611ef785828601611cbd565b9250506020611f0885828601611cbd565b9150509250929050565b5f60208284031215611f2757611f26611c40565b5b5f611f3484828501611c8a565b91505092915050565b5f5f60408385031215611f5357611f52611c40565b5b5f611f6085828601611c8a565b9250506020611f7185828601611c8a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fbf57607f821691505b602082108103611fd257611fd1611f7b565b5b50919050565b7f4163636f756e742063616e6e6f74206265207a65726f206164647265737300005f82015250565b5f61200c601e83611bba565b915061201782611fd8565b602082019050919050565b5f6020820190508181035f83015261203981612000565b9050919050565b7f4275792074617820726174652065786365656473206d6178696d756d000000005f82015250565b5f612074601c83611bba565b915061207f82612040565b602082019050919050565b5f6020820190508181035f8301526120a181612068565b9050919050565b7f53656c6c2074617820726174652065786365656473206d6178696d756d0000005f82015250565b5f6120dc601d83611bba565b91506120e7826120a8565b602082019050919050565b5f6020820190508181035f830152612109816120d0565b9050919050565b5f6040820190506121235f830185611d42565b6121306020830184611d42565b9392505050565b7f506169722063616e6e6f74206265207a65726f206164647265737300000000005f82015250565b5f61216b601b83611bba565b915061217682612137565b602082019050919050565b5f6020820190508181035f8301526121988161215f565b9050919050565b7f57616c6c65742063616e6e6f74206265207a65726f20616464726573730000005f82015250565b5f6121d3601d83611bba565b91506121de8261219f565b602082019050919050565b5f6020820190508181035f830152612200816121c7565b9050919050565b5f60608201905061221a5f830186611dba565b6122276020830185611d42565b6122346040830184611d42565b949350505050565b7f50616e63616b6553776170206275792064697361626c656400000000000000005f82015250565b5f612270601883611bba565b915061227b8261223c565b602082019050919050565b5f6020820190508181035f83015261229d81612264565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6122db82611c9e565b91506122e683611c9e565b92508282026122f481611c9e565b9150828204841483151761230b5761230a6122a4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61234982611c9e565b915061235483611c9e565b92508261236457612363612312565b5b828204905092915050565b5f61237982611c9e565b915061238483611c9e565b925082820390508181111561239c5761239b6122a4565b5b92915050565b5f6123ac82611c9e565b91506123b783611c9e565b92508282019050808211156123cf576123ce6122a4565b5b92915050565b7f5472616e7366657220616d6f756e7420616674657220746178206d75737420625f8201527f652067726561746572207468616e203000000000000000000000000000000000602082015250565b5f61242f603083611bba565b915061243a826123d5565b604082019050919050565b5f6020820190508181035f83015261245c81612423565b9050919050565b5f6040820190506124765f830185611d42565b81810360208301526124888184611be8565b9050939250505056fea26469706673582212201f00917ee5f5d023295ecc6922fa4d706164cb47f3de35e5415c6cdf60a5104364736f6c634300081e0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000adb53acfa41aee120000000000000000000000000000003d292761fabc44cb5921fde1892eec628fd8b9f40000000000000000000000000000000000000000000000000000000000000003525758000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035257580000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106101cd575f3560e01c8063681fff1111610102578063a5b601be116100a0578063cb4ca6311161006f578063cb4ca631146104d1578063dd62ed3e14610501578063ea414b2814610531578063f2fde38b1461054d576101cd565b8063a5b601be14610449578063a9059cbb14610465578063b8c9d25c14610495578063bff51ef8146104b3576101cd565b8063715018a6116100dc578063715018a6146103e757806379cc6790146103f15780638da5cb5b1461040d57806395d89b411461042b576101cd565b8063681fff111461037d578063691f224f1461039957806370a08231146103b7576101cd565b806334e5ed5e1161016f57806342966c681161014957806342966c681461030b578063442567451461032757806359512ab0146103455780635cb23e1214610361576101cd565b806334e5ed5e146102c757806337bfc1ef146102d157806339fb86c5146102ef576101cd565b806323b872dd116101ab57806323b872dd1461023d57806324024efd1461026d5780632dc0562d1461028b578063313ce567146102a9576101cd565b806306fdde03146101d1578063095ea7b3146101ef57806318160ddd1461021f575b5f5ffd5b6101d9610569565b6040516101e69190611c20565b60405180910390f35b61020960048036038101906102049190611cd1565b6105f9565b6040516102169190611d29565b60405180910390f35b61022761061b565b6040516102349190611d51565b60405180910390f35b61025760048036038101906102529190611d6a565b610624565b6040516102649190611d29565b60405180910390f35b610275610652565b6040516102829190611d51565b60405180910390f35b610293610658565b6040516102a09190611dc9565b60405180910390f35b6102b161067d565b6040516102be9190611dfd565b60405180910390f35b6102cf610685565b005b6102d9610696565b6040516102e69190611d51565b60405180910390f35b61030960048036038101906103049190611e40565b61069c565b005b61032560048036038101906103209190611e7e565b6107b8565b005b61032f6107cc565b60405161033c9190611d29565b60405180910390f35b61035f600480360381019061035a9190611ea9565b6107df565b005b61037b60048036038101906103769190611ed4565b61083a565b005b61039760048036038101906103929190611ea9565b610917565b005b6103a1610974565b6040516103ae9190611d51565b60405180910390f35b6103d160048036038101906103cc9190611f12565b61097a565b6040516103de9190611d51565b60405180910390f35b6103ef6109bf565b005b61040b60048036038101906104069190611cd1565b6109d2565b005b6104156109f2565b6040516104229190611dc9565b60405180910390f35b610433610a1a565b6040516104409190611c20565b60405180910390f35b610463600480360381019061045e9190611f12565b610aaa565b005b61047f600480360381019061047a9190611cd1565b610ba6565b60405161048c9190611d29565b60405180910390f35b61049d610bc8565b6040516104aa9190611dc9565b60405180910390f35b6104bb610bed565b6040516104c89190611d29565b60405180910390f35b6104eb60048036038101906104e69190611f12565b610bff565b6040516104f89190611d29565b60405180910390f35b61051b60048036038101906105169190611f3d565b610c51565b6040516105289190611d51565b60405180910390f35b61054b60048036038101906105469190611f12565b610cd3565b005b61056760048036038101906105629190611f12565b610e24565b005b60606003805461057890611fa8565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490611fa8565b80156105ef5780601f106105c6576101008083540402835291602001916105ef565b820191905f5260205f20905b8154815290600101906020018083116105d257829003601f168201915b5050505050905090565b5f5f610603610ea8565b9050610610818585610eaf565b600191505092915050565b5f600254905090565b5f5f61062e610ea8565b905061063b858285610ec1565b610646858585610f54565b60019150509392505050565b60095481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b61068d611044565b5f600a81905550565b600a5481565b6106a4611044565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070990612022565b60405180910390fd5b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f7e9c88b87a525bea9b5a9169ddf4660ad19e19b88ea5057a584ee4d31cceec9c826040516107ac9190611d29565b60405180910390a25050565b6107c96107c3610ea8565b826110cb565b50565b600b60019054906101000a900460ff1681565b6107e7611044565b80600b5f6101000a81548160ff0219169083151502179055507ffcee2f8a7deb8619b3bf35fc6bb132f28f41cb8e3a2a2758ecc1e051fa0ce7168160405161082f9190611d29565b60405180910390a150565b610842611044565b612710821115610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e9061208a565b60405180910390fd5b6127108111156108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c3906120f2565b60405180910390fd5b81600881905550806009819055507f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba828260405161090b929190612110565b60405180910390a15050565b61091f611044565b80600b60016101000a81548160ff0219169083151502179055507ffcee2f8a7deb8619b3bf35fc6bb132f28f41cb8e3a2a2758ecc1e051fa0ce71681156040516109699190611d29565b60405180910390a150565b60085481565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109c7611044565b6109d05f61114a565b565b6109e4826109de610ea8565b83610ec1565b6109ee82826110cb565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a2990611fa8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5590611fa8565b8015610aa05780601f10610a7757610100808354040283529160200191610aa0565b820191905f5260205f20905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b610ab2611044565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612181565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fa6984d5d140544e581ce26b0a7bf128f9813dd3175f4e9f72c76d12f3c5f5a7560405160405180910390a250565b5f5f610bb0610ea8565b9050610bbd818585610f54565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900460ff1681565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cdb611044565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d40906121e9565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f1797049ec5d8ec17fdce2660fb55e33695fd7ebbdb65726cc6d171c0e1c312c760405160405180910390a250565b610e2c611044565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e9c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e939190611dc9565b60405180910390fd5b610ea58161114a565b50565b5f33905090565b610ebc838383600161120d565b505050565b5f610ecc8484610c51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610f4e5781811015610f3f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f3693929190612207565b60405180910390fd5b610f4d84848484035f61120d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc4575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fbb9190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611034575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161102b9190611dc9565b60405180910390fd5b61103f8383836113dc565b505050565b61104c610ea8565b73ffffffffffffffffffffffffffffffffffffffff1661106a6109f2565b73ffffffffffffffffffffffffffffffffffffffff16146110c95761108d610ea8565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110c09190611dc9565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111329190611dc9565b60405180910390fd5b611146825f836113dc565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361127d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112749190611dc9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112ed575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112e49190611dc9565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113d6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113cd9190611d51565b60405180910390a35b50505050565b5f81036113f3576113ee838383611997565b611992565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061145857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561146d57611468838383611997565b611992565b600b5f9054906101000a900460ff1615806114ce5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061151f5750600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156115345761152f838383611997565b611992565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156115de575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90505f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561168a575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b9050600b60019054906101000a900460ff1680156116a55750815b80156116f85750600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90612286565b60405180910390fd5b81806117415750805b15611983575f8261175457600954611758565b6008545b90505f8361179b576040518060400160405280600481526020017f73656c6c000000000000000000000000000000000000000000000000000000008152506117d2565b6040518060400160405280600381526020017f62757900000000000000000000000000000000000000000000000000000000008152505b90505f61271083876117e491906122d1565b6117ee919061233f565b90505f81876117fd919061236f565b905081600a5f82825461181091906123a2565b925050819055505f8111611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090612445565b60405180910390fd5b611864898983611997565b5f821180156118c057505f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561197a576118f18960065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611997565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167f86abe71eb7f7a1790a3b8371a05b624050d7b855f145c75b63b54f3b39923de48486604051611971929190612463565b60405180910390a35b5050505061198f565b61198e858585611997565b5b50505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119e7578060025f8282546119db91906123a2565b92505081905550611ab5565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a70578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611a6793929190612207565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611afc578060025f8282540392505081905550611b46565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ba39190611d51565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611bf282611bb0565b611bfc8185611bba565b9350611c0c818560208601611bca565b611c1581611bd8565b840191505092915050565b5f6020820190508181035f830152611c388184611be8565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c6d82611c44565b9050919050565b611c7d81611c63565b8114611c87575f5ffd5b50565b5f81359050611c9881611c74565b92915050565b5f819050919050565b611cb081611c9e565b8114611cba575f5ffd5b50565b5f81359050611ccb81611ca7565b92915050565b5f5f60408385031215611ce757611ce6611c40565b5b5f611cf485828601611c8a565b9250506020611d0585828601611cbd565b9150509250929050565b5f8115159050919050565b611d2381611d0f565b82525050565b5f602082019050611d3c5f830184611d1a565b92915050565b611d4b81611c9e565b82525050565b5f602082019050611d645f830184611d42565b92915050565b5f5f5f60608486031215611d8157611d80611c40565b5b5f611d8e86828701611c8a565b9350506020611d9f86828701611c8a565b9250506040611db086828701611cbd565b9150509250925092565b611dc381611c63565b82525050565b5f602082019050611ddc5f830184611dba565b92915050565b5f60ff82169050919050565b611df781611de2565b82525050565b5f602082019050611e105f830184611dee565b92915050565b611e1f81611d0f565b8114611e29575f5ffd5b50565b5f81359050611e3a81611e16565b92915050565b5f5f60408385031215611e5657611e55611c40565b5b5f611e6385828601611c8a565b9250506020611e7485828601611e2c565b9150509250929050565b5f60208284031215611e9357611e92611c40565b5b5f611ea084828501611cbd565b91505092915050565b5f60208284031215611ebe57611ebd611c40565b5b5f611ecb84828501611e2c565b91505092915050565b5f5f60408385031215611eea57611ee9611c40565b5b5f611ef785828601611cbd565b9250506020611f0885828601611cbd565b9150509250929050565b5f60208284031215611f2757611f26611c40565b5b5f611f3484828501611c8a565b91505092915050565b5f5f60408385031215611f5357611f52611c40565b5b5f611f6085828601611c8a565b9250506020611f7185828601611c8a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611fbf57607f821691505b602082108103611fd257611fd1611f7b565b5b50919050565b7f4163636f756e742063616e6e6f74206265207a65726f206164647265737300005f82015250565b5f61200c601e83611bba565b915061201782611fd8565b602082019050919050565b5f6020820190508181035f83015261203981612000565b9050919050565b7f4275792074617820726174652065786365656473206d6178696d756d000000005f82015250565b5f612074601c83611bba565b915061207f82612040565b602082019050919050565b5f6020820190508181035f8301526120a181612068565b9050919050565b7f53656c6c2074617820726174652065786365656473206d6178696d756d0000005f82015250565b5f6120dc601d83611bba565b91506120e7826120a8565b602082019050919050565b5f6020820190508181035f830152612109816120d0565b9050919050565b5f6040820190506121235f830185611d42565b6121306020830184611d42565b9392505050565b7f506169722063616e6e6f74206265207a65726f206164647265737300000000005f82015250565b5f61216b601b83611bba565b915061217682612137565b602082019050919050565b5f6020820190508181035f8301526121988161215f565b9050919050565b7f57616c6c65742063616e6e6f74206265207a65726f20616464726573730000005f82015250565b5f6121d3601d83611bba565b91506121de8261219f565b602082019050919050565b5f6020820190508181035f830152612200816121c7565b9050919050565b5f60608201905061221a5f830186611dba565b6122276020830185611d42565b6122346040830184611d42565b949350505050565b7f50616e63616b6553776170206275792064697361626c656400000000000000005f82015250565b5f612270601883611bba565b915061227b8261223c565b602082019050919050565b5f6020820190508181035f83015261229d81612264565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6122db82611c9e565b91506122e683611c9e565b92508282026122f481611c9e565b9150828204841483151761230b5761230a6122a4565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61234982611c9e565b915061235483611c9e565b92508261236457612363612312565b5b828204905092915050565b5f61237982611c9e565b915061238483611c9e565b925082820390508181111561239c5761239b6122a4565b5b92915050565b5f6123ac82611c9e565b91506123b783611c9e565b92508282019050808211156123cf576123ce6122a4565b5b92915050565b7f5472616e7366657220616d6f756e7420616674657220746178206d75737420625f8201527f652067726561746572207468616e203000000000000000000000000000000000602082015250565b5f61242f603083611bba565b915061243a826123d5565b604082019050919050565b5f6020820190508181035f83015261245c81612423565b9050919050565b5f6040820190506124765f830185611d42565b81810360208301526124888184611be8565b9050939250505056fea26469706673582212201f00917ee5f5d023295ecc6922fa4d706164cb47f3de35e5415c6cdf60a5104364736f6c634300081e0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000adb53acfa41aee120000000000000000000000000000003d292761fabc44cb5921fde1892eec628fd8b9f40000000000000000000000000000000000000000000000000000000000000003525758000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035257580000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): RWX
Arg [1] : symbol (string): RWX
Arg [2] : initialSupply (uint256): 210000000000000000000000000
Arg [3] : _taxWallet (address): 0x3D292761fabC44cB5921fDE1892eEC628fd8b9f4

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000adb53acfa41aee12000000
Arg [3] : 0000000000000000000000003d292761fabc44cb5921fde1892eec628fd8b9f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5257580000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5257580000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.