ETH Price: $3,251.02 (-0.24%)
Gas: 1 Gwei

Token

Sendpicks (SEND)
 

Overview

Max Total Supply

99,241,626.463270838190471579 SEND

Holders

491

Market

Price

$0.00 @ 0.000000 ETH (-0.99%)

Onchain Market Cap

$47,975.39

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,830.024758864403841328 SEND

Value
$9.59 ( ~0.00294984360086127 Eth) [0.0200%]
0xAb8F058E4602Db4631DBDAaC641F86f278Ec59a2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SENDToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : SendToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

// Importing required OpenZeppelin Contracts
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // Standard ERC20 Token Implementation
import "@openzeppelin/contracts/access/Ownable.sol"; // Access Control Contract
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; // Protection against reentrant calls
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; // Uniswap Router Interface for performing swaps
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; // Uniswap Pair Interface
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; // Uniswap Factory Interface 

contract SENDToken is ERC20, Ownable, ReentrancyGuard {
    // Buy and Sell Tax
    uint256 public constant BUY_TAX = 5;
    uint256 public constant SELL_TAX = 5;

    // Uniswap Router and Pair
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    // Array to hold all unique holders
    address[] public holders;
    mapping(address => bool) public isHolder;
    mapping(address => uint256) public holderIndex;

    // Immutable addresses for Team, Reserve Fund, Marketing, and Tax
    address public immutable teamAddress;
    address public immutable reserveFundAddress;
    address public immutable marketingAddress;
    address public immutable taxAddress;
    address public revenueDistributionAddress; // Address where the revenue will be distributed

     // Initialize the token and mint initial supply to specified addresses
constructor(
    address _initialOwner,
    address _teamAddress,
    address _reserveFundAddress,
    address _marketingAddress,
    address _taxAddress,
    address _uniswapV2Router
) ERC20("Sendpicks", "SEND") Ownable(_initialOwner) {
    uint256 totalSupply = 100_000_000 * 10**18; // Total Supply of 100 million tokens with 18 decimals
    
    // Immutable addresses
    teamAddress = _teamAddress;
    reserveFundAddress = _reserveFundAddress;
    marketingAddress = _marketingAddress;
    taxAddress = _taxAddress;

    // Minting the initial supply
    _mint(teamAddress, totalSupply * 5 / 100); // 5% to Team
    _mint(reserveFundAddress, totalSupply * 5 / 100); // 5% to Reserve Fund
    _mint(marketingAddress, totalSupply * 5 / 100); // 5% to Marketing
    _mint(msg.sender, totalSupply * 85 / 100); // 85% to the owner

    // Uniswap Router and creating a Uniswap Pair
   uniswapV2Router = IUniswapV2Router02(_uniswapV2Router);
   uniswapV2Pair = address(
       IUniswapV2Factory(IUniswapV2Router02(_uniswapV2Router).factory()).createPair(address(this), uniswapV2Router.WETH())
   );
}

// Function to set the address where the revenue will be distributed
function setRevenueDistributionAddress(address _revenueDistributionAddress) external onlyOwner {
    require(_revenueDistributionAddress != address(0), "Invalid address");
    revenueDistributionAddress = _revenueDistributionAddress;
}

    // Function to add liquidity to Uniswap Pair
    function addLiquidity(uint256 tokenAmount) external onlyOwner nonReentrant {
        _approve(address(this), address(uniswapV2Router), tokenAmount); // Approve tokens for Uniswap Router
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    // Function to allow users to swap tokens for ETH
    function swapTokensForEth(uint256 tokenAmount) external {
        require(balanceOf(msg.sender) >= tokenAmount, "Insufficient tokens"); // Ensure sender has enough tokens
        _approve(msg.sender, address(uniswapV2Router), tokenAmount); // Approve Uniswap Router to spend tokens
        
        // Specify the Path for the swap, from this token to WETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // Accept any amount of ETH
            path,
            msg.sender, // Send ETH to the sender
            block.timestamp
        );
    }


    // Override the _update function to include tax and maintain the holders list
    function _update(address from, address to, uint256 value) internal virtual override {
        uint256 taxAmount = 0;
        bool isExempt = _isExempt(from, to); // Check if the transfer is exempt from tax
        
        if (!isExempt) {
            // Determine tax amount based on whether it's a buy or sell
            if (to == uniswapV2Pair) {
                taxAmount = value * SELL_TAX / 100; // Sell Tax
            } else if (from == uniswapV2Pair) {
                taxAmount = value * BUY_TAX / 100; // Buy Tax
            }
            
            if (taxAmount > 0) {
                // Distributing tax
                uint256 amountAfterTax = value - taxAmount;
                uint256 revenueAmount = taxAmount * 2 / 100; // 2% of tax to Revenue Distribution
                uint256 remainingTax = taxAmount - revenueAmount; // Remaining tax to the Tax Address

                // Execute transfers
                super._update(from, revenueDistributionAddress, revenueAmount);
                super._update(from, taxAddress, remainingTax);
                super._update(from, to, amountAfterTax);

                // Manage Holders List
                _addHolder(from);
                _addHolder(to);
                if (balanceOf(from) == 0) _removeHolder(from);

                return;
            }
        }
        
        // If no tax or exempt, perform normal transfer
        super._update(from, to, value);

        // Manage Holders List
        _addHolder(from);
        _addHolder(to);
        if (balanceOf(from) == 0) _removeHolder(from);
    }


    // Check if the transfer is exempt from tax
    function _isExempt(address sender, address recipient) internal view returns (bool) {
        return sender == teamAddress || sender == reserveFundAddress || sender == marketingAddress ||
       recipient == teamAddress || recipient == reserveFundAddress || recipient == marketingAddress;
    }


    // Add a holder to the holders list
    function _addHolder(address account) internal {
        if (!isHolder[account] && account != address(this) && account != address(0) && account != uniswapV2Pair) {
            isHolder[account] = true;
            holders.push(account);
            holderIndex[account] = holders.length - 1;
        }
    }

    // Remove a holder from the holders list
    function _removeHolder(address account) internal {
        if (isHolder[account]) {
            uint256 index = holderIndex[account];
            if (index < holders.length - 1) {
                holders[index] = holders[holders.length - 1];
                holderIndex[holders[index]] = index;
            }
            holders.pop();
            delete holderIndex[account];
            isHolder[account] = false;
        }
    }
}

File 2 of 12 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 3 of 12 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 4 of 12 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

File 5 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

File 8 of 12 : IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (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;
    }
}

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

pragma solidity ^0.8.20;

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"address","name":"_teamAddress","type":"address"},{"internalType":"address","name":"_reserveFundAddress","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"address","name":"_uniswapV2Router","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"holders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveFundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revenueDistributionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_revenueDistributionAddress","type":"address"}],"name":"setRevenueDistributionAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"swapTokensForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

61010060405234801562000011575f80fd5b5060405162004054380380620040548339818101604052810190620000379190620011ca565b856040518060400160405280600981526020017f53656e647069636b7300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53454e44000000000000000000000000000000000000000000000000000000008152508160039081620000b59190620014c6565b508060049081620000c79190620014c6565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001349190620015bb565b60405180910390fd5b6200014e81620004ff60201b60201c565b5060016006819055505f6a52b7d2dcc80cd2e400000090508573ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508473ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508373ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508273ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250506200026660805160646005846200024e919062001603565b6200025a91906200167a565b620005c260201b60201c565b6200029660a05160646005846200027e919062001603565b6200028a91906200167a565b620005c260201b60201c565b620002c660c0516064600584620002ae919062001603565b620002ba91906200167a565b620005c260201b60201c565b620002f4336064605584620002dc919062001603565b620002e891906200167a565b620005c260201b60201c565b8160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200037e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003a49190620016b1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200042b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004519190620016b1565b6040518363ffffffff1660e01b815260040162000470929190620016e1565b6020604051808303815f875af11580156200048d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004b39190620016b1565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505062001841565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000635575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200062c9190620015bb565b60405180910390fd5b620006485f83836200064c60201b60201c565b5050565b5f80620006608585620008be60201b60201c565b905080620008575760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620006e2576064600584620006ce919062001603565b620006da91906200167a565b915062000758565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200075757606460058462000748919062001603565b6200075491906200167a565b91505b5b5f82111562000856575f82846200077091906200170c565b90505f606460028562000784919062001603565b6200079091906200167a565b90505f8185620007a191906200170c565b9050620007d788600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168462000a1560201b60201c565b620007ec8860e0518362000a1560201b60201c565b620007ff88888562000a1560201b60201c565b620008108862000c3960201b60201c565b620008218762000c3960201b60201c565b5f620008338962000e6460201b60201c565b036200084b576200084a8862000ea960201b60201c565b5b5050505050620008b9565b5b6200086a85858562000a1560201b60201c565b6200087b8562000c3960201b60201c565b6200088c8462000c3960201b60201c565b5f6200089e8662000e6460201b60201c565b03620008b657620008b58562000ea960201b60201c565b5b50505b505050565b5f60805173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000929575060a05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8062000962575060c05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806200099b575060805173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80620009d4575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8062000a0d575060c05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000a69578060025f82825462000a5c919062001746565b9250508190555062000b3a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000af5578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000aec9392919062001791565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b83578060025f828254039250508190555062000bcd565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c2c9190620017cc565b60405180910390a3505050565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801562000cbd57503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801562000cf657505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b801562000d50575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1562000e61576001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160098054905062000e1f91906200170c565b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562001162575f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050600160098054905062000f4e91906200170c565b81101562001085576009600160098054905062000f6c91906200170c565b8154811062000f805762000f7f620017e7565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166009828154811062000fbf5762000fbe620017e7565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b5f600984815481106200101f576200101e620017e7565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b60098054806200109a576200109962001814565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f90555f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505b50565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620011948262001169565b9050919050565b620011a68162001188565b8114620011b1575f80fd5b50565b5f81519050620011c4816200119b565b92915050565b5f805f805f8060c08789031215620011e757620011e662001165565b5b5f620011f689828a01620011b4565b96505060206200120989828a01620011b4565b95505060406200121c89828a01620011b4565b94505060606200122f89828a01620011b4565b93505060806200124289828a01620011b4565b92505060a06200125589828a01620011b4565b9150509295509295509295565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620012de57607f821691505b602082108103620012f457620012f362001299565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620013587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200131b565b6200136486836200131b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620013ae620013a8620013a2846200137c565b62001385565b6200137c565b9050919050565b5f819050919050565b620013c9836200138e565b620013e1620013d882620013b5565b84845462001327565b825550505050565b5f90565b620013f7620013e9565b62001404818484620013be565b505050565b5b818110156200142b576200141f5f82620013ed565b6001810190506200140a565b5050565b601f8211156200147a576200144481620012fa565b6200144f846200130c565b810160208510156200145f578190505b620014776200146e856200130c565b83018262001409565b50505b505050565b5f82821c905092915050565b5f6200149c5f19846008026200147f565b1980831691505092915050565b5f620014b683836200148b565b9150826002028217905092915050565b620014d18262001262565b67ffffffffffffffff811115620014ed57620014ec6200126c565b5b620014f98254620012c6565b620015068282856200142f565b5f60209050601f8311600181146200153c575f841562001527578287015190505b620015338582620014a9565b865550620015a2565b601f1984166200154c86620012fa565b5f5b8281101562001575578489015182556001820191506020850194506020810190506200154e565b8683101562001595578489015162001591601f8916826200148b565b8355505b6001600288020188555050505b505050505050565b620015b58162001188565b82525050565b5f602082019050620015d05f830184620015aa565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200160f826200137c565b91506200161c836200137c565b92508282026200162c816200137c565b91508282048414831517620016465762001645620015d6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62001686826200137c565b915062001693836200137c565b925082620016a657620016a56200164d565b5b828204905092915050565b5f60208284031215620016c957620016c862001165565b5b5f620016d884828501620011b4565b91505092915050565b5f604082019050620016f65f830185620015aa565b620017056020830184620015aa565b9392505050565b5f62001718826200137c565b915062001725836200137c565b925082820390508181111562001740576200173f620015d6565b5b92915050565b5f62001752826200137c565b91506200175f836200137c565b92508282019050808211156200177a5762001779620015d6565b5b92915050565b6200178b816200137c565b82525050565b5f606082019050620017a65f830186620015aa565b620017b5602083018562001780565b620017c4604083018462001780565b949350505050565b5f602082019050620017e15f83018462001780565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b60805160a05160c05160e0516127ae620018a65f395f8181610c9a015261149201525f81816109d3015281816115e401526116e601525f81816107a30152818161158e015261169001525f818161063001528181611539015261163a01526127ae5ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806354ad8aee116100f7578063b28805f411610095578063dd62ed3e1161006f578063dd62ed3e146104af578063e782b315146104df578063e9bbb040146104fd578063f2fde38b1461052d576101a7565b8063b28805f414610445578063b7bda68f14610461578063d4d7b19a1461047f576101a7565b80638da5cb5b116100d15780638da5cb5b146103bb57806395d89b41146103d9578063a5ece941146103f7578063a9059cbb14610415576101a7565b806354ad8aee1461036357806370a0823114610381578063715018a6146103b1576101a7565b806323b872dd11610164578063339f5dc61161013e578063339f5dc6146102ef57806349bd5a5e1461030b5780634b58d0bb1461032957806351c6590a14610347576101a7565b806323b872dd146102715780632a11ced0146102a1578063313ce567146102d1576101a7565b806302af37bb146101ab57806306fdde03146101c9578063095ea7b3146101e75780631694505e1461021757806318160ddd146102355780631c75f08514610253575b5f80fd5b6101b3610549565b6040516101c09190611e3c565b60405180910390f35b6101d161054e565b6040516101de9190611edf565b60405180910390f35b61020160048036038101906101fc9190611f87565b6105de565b60405161020e9190611fdf565b60405180910390f35b61021f610600565b60405161022c9190612053565b60405180910390f35b61023d610625565b60405161024a9190611e3c565b60405180910390f35b61025b61062e565b604051610268919061207b565b60405180910390f35b61028b60048036038101906102869190612094565b610652565b6040516102989190611fdf565b60405180910390f35b6102bb60048036038101906102b691906120e4565b610680565b6040516102c8919061207b565b60405180910390f35b6102d96106bb565b6040516102e6919061212a565b60405180910390f35b61030960048036038101906103049190612143565b6106c3565b005b61031361077c565b604051610320919061207b565b60405180910390f35b6103316107a1565b60405161033e919061207b565b60405180910390f35b610361600480360381019061035c91906120e4565b6107c5565b005b61036b6108bc565b6040516103789190611e3c565b60405180910390f35b61039b60048036038101906103969190612143565b6108c1565b6040516103a89190611e3c565b60405180910390f35b6103b9610906565b005b6103c3610919565b6040516103d0919061207b565b60405180910390f35b6103e1610941565b6040516103ee9190611edf565b60405180910390f35b6103ff6109d1565b60405161040c919061207b565b60405180910390f35b61042f600480360381019061042a9190611f87565b6109f5565b60405161043c9190611fdf565b60405180910390f35b61045f600480360381019061045a91906120e4565b610a17565b005b610469610c98565b604051610476919061207b565b60405180910390f35b61049960048036038101906104949190612143565b610cbc565b6040516104a69190611fdf565b60405180910390f35b6104c960048036038101906104c4919061216e565b610cd9565b6040516104d69190611e3c565b60405180910390f35b6104e7610d5b565b6040516104f4919061207b565b60405180910390f35b61051760048036038101906105129190612143565b610d80565b6040516105249190611e3c565b60405180910390f35b61054760048036038101906105429190612143565b610d95565b005b600581565b60606003805461055d906121d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610589906121d9565b80156105d45780601f106105ab576101008083540402835291602001916105d4565b820191905f5260205f20905b8154815290600101906020018083116105b757829003601f168201915b5050505050905090565b5f806105e8610e19565b90506105f5818585610e20565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8061065c610e19565b9050610669858285610e32565b610674858585610ec4565b60019150509392505050565b6009818154811061068f575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b6106cb610fb4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090612253565b60405180910390fd5b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6107cd610fb4565b6107d561103b565b6108013060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e20565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730845f8061084b610919565b426040518863ffffffff1660e01b815260040161086d969594939291906122aa565b60606040518083038185885af1158015610889573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108ae919061231d565b5050506108b961108a565b50565b600581565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61090e610fb4565b6109175f611094565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610950906121d9565b80601f016020809104026020016040519081016040528092919081815260200182805461097c906121d9565b80156109c75780601f1061099e576101008083540402835291602001916109c7565b820191905f5260205f20905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f806109ff610e19565b9050610a0c818585610ec4565b600191505092915050565b80610a21336108c1565b1015610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906123b7565b60405180910390fd5b610a8e3360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e20565b5f600267ffffffffffffffff811115610aaa57610aa96123d5565b5b604051908082528060200260200182016040528015610ad85781602001602082028036833780820191505090505b50905030815f81518110610aef57610aee612402565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb79190612443565b81600181518110610bcb57610bca612402565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8433426040518663ffffffff1660e01b8152600401610c67959493929190612525565b5f604051808303815f87803b158015610c7e575f80fd5b505af1158015610c90573d5f803e3d5ffd5b505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b602052805f5260405f205f915090505481565b610d9d610fb4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e04919061207b565b60405180910390fd5b610e1681611094565b50565b5f33905090565b610e2d8383836001611157565b505050565b5f610e3d8484610cd9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebe5781811015610eaf578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ea69392919061257d565b60405180910390fd5b610ebd84848484035f611157565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f34575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f2b919061207b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa4575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f9b919061207b565b60405180910390fd5b610faf838383611326565b505050565b610fbc610e19565b73ffffffffffffffffffffffffffffffffffffffff16610fda610919565b73ffffffffffffffffffffffffffffffffffffffff161461103957610ffd610e19565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611030919061207b565b60405180910390fd5b565b600260065403611080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906125fc565b60405180910390fd5b6002600681905550565b6001600681905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111c7575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111be919061207b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611237575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161122e919061207b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611320578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113179190611e3c565b60405180910390a35b50505050565b5f806113328585611536565b9050806114f85760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113ad57606460058461139c9190612647565b6113a691906126b5565b915061141e565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361141d5760646005846114109190612647565b61141a91906126b5565b91505b5b5f8211156114f7575f828461143391906126e5565b90505f60646002856114459190612647565b61144f91906126b5565b90505f818561145e91906126e5565b905061148c88600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461173c565b6114b7887f00000000000000000000000000000000000000000000000000000000000000008361173c565b6114c288888561173c565b6114cb88611955565b6114d487611955565b5f6114de896108c1565b036114ed576114ec88611b7a565b5b5050505050611531565b5b61150385858561173c565b61150c85611955565b61151584611955565b5f61151f866108c1565b0361152e5761152d85611b7a565b5b50505b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115dc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061163257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061168857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806116de57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061173457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361178c578060025f8282546117809190612718565b9250508190555061185a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611815578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161180c9392919061257d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a1578060025f82825403925050819055506118eb565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119489190611e3c565b60405180910390a3505050565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156119d857503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611a1057505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611a69575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611b77576001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600980549050611b3591906126e5565b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611e21575f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490506001600980549050611c1c91906126e5565b811015611d475760096001600980549050611c3791906126e5565b81548110611c4857611c47612402565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660098281548110611c8457611c83612402565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b5f60098481548110611ce157611ce0612402565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6009805480611d5957611d5861274b565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f90555f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505b50565b5f819050919050565b611e3681611e24565b82525050565b5f602082019050611e4f5f830184611e2d565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e8c578082015181840152602081019050611e71565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611eb182611e55565b611ebb8185611e5f565b9350611ecb818560208601611e6f565b611ed481611e97565b840191505092915050565b5f6020820190508181035f830152611ef78184611ea7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f2c82611f03565b9050919050565b611f3c81611f22565b8114611f46575f80fd5b50565b5f81359050611f5781611f33565b92915050565b611f6681611e24565b8114611f70575f80fd5b50565b5f81359050611f8181611f5d565b92915050565b5f8060408385031215611f9d57611f9c611eff565b5b5f611faa85828601611f49565b9250506020611fbb85828601611f73565b9150509250929050565b5f8115159050919050565b611fd981611fc5565b82525050565b5f602082019050611ff25f830184611fd0565b92915050565b5f819050919050565b5f61201b61201661201184611f03565b611ff8565b611f03565b9050919050565b5f61202c82612001565b9050919050565b5f61203d82612022565b9050919050565b61204d81612033565b82525050565b5f6020820190506120665f830184612044565b92915050565b61207581611f22565b82525050565b5f60208201905061208e5f83018461206c565b92915050565b5f805f606084860312156120ab576120aa611eff565b5b5f6120b886828701611f49565b93505060206120c986828701611f49565b92505060406120da86828701611f73565b9150509250925092565b5f602082840312156120f9576120f8611eff565b5b5f61210684828501611f73565b91505092915050565b5f60ff82169050919050565b6121248161210f565b82525050565b5f60208201905061213d5f83018461211b565b92915050565b5f6020828403121561215857612157611eff565b5b5f61216584828501611f49565b91505092915050565b5f806040838503121561218457612183611eff565b5b5f61219185828601611f49565b92505060206121a285828601611f49565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121f057607f821691505b602082108103612203576122026121ac565b5b50919050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f61223d600f83611e5f565b915061224882612209565b602082019050919050565b5f6020820190508181035f83015261226a81612231565b9050919050565b5f819050919050565b5f61229461228f61228a84612271565b611ff8565b611e24565b9050919050565b6122a48161227a565b82525050565b5f60c0820190506122bd5f83018961206c565b6122ca6020830188611e2d565b6122d7604083018761229b565b6122e4606083018661229b565b6122f1608083018561206c565b6122fe60a0830184611e2d565b979650505050505050565b5f8151905061231781611f5d565b92915050565b5f805f6060848603121561233457612333611eff565b5b5f61234186828701612309565b935050602061235286828701612309565b925050604061236386828701612309565b9150509250925092565b7f496e73756666696369656e7420746f6b656e73000000000000000000000000005f82015250565b5f6123a1601383611e5f565b91506123ac8261236d565b602082019050919050565b5f6020820190508181035f8301526123ce81612395565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061243d81611f33565b92915050565b5f6020828403121561245857612457611eff565b5b5f6124658482850161242f565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6124a081611f22565b82525050565b5f6124b18383612497565b60208301905092915050565b5f602082019050919050565b5f6124d38261246e565b6124dd8185612478565b93506124e883612488565b805f5b838110156125185781516124ff88826124a6565b975061250a836124bd565b9250506001810190506124eb565b5085935050505092915050565b5f60a0820190506125385f830188611e2d565b612545602083018761229b565b818103604083015261255781866124c9565b9050612566606083018561206c565b6125736080830184611e2d565b9695505050505050565b5f6060820190506125905f83018661206c565b61259d6020830185611e2d565b6125aa6040830184611e2d565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6125e6601f83611e5f565b91506125f1826125b2565b602082019050919050565b5f6020820190508181035f830152612613816125da565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61265182611e24565b915061265c83611e24565b925082820261266a81611e24565b915082820484148315176126815761268061261a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6126bf82611e24565b91506126ca83611e24565b9250826126da576126d9612688565b5b828204905092915050565b5f6126ef82611e24565b91506126fa83611e24565b92508282039050818111156127125761271161261a565b5b92915050565b5f61272282611e24565b915061272d83611e24565b92508282019050808211156127455761274461261a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212205d117f3cae2706f1708a752fcf7ef17e29da0ad90f0fa0a78dcbb4befead466264736f6c6343000814003300000000000000000000000003b0cc3aa9b059f9c9f815dd021162c153d5dba0000000000000000000000000eb9b6eb069c8ac30b206db0fe30f3aa66673d098000000000000000000000000661fb84b9aadd365234fe33a125ff92962a7750f000000000000000000000000cc443f90a69424b318f9259335ce81416f174a360000000000000000000000002ea46c2a78a2ef1e70b89133d0dd699b72ffb9e20000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806354ad8aee116100f7578063b28805f411610095578063dd62ed3e1161006f578063dd62ed3e146104af578063e782b315146104df578063e9bbb040146104fd578063f2fde38b1461052d576101a7565b8063b28805f414610445578063b7bda68f14610461578063d4d7b19a1461047f576101a7565b80638da5cb5b116100d15780638da5cb5b146103bb57806395d89b41146103d9578063a5ece941146103f7578063a9059cbb14610415576101a7565b806354ad8aee1461036357806370a0823114610381578063715018a6146103b1576101a7565b806323b872dd11610164578063339f5dc61161013e578063339f5dc6146102ef57806349bd5a5e1461030b5780634b58d0bb1461032957806351c6590a14610347576101a7565b806323b872dd146102715780632a11ced0146102a1578063313ce567146102d1576101a7565b806302af37bb146101ab57806306fdde03146101c9578063095ea7b3146101e75780631694505e1461021757806318160ddd146102355780631c75f08514610253575b5f80fd5b6101b3610549565b6040516101c09190611e3c565b60405180910390f35b6101d161054e565b6040516101de9190611edf565b60405180910390f35b61020160048036038101906101fc9190611f87565b6105de565b60405161020e9190611fdf565b60405180910390f35b61021f610600565b60405161022c9190612053565b60405180910390f35b61023d610625565b60405161024a9190611e3c565b60405180910390f35b61025b61062e565b604051610268919061207b565b60405180910390f35b61028b60048036038101906102869190612094565b610652565b6040516102989190611fdf565b60405180910390f35b6102bb60048036038101906102b691906120e4565b610680565b6040516102c8919061207b565b60405180910390f35b6102d96106bb565b6040516102e6919061212a565b60405180910390f35b61030960048036038101906103049190612143565b6106c3565b005b61031361077c565b604051610320919061207b565b60405180910390f35b6103316107a1565b60405161033e919061207b565b60405180910390f35b610361600480360381019061035c91906120e4565b6107c5565b005b61036b6108bc565b6040516103789190611e3c565b60405180910390f35b61039b60048036038101906103969190612143565b6108c1565b6040516103a89190611e3c565b60405180910390f35b6103b9610906565b005b6103c3610919565b6040516103d0919061207b565b60405180910390f35b6103e1610941565b6040516103ee9190611edf565b60405180910390f35b6103ff6109d1565b60405161040c919061207b565b60405180910390f35b61042f600480360381019061042a9190611f87565b6109f5565b60405161043c9190611fdf565b60405180910390f35b61045f600480360381019061045a91906120e4565b610a17565b005b610469610c98565b604051610476919061207b565b60405180910390f35b61049960048036038101906104949190612143565b610cbc565b6040516104a69190611fdf565b60405180910390f35b6104c960048036038101906104c4919061216e565b610cd9565b6040516104d69190611e3c565b60405180910390f35b6104e7610d5b565b6040516104f4919061207b565b60405180910390f35b61051760048036038101906105129190612143565b610d80565b6040516105249190611e3c565b60405180910390f35b61054760048036038101906105429190612143565b610d95565b005b600581565b60606003805461055d906121d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610589906121d9565b80156105d45780601f106105ab576101008083540402835291602001916105d4565b820191905f5260205f20905b8154815290600101906020018083116105b757829003601f168201915b5050505050905090565b5f806105e8610e19565b90506105f5818585610e20565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b7f000000000000000000000000eb9b6eb069c8ac30b206db0fe30f3aa66673d09881565b5f8061065c610e19565b9050610669858285610e32565b610674858585610ec4565b60019150509392505050565b6009818154811061068f575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b6106cb610fb4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090612253565b60405180910390fd5b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000661fb84b9aadd365234fe33a125ff92962a7750f81565b6107cd610fb4565b6107d561103b565b6108013060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e20565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730845f8061084b610919565b426040518863ffffffff1660e01b815260040161086d969594939291906122aa565b60606040518083038185885af1158015610889573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108ae919061231d565b5050506108b961108a565b50565b600581565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61090e610fb4565b6109175f611094565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610950906121d9565b80601f016020809104026020016040519081016040528092919081815260200182805461097c906121d9565b80156109c75780601f1061099e576101008083540402835291602001916109c7565b820191905f5260205f20905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b7f000000000000000000000000cc443f90a69424b318f9259335ce81416f174a3681565b5f806109ff610e19565b9050610a0c818585610ec4565b600191505092915050565b80610a21336108c1565b1015610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906123b7565b60405180910390fd5b610a8e3360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e20565b5f600267ffffffffffffffff811115610aaa57610aa96123d5565b5b604051908082528060200260200182016040528015610ad85781602001602082028036833780820191505090505b50905030815f81518110610aef57610aee612402565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb79190612443565b81600181518110610bcb57610bca612402565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8433426040518663ffffffff1660e01b8152600401610c67959493929190612525565b5f604051808303815f87803b158015610c7e575f80fd5b505af1158015610c90573d5f803e3d5ffd5b505050505050565b7f0000000000000000000000002ea46c2a78a2ef1e70b89133d0dd699b72ffb9e281565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b602052805f5260405f205f915090505481565b610d9d610fb4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e04919061207b565b60405180910390fd5b610e1681611094565b50565b5f33905090565b610e2d8383836001611157565b505050565b5f610e3d8484610cd9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ebe5781811015610eaf578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610ea69392919061257d565b60405180910390fd5b610ebd84848484035f611157565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f34575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610f2b919061207b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa4575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f9b919061207b565b60405180910390fd5b610faf838383611326565b505050565b610fbc610e19565b73ffffffffffffffffffffffffffffffffffffffff16610fda610919565b73ffffffffffffffffffffffffffffffffffffffff161461103957610ffd610e19565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611030919061207b565b60405180910390fd5b565b600260065403611080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906125fc565b60405180910390fd5b6002600681905550565b6001600681905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111c7575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111be919061207b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611237575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161122e919061207b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611320578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516113179190611e3c565b60405180910390a35b50505050565b5f806113328585611536565b9050806114f85760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113ad57606460058461139c9190612647565b6113a691906126b5565b915061141e565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361141d5760646005846114109190612647565b61141a91906126b5565b91505b5b5f8211156114f7575f828461143391906126e5565b90505f60646002856114459190612647565b61144f91906126b5565b90505f818561145e91906126e5565b905061148c88600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461173c565b6114b7887f0000000000000000000000002ea46c2a78a2ef1e70b89133d0dd699b72ffb9e28361173c565b6114c288888561173c565b6114cb88611955565b6114d487611955565b5f6114de896108c1565b036114ed576114ec88611b7a565b5b5050505050611531565b5b61150385858561173c565b61150c85611955565b61151584611955565b5f61151f866108c1565b0361152e5761152d85611b7a565b5b50505b505050565b5f7f000000000000000000000000eb9b6eb069c8ac30b206db0fe30f3aa66673d09873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115dc57507f000000000000000000000000661fb84b9aadd365234fe33a125ff92962a7750f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061163257507f000000000000000000000000cc443f90a69424b318f9259335ce81416f174a3673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061168857507f000000000000000000000000eb9b6eb069c8ac30b206db0fe30f3aa66673d09873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806116de57507f000000000000000000000000661fb84b9aadd365234fe33a125ff92962a7750f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061173457507f000000000000000000000000cc443f90a69424b318f9259335ce81416f174a3673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361178c578060025f8282546117809190612718565b9250508190555061185a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611815578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161180c9392919061257d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118a1578060025f82825403925050819055506118eb565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119489190611e3c565b60405180910390a3505050565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156119d857503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611a1057505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611a69575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611b77576001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600981908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600980549050611b3591906126e5565b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b50565b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611e21575f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490506001600980549050611c1c91906126e5565b811015611d475760096001600980549050611c3791906126e5565b81548110611c4857611c47612402565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660098281548110611c8457611c83612402565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b5f60098481548110611ce157611ce0612402565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6009805480611d5957611d5861274b565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f90555f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505b50565b5f819050919050565b611e3681611e24565b82525050565b5f602082019050611e4f5f830184611e2d565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611e8c578082015181840152602081019050611e71565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611eb182611e55565b611ebb8185611e5f565b9350611ecb818560208601611e6f565b611ed481611e97565b840191505092915050565b5f6020820190508181035f830152611ef78184611ea7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f2c82611f03565b9050919050565b611f3c81611f22565b8114611f46575f80fd5b50565b5f81359050611f5781611f33565b92915050565b611f6681611e24565b8114611f70575f80fd5b50565b5f81359050611f8181611f5d565b92915050565b5f8060408385031215611f9d57611f9c611eff565b5b5f611faa85828601611f49565b9250506020611fbb85828601611f73565b9150509250929050565b5f8115159050919050565b611fd981611fc5565b82525050565b5f602082019050611ff25f830184611fd0565b92915050565b5f819050919050565b5f61201b61201661201184611f03565b611ff8565b611f03565b9050919050565b5f61202c82612001565b9050919050565b5f61203d82612022565b9050919050565b61204d81612033565b82525050565b5f6020820190506120665f830184612044565b92915050565b61207581611f22565b82525050565b5f60208201905061208e5f83018461206c565b92915050565b5f805f606084860312156120ab576120aa611eff565b5b5f6120b886828701611f49565b93505060206120c986828701611f49565b92505060406120da86828701611f73565b9150509250925092565b5f602082840312156120f9576120f8611eff565b5b5f61210684828501611f73565b91505092915050565b5f60ff82169050919050565b6121248161210f565b82525050565b5f60208201905061213d5f83018461211b565b92915050565b5f6020828403121561215857612157611eff565b5b5f61216584828501611f49565b91505092915050565b5f806040838503121561218457612183611eff565b5b5f61219185828601611f49565b92505060206121a285828601611f49565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121f057607f821691505b602082108103612203576122026121ac565b5b50919050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f61223d600f83611e5f565b915061224882612209565b602082019050919050565b5f6020820190508181035f83015261226a81612231565b9050919050565b5f819050919050565b5f61229461228f61228a84612271565b611ff8565b611e24565b9050919050565b6122a48161227a565b82525050565b5f60c0820190506122bd5f83018961206c565b6122ca6020830188611e2d565b6122d7604083018761229b565b6122e4606083018661229b565b6122f1608083018561206c565b6122fe60a0830184611e2d565b979650505050505050565b5f8151905061231781611f5d565b92915050565b5f805f6060848603121561233457612333611eff565b5b5f61234186828701612309565b935050602061235286828701612309565b925050604061236386828701612309565b9150509250925092565b7f496e73756666696369656e7420746f6b656e73000000000000000000000000005f82015250565b5f6123a1601383611e5f565b91506123ac8261236d565b602082019050919050565b5f6020820190508181035f8301526123ce81612395565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061243d81611f33565b92915050565b5f6020828403121561245857612457611eff565b5b5f6124658482850161242f565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6124a081611f22565b82525050565b5f6124b18383612497565b60208301905092915050565b5f602082019050919050565b5f6124d38261246e565b6124dd8185612478565b93506124e883612488565b805f5b838110156125185781516124ff88826124a6565b975061250a836124bd565b9250506001810190506124eb565b5085935050505092915050565b5f60a0820190506125385f830188611e2d565b612545602083018761229b565b818103604083015261255781866124c9565b9050612566606083018561206c565b6125736080830184611e2d565b9695505050505050565b5f6060820190506125905f83018661206c565b61259d6020830185611e2d565b6125aa6040830184611e2d565b949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f6125e6601f83611e5f565b91506125f1826125b2565b602082019050919050565b5f6020820190508181035f830152612613816125da565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61265182611e24565b915061265c83611e24565b925082820261266a81611e24565b915082820484148315176126815761268061261a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6126bf82611e24565b91506126ca83611e24565b9250826126da576126d9612688565b5b828204905092915050565b5f6126ef82611e24565b91506126fa83611e24565b92508282039050818111156127125761271161261a565b5b92915050565b5f61272282611e24565b915061272d83611e24565b92508282019050808211156127455761274461261a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212205d117f3cae2706f1708a752fcf7ef17e29da0ad90f0fa0a78dcbb4befead466264736f6c63430008140033

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

00000000000000000000000003b0cc3aa9b059f9c9f815dd021162c153d5dba0000000000000000000000000eb9b6eb069c8ac30b206db0fe30f3aa66673d098000000000000000000000000661fb84b9aadd365234fe33a125ff92962a7750f000000000000000000000000cc443f90a69424b318f9259335ce81416f174a360000000000000000000000002ea46c2a78a2ef1e70b89133d0dd699b72ffb9e20000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _initialOwner (address): 0x03B0CC3aA9b059F9c9f815Dd021162C153D5dbA0
Arg [1] : _teamAddress (address): 0xeb9b6eb069C8aC30B206dB0FE30f3AA66673d098
Arg [2] : _reserveFundAddress (address): 0x661fB84B9AAdd365234fe33A125FF92962A7750f
Arg [3] : _marketingAddress (address): 0xCc443F90A69424b318F9259335cE81416F174a36
Arg [4] : _taxAddress (address): 0x2EA46C2a78A2EF1e70b89133D0dd699B72ffb9E2
Arg [5] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000003b0cc3aa9b059f9c9f815dd021162c153d5dba0
Arg [1] : 000000000000000000000000eb9b6eb069c8ac30b206db0fe30f3aa66673d098
Arg [2] : 000000000000000000000000661fb84b9aadd365234fe33a125ff92962a7750f
Arg [3] : 000000000000000000000000cc443f90a69424b318f9259335ce81416f174a36
Arg [4] : 0000000000000000000000002ea46c2a78a2ef1e70b89133d0dd699b72ffb9e2
Arg [5] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.