ETH Price: $2,429.67 (+0.29%)

Token

MoonLock (DAY7)
 

Overview

Max Total Supply

3,000,000 DAY7

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,805.14917565025295317 DAY7

Value
$0.00
0x7e3680c53e4593ed9c8661383f967b96f2961391
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:
MoonToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 12 : MoonToken.sol
/* 
TELEGRAM : https://t.me/moondeparture
    Website : https://moonlock.space
Twitter : https://x.com/moonlocktoken

Moon. Is. Programmed. 

*/


pragma solidity >=0.8.0;

import "./Uniswap/UniswapV2Router.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./SafeMath.sol";

enum Flag {
     None,
     Sell,
     Buy,
     Send
}

enum AddressType {
     Client,
     Friend,
     Naughty
}

contract MoonToken is ERC20, Ownable {
     using SafeMath for uint256;
     
     //Define the supply of FunToken:
     uint256 public _initMaxWallet;
     uint256 public _pTime;
     uint256 public _walletGrowth;

     mapping(address => uint256) public _unlockTime;
     mapping(address => bool) public _naughtyList;
     mapping(address => bool) public _whiteList;

     uint256 public _launchTime;
     uint256 public _lockTime;
     uint256 public _naughtyTax;
     uint256 public _friendlyTax;
     uint256 public _taxPercentage;
     uint256 public _calcAmount;

     IUniswapV2Router02 public swapRouter;
     address public swapPair;
     address public _deadWallet;
     address public _marketingWallet;
     address public _ownerWallet;
     address public _ownerAddress;


     modifier isOwner()
     {
          require((_ownerAddress == msg.sender || msg.sender == _ownerWallet), "Cannot access");
          _;
     }

     constructor() ERC20("MoonLock", "DAY7") Ownable(msg.sender) {
          _launchTime = 0;
          _friendlyTax = 0;
          _naughtyTax = 30;
          _taxPercentage = 1;

          // max wallet initialization
          _initMaxWallet = 3_000 * (10 ** 18);
          _pTime = 6*60*60;
          _walletGrowth = 110;
          _ownerAddress    =   msg.sender;

          // for main net
          _deadWallet      = 0x459217e59f09044054BD08b6eF1b284e907144Ce;
          _marketingWallet = 0x459217e59f09044054BD08b6eF1b284e907144Ce;
          _ownerWallet     = 0xebf8E566ca1F9274986e95563c97257663a3Ab04;
          _lockTime        = 7 * 24 * 60; // a week delay

          IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
          );
          swapPair = IUniswapV2Factory(_uniswapRouter.factory()).createPair(
            address(this),
            _uniswapRouter.WETH()
          );
          swapRouter = _uniswapRouter;

          _approve(msg.sender, address(swapRouter), type(uint256).max);
          _approve(address(this), address(swapRouter), type(uint256).max);

          _whiteList[swapPair] = true;
          _mint(msg.sender,3_000_000 * (10 ** 18));

     }

     // function handleTrading(
     function _transfer(address from, address to, uint256 amount) internal virtual override {
          require(from != address(0), "Address is not vaild");
          require(to != address(0), "Destination address is not valid");
          require(amount > 0, "Amount is Invalid");

          uint256 taxAmount = 0;
          address taxTo = _marketingWallet;
          // sell / buy 
          if(from == swapPair || to == swapPair){
               require(_launchTime != 0 , "Trading is not started yet");
               require(!(to == swapPair &&_unlockTime[from] >= block.timestamp), "Current account is locked");
               require(!(from == swapPair &&_unlockTime[to] >= block.timestamp), "Destination account is locked");

               if(to == swapPair){ //selling
                    require(_unlockTime[from] < block.timestamp, "Current account is locked");
                    taxAmount = calcTax(amount, from);
                    if(checkAddress(from) == AddressType.Naughty)
                         taxTo = _deadWallet;
               }
               if(from == swapPair){ //buying
                    taxAmount = calcTax(amount, to);
                    uint256 toAmount = balanceOf(to);
                    require(_unlockTime[to] < block.timestamp, "Destination account is locked");
                    require((toAmount+amount <= getMaxWallet()) || _whiteList[to], "Destination amount exceed MaxWallet");
               }
          }
          // transfer
          else {
               require(_unlockTime[to] < block.timestamp, "Destination account is locked");
               taxAmount = calcTax(amount, to);
          }

          if(!_whiteList[to] && to != swapPair)
               lockTokens(to, _lockTime);

          if(taxAmount > 0)
               sendTaxTo(from, taxTo, taxAmount);
          
          if(from != swapPair){
               _approve(from, to, 0);
               _approve(from, to, (amount - taxAmount));
          }
          super._transfer(from, to, (amount-taxAmount));
     }

     function getMaxWallet() public view returns(uint256) {  
          if(_launchTime == 0) return 0;
          uint256 _initialMaxWallet = _initMaxWallet;
          uint256 _timeRound = (block.timestamp - _launchTime) / _pTime;
          uint256 _maxWallet = _initialMaxWallet;      
          if(_timeRound <= 100){
               if(totalSupply() / ((_walletGrowth / 100) **_timeRound) > 0){
                    for(uint256 i = 0 ; i < _timeRound ; i = i + 1)
                         _maxWallet = _maxWallet.mul(_walletGrowth).div(100);
                    
                    if(_maxWallet >= totalSupply()){
                         _maxWallet =  totalSupply();
                    }
               } else {
                    _maxWallet =  totalSupply();
               }
          } else {
               _maxWallet =  totalSupply();
          }
          
          return _maxWallet;
     }

     function setTimeRound(uint256 hr) public onlyOwner{
          _pTime = hr * 60 * 60;
     }

     function setWalletGrowthValue(uint256 growthVal) external onlyOwner{
          _walletGrowth = growthVal;
     }

     function sendTaxTo(address from, address to, uint256 amount) public returns(bool){
          super._transfer(from, to , amount);
          return true;
     }

     function lockTokens(address account, uint256 duration) internal {
          _unlockTime[account] = block.timestamp + duration;
     }

     function unlockTokens(address account) internal returns(bool) {
          require(_unlockTime[account] < block.timestamp, "Tokens are still locked");
          _unlockTime[account] = 0;
     }

     function setLockTimeInMinute(uint256 lockTimeInMins) external onlyOwner {
          _lockTime = lockTimeInMins * 60;
     }

     function setMarketingWallet(address wallet) external onlyOwner{
          _marketingWallet = wallet;
     }

     function setDeadWallet(address wallet) external onlyOwner{
          _deadWallet = wallet;
     }

     function lightTheCandle() external onlyOwner{
          _launchTime = block.timestamp;
     }

     function setNaughtyTax(uint256 tax) external onlyOwner{
          _naughtyTax = tax;
     }

     function setFriendlyTax(uint256 tax) external onlyOwner{
          _friendlyTax = tax;
     }

     function setInitialMaxWallet(uint256 maxAmount) external onlyOwner{
          _initMaxWallet = maxAmount * (10 ** 18);
     }
     function setInitialMaxWalletPercentage(uint256 percentage) external onlyOwner{
          _initMaxWallet = totalSupply() / 1000 * percentage;
     }

     function addToNaughtList(address account) public isOwner {
          _naughtyList[account] = true;
     }

     function addWhiteList(address account) public isOwner {
          _whiteList[account] = true;
          _unlockTime[account] = block.timestamp;
     }
     
     function calcTax(uint256 amount,  address account) public view returns (uint256) {
          uint256 txPercentage = _taxPercentage;
          AddressType addressType = checkAddress(account);
          if(addressType == AddressType.Naughty) 
               txPercentage = _naughtyTax;
          else if(addressType == AddressType.Friend) 
               txPercentage = _friendlyTax;
          uint256 taxAmount = amount.mul(txPercentage).div(100); // calculate tax amount from given token amount.

          return taxAmount;
     }

     function checkAddress(address account) private view returns (AddressType){
          if(_naughtyList[account]) return AddressType.Naughty;
          else if(_whiteList[account]) return AddressType.Friend;
          return AddressType.Client;
     }

     function renounceOwnership() public virtual override onlyOwner {
          _transferOwnership(address(0));
     } 

     function transferOwnership(address newOwner) public virtual override onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
        _ownerAddress = newOwner;
    }

    function isWhitelisted(address account) public view returns(bool){
          return _whiteList[account];
    }

    function isLocked(address account) public view returns(bool){
          return _unlockTime[account] > block.timestamp;
    }

    function calc() public view returns(uint256) {
     return _calcAmount;
    }
}

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

File 7 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 8 of 12 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 9 of 12 : IUniswapV2Factory.sol
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 10 of 12 : IUniswapV2Pair.sol
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 11 of 12 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 12 of 12 : UniswapV2Router.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.8.17;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"_calcAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_friendlyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_initMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_naughtyList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_naughtyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ownerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ownerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_unlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletGrowth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToNaughtList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhiteList","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":"calc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"calcTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lightTheCandle","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendTaxTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setDeadWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setFriendlyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"setInitialMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setInitialMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lockTimeInMins","type":"uint256"}],"name":"setLockTimeInMinute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setNaughtyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"hr","type":"uint256"}],"name":"setTimeRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"growthVal","type":"uint256"}],"name":"setWalletGrowthValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50336040518060400160405280600881526020017f4d6f6f6e4c6f636b0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4441593700000000000000000000000000000000000000000000000000000000815250816003908162000090919062000df4565b508060049081620000a2919062000df4565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200011a5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000111919062000f20565b60405180910390fd5b6200012b81620005fd60201b60201c565b506000600c819055506000600f81905550601e600e81905550600160108190555068a2a15d09519be00000600681905550615460600781905550606e60088190555033601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073459217e59f09044054bd08b6ef1b284e907144ce601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073459217e59f09044054bd08b6ef1b284e907144ce601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ebf8e566ca1f9274986e95563c97257663a3ab04601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612760600d819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200031b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000341919062000f73565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cf919062000f73565b6040518363ffffffff1660e01b8152600401620003ee92919062000fa5565b6020604051808303816000875af11580156200040e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000434919062000f73565b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050a33601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006c360201b60201c565b6200055f30601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006c360201b60201c565b6001600b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005f6336a027b46536c66c8e3000000620006dd60201b60201c565b50620010a7565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006d883838360016200076a60201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007525760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000749919062000f20565b60405180910390fd5b62000766600083836200094a60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620007df5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401620007d6919062000f20565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008545760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016200084b919062000f20565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000944578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200093b919062000fe3565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620009a05780600260008282546200099391906200102f565b9250508190555062000a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000a2f578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000a26939291906200106a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ac1578060026000828254039250508190555062000b0e565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b6d919062000fe3565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bfc57607f821691505b60208210810362000c125762000c1162000bb4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c7c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c3d565b62000c88868362000c3d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cd562000ccf62000cc98462000ca0565b62000caa565b62000ca0565b9050919050565b6000819050919050565b62000cf18362000cb4565b62000d0962000d008262000cdc565b84845462000c4a565b825550505050565b600090565b62000d2062000d11565b62000d2d81848462000ce6565b505050565b5b8181101562000d555762000d4960008262000d16565b60018101905062000d33565b5050565b601f82111562000da45762000d6e8162000c18565b62000d798462000c2d565b8101602085101562000d89578190505b62000da162000d988562000c2d565b83018262000d32565b50505b505050565b600082821c905092915050565b600062000dc96000198460080262000da9565b1980831691505092915050565b600062000de4838362000db6565b9150826002028217905092915050565b62000dff8262000b7a565b67ffffffffffffffff81111562000e1b5762000e1a62000b85565b5b62000e27825462000be3565b62000e3482828562000d59565b600060209050601f83116001811462000e6c576000841562000e57578287015190505b62000e63858262000dd6565b86555062000ed3565b601f19841662000e7c8662000c18565b60005b8281101562000ea65784890151825560018201915060208501945060208101905062000e7f565b8683101562000ec6578489015162000ec2601f89168262000db6565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f088262000edb565b9050919050565b62000f1a8162000efb565b82525050565b600060208201905062000f37600083018462000f0f565b92915050565b600080fd5b62000f4d8162000efb565b811462000f5957600080fd5b50565b60008151905062000f6d8162000f42565b92915050565b60006020828403121562000f8c5762000f8b62000f3d565b5b600062000f9c8482850162000f5c565b91505092915050565b600060408201905062000fbc600083018562000f0f565b62000fcb602083018462000f0f565b9392505050565b62000fdd8162000ca0565b82525050565b600060208201905062000ffa600083018462000fd2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200103c8262000ca0565b9150620010498362000ca0565b925082820190508082111562001064576200106362001000565b5b92915050565b600060608201905062001081600083018662000f0f565b62001090602083018562000fd2565b6200109f604083018462000fd2565b949350505050565b6130ad80620010b76000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c80635e7b5f8f11610167578063a786c18b116100ce578063dd62ed3e11610087578063dd62ed3e1461081f578063e210ac2f1461084f578063e7cd4a041461086b578063e91c38e714610887578063f2fde38b146108a3578063f3071393146108bf576102a0565b8063a786c18b1461075b578063a9059cbb14610779578063b54f5ffb146107a9578063b81dadfe146107c7578063c31c9c07146107e3578063d349036114610801576102a0565b80638da5cb5b116101205780638da5cb5b146106bb5780638dcd02d1146106d957806395d89b41146106f7578063962dfc751461071557806396f1b6be146107335780639d7ae1a814610751576102a0565b80635e7b5f8f146105e757806361a60d571461061757806370a0823114610633578063715018a61461066357806379af25a61461066d578063876d01fc1461068b576102a0565b806323b872dd1161020b5780633e49f2a1116101c45780633e49f2a11461052757806344aab59a146105435780634825fc0d146105615780634a4fbeec1461057f5780635424aa42146105af5780635d098b38146105cb576102a0565b806323b872dd1461045157806326991cc8146104815780632cc778441461049f578063313ce567146104bb578063380b2080146104d95780633af32abf146104f7576102a0565b8063095ea7b31161025d578063095ea7b31461037b5780630fa604e4146103ab57806312983755146103c9578063145b4d20146103e557806318160ddd14610403578063193eff2614610421576102a0565b8063030db86b146102a557806305d60ffb146102c357806306fdde03146102f3578063075f5bc81461031157806307d729c41461032d5780630920fd8c1461035d575b600080fd5b6102ad6108dd565b6040516102ba919061259a565b60405180910390f35b6102dd60048036038101906102d89190612618565b6108e3565b6040516102ea9190612660565b60405180910390f35b6102fb610903565b604051610308919061270b565b60405180910390f35b61032b60048036038101906103269190612759565b610995565b005b61034760048036038101906103429190612618565b6109be565b604051610354919061259a565b60405180910390f35b6103656109d6565b604051610372919061259a565b60405180910390f35b61039560048036038101906103909190612786565b6109dc565b6040516103a29190612660565b60405180910390f35b6103b36109ff565b6040516103c0919061259a565b60405180910390f35b6103e360048036038101906103de9190612618565b610b07565b005b6103ed610c4a565b6040516103fa91906127d5565b60405180910390f35b61040b610c70565b604051610418919061259a565b60405180910390f35b61043b60048036038101906104369190612618565b610c7a565b6040516104489190612660565b60405180910390f35b61046b600480360381019061046691906127f0565b610c9a565b6040516104789190612660565b60405180910390f35b610489610cc9565b60405161049691906127d5565b60405180910390f35b6104b960048036038101906104b49190612759565b610cef565b005b6104c3610d20565b6040516104d0919061285f565b60405180910390f35b6104e1610d29565b6040516104ee919061259a565b60405180910390f35b610511600480360381019061050c9190612618565b610d2f565b60405161051e9190612660565b60405180910390f35b610541600480360381019061053c9190612759565b610d85565b005b61054b610d97565b604051610558919061259a565b60405180910390f35b610569610d9d565b60405161057691906127d5565b60405180910390f35b61059960048036038101906105949190612618565b610dc3565b6040516105a69190612660565b60405180910390f35b6105c960048036038101906105c49190612759565b610e0e565b005b6105e560048036038101906105e09190612618565b610e2c565b005b61060160048036038101906105fc919061287a565b610e78565b60405161060e919061259a565b60405180910390f35b610631600480360381019061062c9190612618565b610f2b565b005b61064d60048036038101906106489190612618565b610f77565b60405161065a919061259a565b60405180910390f35b61066b610fbf565b005b610675610fd3565b604051610682919061259a565b60405180910390f35b6106a560048036038101906106a091906127f0565b610fd9565b6040516106b29190612660565b60405180910390f35b6106c3610ff1565b6040516106d091906127d5565b60405180910390f35b6106e161101b565b6040516106ee919061259a565b60405180910390f35b6106ff611021565b60405161070c919061270b565b60405180910390f35b61071d6110b3565b60405161072a91906127d5565b60405180910390f35b61073b6110d9565b604051610748919061259a565b60405180910390f35b6107596110e3565b005b6107636110f4565b60405161077091906127d5565b60405180910390f35b610793600480360381019061078e9190612786565b61111a565b6040516107a09190612660565b60405180910390f35b6107b161113d565b6040516107be919061259a565b60405180910390f35b6107e160048036038101906107dc9190612759565b611143565b005b6107eb611168565b6040516107f89190612919565b60405180910390f35b61080961118e565b604051610816919061259a565b60405180910390f35b61083960048036038101906108349190612934565b611194565b604051610846919061259a565b60405180910390f35b61086960048036038101906108649190612759565b61121b565b005b61088560048036038101906108809190612618565b61122d565b005b6108a1600480360381019061089c9190612759565b6113b4565b005b6108bd60048036038101906108b89190612618565b6113c6565b005b6108c761148d565b6040516108d4919061259a565b60405180910390f35b60115481565b600b6020528060005260406000206000915054906101000a900460ff1681565b606060038054610912906129a3565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906129a3565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b61099d611493565b603c80826109ab9190612a03565b6109b59190612a03565b60078190555050565b60096020528060005260406000206000915090505481565b600c5481565b6000806109e761151a565b90506109f4818585611522565b600191505092915050565b600080600c5403610a135760009050610b04565b600060065490506000600754600c5442610a2d9190612a45565b610a379190612aa8565b9050600082905060648211610af2576000826064600854610a589190612aa8565b610a629190612c0c565b610a6a610c70565b610a749190612aa8565b1115610ae25760005b82811015610ac357610aad6064610a9f6008548561153490919063ffffffff16565b61154a90919063ffffffff16565b9150600181610abc9190612c57565b9050610a7d565b50610acc610c70565b8110610add57610ada610c70565b90505b610aed565b610aea610c70565b90505b610afd565b610afa610c70565b90505b8093505050505b90565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610bb05750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612cd7565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080610ca561151a565b9050610cb2858285611560565b610cbd8585856115f4565b60019150509392505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cf7611493565b806103e8610d03610c70565b610d0d9190612aa8565b610d179190612a03565b60068190555050565b60006012905090565b600f5481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d8d611493565b8060088190555050565b60105481565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600042600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b610e16611493565b603c81610e239190612a03565b600d8190555050565b610e34611493565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060105490506000610e8b84611eb6565b9050600280811115610ea057610e9f612cf7565b5b816002811115610eb357610eb2612cf7565b5b03610ec257600e549150610ef5565b60016002811115610ed657610ed5612cf7565b5b816002811115610ee957610ee8612cf7565b5b03610ef457600f5491505b5b6000610f1d6064610f0f858961153490919063ffffffff16565b61154a90919063ffffffff16565b905080935050505092915050565b610f33611493565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc7611493565b610fd16000611f78565b565b600d5481565b6000610fe684848461203e565b600190509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b606060048054611030906129a3565b80601f016020809104026020016040519081016040528092919081815260200182805461105c906129a3565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601154905090565b6110eb611493565b42600c81905550565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061112561151a565b90506111328185856115f4565b600191505092915050565b60075481565b61114b611493565b670de0b6b3a76400008161115f9190612a03565b60068190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611223611493565b80600f8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806112d65750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612cd7565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555042600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6113bc611493565b80600e8190555050565b6113ce611493565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114405760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161143791906127d5565b60405180910390fd5b61144981611f78565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b61149b61151a565b73ffffffffffffffffffffffffffffffffffffffff166114b9610ff1565b73ffffffffffffffffffffffffffffffffffffffff1614611518576114dc61151a565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161150f91906127d5565b60405180910390fd5b565b600033905090565b61152f8383836001612132565b505050565b600081836115429190612a03565b905092915050565b600081836115589190612aa8565b905092915050565b600061156c8484611194565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115ee57818110156115de578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016115d593929190612d26565b60405180910390fd5b6115ed84848484036000612132565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90612da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990612e15565b60405180910390fd5b60008111611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90612e81565b60405180910390fd5b600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117e65750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611cc3576000600c5403611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790612eed565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156118cc575042600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b1561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390612f59565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156119a8575042600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90612fc5565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b245742600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590612f59565b60405180910390fd5b611ac88386610e78565b9150600280811115611add57611adc612cf7565b5b611ae686611eb6565b6002811115611af857611af7612cf7565b5b03611b2357601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611cbe57611b838385610e78565b91506000611b9085610f77565b905042600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90612fc5565b60405180910390fd5b611c1b6109ff565b8482611c279190612c57565b111580611c7d5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613057565b60405180910390fd5b505b611d51565b42600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90612fc5565b60405180910390fd5b611d4e8385610e78565b91505b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611df95750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611e0b57611e0a84600d54612309565b5b6000821115611e2157611e1f858284610fd9565b505b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611e9957611e8285856000611522565b611e9885858486611e939190612a45565b611522565b5b611eaf85858486611eaa9190612a45565b61203e565b5050505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f135760029050611f73565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f6e5760019050611f73565b600090505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120b05760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016120a791906127d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121225760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161211991906127d5565b60405180910390fd5b61212d83838361235c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121a45760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161219b91906127d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122165760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161220d91906127d5565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015612303578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516122fa919061259a565b60405180910390a35b50505050565b80426123159190612c57565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ae5780600260008282546123a29190612c57565b92505081905550612481565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561243a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161243193929190612d26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ca5780600260008282540392505081905550612517565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612574919061259a565b60405180910390a3505050565b6000819050919050565b61259481612581565b82525050565b60006020820190506125af600083018461258b565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125e5826125ba565b9050919050565b6125f5816125da565b811461260057600080fd5b50565b600081359050612612816125ec565b92915050565b60006020828403121561262e5761262d6125b5565b5b600061263c84828501612603565b91505092915050565b60008115159050919050565b61265a81612645565b82525050565b60006020820190506126756000830184612651565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b557808201518184015260208101905061269a565b60008484015250505050565b6000601f19601f8301169050919050565b60006126dd8261267b565b6126e78185612686565b93506126f7818560208601612697565b612700816126c1565b840191505092915050565b6000602082019050818103600083015261272581846126d2565b905092915050565b61273681612581565b811461274157600080fd5b50565b6000813590506127538161272d565b92915050565b60006020828403121561276f5761276e6125b5565b5b600061277d84828501612744565b91505092915050565b6000806040838503121561279d5761279c6125b5565b5b60006127ab85828601612603565b92505060206127bc85828601612744565b9150509250929050565b6127cf816125da565b82525050565b60006020820190506127ea60008301846127c6565b92915050565b600080600060608486031215612809576128086125b5565b5b600061281786828701612603565b935050602061282886828701612603565b925050604061283986828701612744565b9150509250925092565b600060ff82169050919050565b61285981612843565b82525050565b60006020820190506128746000830184612850565b92915050565b60008060408385031215612891576128906125b5565b5b600061289f85828601612744565b92505060206128b085828601612603565b9150509250929050565b6000819050919050565b60006128df6128da6128d5846125ba565b6128ba565b6125ba565b9050919050565b60006128f1826128c4565b9050919050565b6000612903826128e6565b9050919050565b612913816128f8565b82525050565b600060208201905061292e600083018461290a565b92915050565b6000806040838503121561294b5761294a6125b5565b5b600061295985828601612603565b925050602061296a85828601612603565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129bb57607f821691505b6020821081036129ce576129cd612974565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a0e82612581565b9150612a1983612581565b9250828202612a2781612581565b91508282048414831517612a3e57612a3d6129d4565b5b5092915050565b6000612a5082612581565b9150612a5b83612581565b9250828203905081811115612a7357612a726129d4565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ab382612581565b9150612abe83612581565b925082612ace57612acd612a79565b5b828204905092915050565b60008160011c9050919050565b6000808291508390505b6001851115612b3057808604811115612b0c57612b0b6129d4565b5b6001851615612b1b5780820291505b8081029050612b2985612ad9565b9450612af0565b94509492505050565b600082612b495760019050612c05565b81612b575760009050612c05565b8160018114612b6d5760028114612b7757612ba6565b6001915050612c05565b60ff841115612b8957612b886129d4565b5b8360020a915084821115612ba057612b9f6129d4565b5b50612c05565b5060208310610133831016604e8410600b8410161715612bdb5782820a905083811115612bd657612bd56129d4565b5b612c05565b612be88484846001612ae6565b92509050818404811115612bff57612bfe6129d4565b5b81810290505b9392505050565b6000612c1782612581565b9150612c2283612581565b9250612c4f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612b39565b905092915050565b6000612c6282612581565b9150612c6d83612581565b9250828201905080821115612c8557612c846129d4565b5b92915050565b7f43616e6e6f742061636365737300000000000000000000000000000000000000600082015250565b6000612cc1600d83612686565b9150612ccc82612c8b565b602082019050919050565b60006020820190508181036000830152612cf081612cb4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000606082019050612d3b60008301866127c6565b612d48602083018561258b565b612d55604083018461258b565b949350505050565b7f41646472657373206973206e6f74207661696c64000000000000000000000000600082015250565b6000612d93601483612686565b9150612d9e82612d5d565b602082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f44657374696e6174696f6e2061646472657373206973206e6f742076616c6964600082015250565b6000612dff602083612686565b9150612e0a82612dc9565b602082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f416d6f756e7420697320496e76616c6964000000000000000000000000000000600082015250565b6000612e6b601183612686565b9150612e7682612e35565b602082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b7f54726164696e67206973206e6f74207374617274656420796574000000000000600082015250565b6000612ed7601a83612686565b9150612ee282612ea1565b602082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b7f43757272656e74206163636f756e74206973206c6f636b656400000000000000600082015250565b6000612f43601983612686565b9150612f4e82612f0d565b602082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b7f44657374696e6174696f6e206163636f756e74206973206c6f636b6564000000600082015250565b6000612faf601d83612686565b9150612fba82612f79565b602082019050919050565b60006020820190508181036000830152612fde81612fa2565b9050919050565b7f44657374696e6174696f6e20616d6f756e7420657863656564204d617857616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b6000613041602383612686565b915061304c82612fe5565b604082019050919050565b6000602082019050818103600083015261307081613034565b905091905056fea26469706673582212208ac7d3deff7418fd74d8a344914b9588086330b8f316bdb26c4df14175a4e97764736f6c63430008140033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c80635e7b5f8f11610167578063a786c18b116100ce578063dd62ed3e11610087578063dd62ed3e1461081f578063e210ac2f1461084f578063e7cd4a041461086b578063e91c38e714610887578063f2fde38b146108a3578063f3071393146108bf576102a0565b8063a786c18b1461075b578063a9059cbb14610779578063b54f5ffb146107a9578063b81dadfe146107c7578063c31c9c07146107e3578063d349036114610801576102a0565b80638da5cb5b116101205780638da5cb5b146106bb5780638dcd02d1146106d957806395d89b41146106f7578063962dfc751461071557806396f1b6be146107335780639d7ae1a814610751576102a0565b80635e7b5f8f146105e757806361a60d571461061757806370a0823114610633578063715018a61461066357806379af25a61461066d578063876d01fc1461068b576102a0565b806323b872dd1161020b5780633e49f2a1116101c45780633e49f2a11461052757806344aab59a146105435780634825fc0d146105615780634a4fbeec1461057f5780635424aa42146105af5780635d098b38146105cb576102a0565b806323b872dd1461045157806326991cc8146104815780632cc778441461049f578063313ce567146104bb578063380b2080146104d95780633af32abf146104f7576102a0565b8063095ea7b31161025d578063095ea7b31461037b5780630fa604e4146103ab57806312983755146103c9578063145b4d20146103e557806318160ddd14610403578063193eff2614610421576102a0565b8063030db86b146102a557806305d60ffb146102c357806306fdde03146102f3578063075f5bc81461031157806307d729c41461032d5780630920fd8c1461035d575b600080fd5b6102ad6108dd565b6040516102ba919061259a565b60405180910390f35b6102dd60048036038101906102d89190612618565b6108e3565b6040516102ea9190612660565b60405180910390f35b6102fb610903565b604051610308919061270b565b60405180910390f35b61032b60048036038101906103269190612759565b610995565b005b61034760048036038101906103429190612618565b6109be565b604051610354919061259a565b60405180910390f35b6103656109d6565b604051610372919061259a565b60405180910390f35b61039560048036038101906103909190612786565b6109dc565b6040516103a29190612660565b60405180910390f35b6103b36109ff565b6040516103c0919061259a565b60405180910390f35b6103e360048036038101906103de9190612618565b610b07565b005b6103ed610c4a565b6040516103fa91906127d5565b60405180910390f35b61040b610c70565b604051610418919061259a565b60405180910390f35b61043b60048036038101906104369190612618565b610c7a565b6040516104489190612660565b60405180910390f35b61046b600480360381019061046691906127f0565b610c9a565b6040516104789190612660565b60405180910390f35b610489610cc9565b60405161049691906127d5565b60405180910390f35b6104b960048036038101906104b49190612759565b610cef565b005b6104c3610d20565b6040516104d0919061285f565b60405180910390f35b6104e1610d29565b6040516104ee919061259a565b60405180910390f35b610511600480360381019061050c9190612618565b610d2f565b60405161051e9190612660565b60405180910390f35b610541600480360381019061053c9190612759565b610d85565b005b61054b610d97565b604051610558919061259a565b60405180910390f35b610569610d9d565b60405161057691906127d5565b60405180910390f35b61059960048036038101906105949190612618565b610dc3565b6040516105a69190612660565b60405180910390f35b6105c960048036038101906105c49190612759565b610e0e565b005b6105e560048036038101906105e09190612618565b610e2c565b005b61060160048036038101906105fc919061287a565b610e78565b60405161060e919061259a565b60405180910390f35b610631600480360381019061062c9190612618565b610f2b565b005b61064d60048036038101906106489190612618565b610f77565b60405161065a919061259a565b60405180910390f35b61066b610fbf565b005b610675610fd3565b604051610682919061259a565b60405180910390f35b6106a560048036038101906106a091906127f0565b610fd9565b6040516106b29190612660565b60405180910390f35b6106c3610ff1565b6040516106d091906127d5565b60405180910390f35b6106e161101b565b6040516106ee919061259a565b60405180910390f35b6106ff611021565b60405161070c919061270b565b60405180910390f35b61071d6110b3565b60405161072a91906127d5565b60405180910390f35b61073b6110d9565b604051610748919061259a565b60405180910390f35b6107596110e3565b005b6107636110f4565b60405161077091906127d5565b60405180910390f35b610793600480360381019061078e9190612786565b61111a565b6040516107a09190612660565b60405180910390f35b6107b161113d565b6040516107be919061259a565b60405180910390f35b6107e160048036038101906107dc9190612759565b611143565b005b6107eb611168565b6040516107f89190612919565b60405180910390f35b61080961118e565b604051610816919061259a565b60405180910390f35b61083960048036038101906108349190612934565b611194565b604051610846919061259a565b60405180910390f35b61086960048036038101906108649190612759565b61121b565b005b61088560048036038101906108809190612618565b61122d565b005b6108a1600480360381019061089c9190612759565b6113b4565b005b6108bd60048036038101906108b89190612618565b6113c6565b005b6108c761148d565b6040516108d4919061259a565b60405180910390f35b60115481565b600b6020528060005260406000206000915054906101000a900460ff1681565b606060038054610912906129a3565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906129a3565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b61099d611493565b603c80826109ab9190612a03565b6109b59190612a03565b60078190555050565b60096020528060005260406000206000915090505481565b600c5481565b6000806109e761151a565b90506109f4818585611522565b600191505092915050565b600080600c5403610a135760009050610b04565b600060065490506000600754600c5442610a2d9190612a45565b610a379190612aa8565b9050600082905060648211610af2576000826064600854610a589190612aa8565b610a629190612c0c565b610a6a610c70565b610a749190612aa8565b1115610ae25760005b82811015610ac357610aad6064610a9f6008548561153490919063ffffffff16565b61154a90919063ffffffff16565b9150600181610abc9190612c57565b9050610a7d565b50610acc610c70565b8110610add57610ada610c70565b90505b610aed565b610aea610c70565b90505b610afd565b610afa610c70565b90505b8093505050505b90565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610bb05750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612cd7565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b600080610ca561151a565b9050610cb2858285611560565b610cbd8585856115f4565b60019150509392505050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cf7611493565b806103e8610d03610c70565b610d0d9190612aa8565b610d179190612a03565b60068190555050565b60006012905090565b600f5481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d8d611493565b8060088190555050565b60105481565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600042600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b610e16611493565b603c81610e239190612a03565b600d8190555050565b610e34611493565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060105490506000610e8b84611eb6565b9050600280811115610ea057610e9f612cf7565b5b816002811115610eb357610eb2612cf7565b5b03610ec257600e549150610ef5565b60016002811115610ed657610ed5612cf7565b5b816002811115610ee957610ee8612cf7565b5b03610ef457600f5491505b5b6000610f1d6064610f0f858961153490919063ffffffff16565b61154a90919063ffffffff16565b905080935050505092915050565b610f33611493565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc7611493565b610fd16000611f78565b565b600d5481565b6000610fe684848461203e565b600190509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b606060048054611030906129a3565b80601f016020809104026020016040519081016040528092919081815260200182805461105c906129a3565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601154905090565b6110eb611493565b42600c81905550565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061112561151a565b90506111328185856115f4565b600191505092915050565b60075481565b61114b611493565b670de0b6b3a76400008161115f9190612a03565b60068190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611223611493565b80600f8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806112d65750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612cd7565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555042600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6113bc611493565b80600e8190555050565b6113ce611493565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114405760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161143791906127d5565b60405180910390fd5b61144981611f78565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b61149b61151a565b73ffffffffffffffffffffffffffffffffffffffff166114b9610ff1565b73ffffffffffffffffffffffffffffffffffffffff1614611518576114dc61151a565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161150f91906127d5565b60405180910390fd5b565b600033905090565b61152f8383836001612132565b505050565b600081836115429190612a03565b905092915050565b600081836115589190612aa8565b905092915050565b600061156c8484611194565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115ee57818110156115de578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016115d593929190612d26565b60405180910390fd5b6115ed84848484036000612132565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90612da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990612e15565b60405180910390fd5b60008111611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c90612e81565b60405180910390fd5b600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806117e65750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611cc3576000600c5403611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790612eed565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156118cc575042600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b1561190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390612f59565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156119a8575042600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90612fc5565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b245742600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590612f59565b60405180910390fd5b611ac88386610e78565b9150600280811115611add57611adc612cf7565b5b611ae686611eb6565b6002811115611af857611af7612cf7565b5b03611b2357601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611cbe57611b838385610e78565b91506000611b9085610f77565b905042600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90612fc5565b60405180910390fd5b611c1b6109ff565b8482611c279190612c57565b111580611c7d5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613057565b60405180910390fd5b505b611d51565b42600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90612fc5565b60405180910390fd5b611d4e8385610e78565b91505b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611df95750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611e0b57611e0a84600d54612309565b5b6000821115611e2157611e1f858284610fd9565b505b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611e9957611e8285856000611522565b611e9885858486611e939190612a45565b611522565b5b611eaf85858486611eaa9190612a45565b61203e565b5050505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f135760029050611f73565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f6e5760019050611f73565b600090505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120b05760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016120a791906127d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121225760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161211991906127d5565b60405180910390fd5b61212d83838361235c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121a45760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161219b91906127d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122165760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161220d91906127d5565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015612303578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516122fa919061259a565b60405180910390a35b50505050565b80426123159190612c57565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ae5780600260008282546123a29190612c57565b92505081905550612481565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561243a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161243193929190612d26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ca5780600260008282540392505081905550612517565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612574919061259a565b60405180910390a3505050565b6000819050919050565b61259481612581565b82525050565b60006020820190506125af600083018461258b565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125e5826125ba565b9050919050565b6125f5816125da565b811461260057600080fd5b50565b600081359050612612816125ec565b92915050565b60006020828403121561262e5761262d6125b5565b5b600061263c84828501612603565b91505092915050565b60008115159050919050565b61265a81612645565b82525050565b60006020820190506126756000830184612651565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b557808201518184015260208101905061269a565b60008484015250505050565b6000601f19601f8301169050919050565b60006126dd8261267b565b6126e78185612686565b93506126f7818560208601612697565b612700816126c1565b840191505092915050565b6000602082019050818103600083015261272581846126d2565b905092915050565b61273681612581565b811461274157600080fd5b50565b6000813590506127538161272d565b92915050565b60006020828403121561276f5761276e6125b5565b5b600061277d84828501612744565b91505092915050565b6000806040838503121561279d5761279c6125b5565b5b60006127ab85828601612603565b92505060206127bc85828601612744565b9150509250929050565b6127cf816125da565b82525050565b60006020820190506127ea60008301846127c6565b92915050565b600080600060608486031215612809576128086125b5565b5b600061281786828701612603565b935050602061282886828701612603565b925050604061283986828701612744565b9150509250925092565b600060ff82169050919050565b61285981612843565b82525050565b60006020820190506128746000830184612850565b92915050565b60008060408385031215612891576128906125b5565b5b600061289f85828601612744565b92505060206128b085828601612603565b9150509250929050565b6000819050919050565b60006128df6128da6128d5846125ba565b6128ba565b6125ba565b9050919050565b60006128f1826128c4565b9050919050565b6000612903826128e6565b9050919050565b612913816128f8565b82525050565b600060208201905061292e600083018461290a565b92915050565b6000806040838503121561294b5761294a6125b5565b5b600061295985828601612603565b925050602061296a85828601612603565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129bb57607f821691505b6020821081036129ce576129cd612974565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a0e82612581565b9150612a1983612581565b9250828202612a2781612581565b91508282048414831517612a3e57612a3d6129d4565b5b5092915050565b6000612a5082612581565b9150612a5b83612581565b9250828203905081811115612a7357612a726129d4565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ab382612581565b9150612abe83612581565b925082612ace57612acd612a79565b5b828204905092915050565b60008160011c9050919050565b6000808291508390505b6001851115612b3057808604811115612b0c57612b0b6129d4565b5b6001851615612b1b5780820291505b8081029050612b2985612ad9565b9450612af0565b94509492505050565b600082612b495760019050612c05565b81612b575760009050612c05565b8160018114612b6d5760028114612b7757612ba6565b6001915050612c05565b60ff841115612b8957612b886129d4565b5b8360020a915084821115612ba057612b9f6129d4565b5b50612c05565b5060208310610133831016604e8410600b8410161715612bdb5782820a905083811115612bd657612bd56129d4565b5b612c05565b612be88484846001612ae6565b92509050818404811115612bff57612bfe6129d4565b5b81810290505b9392505050565b6000612c1782612581565b9150612c2283612581565b9250612c4f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612b39565b905092915050565b6000612c6282612581565b9150612c6d83612581565b9250828201905080821115612c8557612c846129d4565b5b92915050565b7f43616e6e6f742061636365737300000000000000000000000000000000000000600082015250565b6000612cc1600d83612686565b9150612ccc82612c8b565b602082019050919050565b60006020820190508181036000830152612cf081612cb4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000606082019050612d3b60008301866127c6565b612d48602083018561258b565b612d55604083018461258b565b949350505050565b7f41646472657373206973206e6f74207661696c64000000000000000000000000600082015250565b6000612d93601483612686565b9150612d9e82612d5d565b602082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f44657374696e6174696f6e2061646472657373206973206e6f742076616c6964600082015250565b6000612dff602083612686565b9150612e0a82612dc9565b602082019050919050565b60006020820190508181036000830152612e2e81612df2565b9050919050565b7f416d6f756e7420697320496e76616c6964000000000000000000000000000000600082015250565b6000612e6b601183612686565b9150612e7682612e35565b602082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b7f54726164696e67206973206e6f74207374617274656420796574000000000000600082015250565b6000612ed7601a83612686565b9150612ee282612ea1565b602082019050919050565b60006020820190508181036000830152612f0681612eca565b9050919050565b7f43757272656e74206163636f756e74206973206c6f636b656400000000000000600082015250565b6000612f43601983612686565b9150612f4e82612f0d565b602082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b7f44657374696e6174696f6e206163636f756e74206973206c6f636b6564000000600082015250565b6000612faf601d83612686565b9150612fba82612f79565b602082019050919050565b60006020820190508181036000830152612fde81612fa2565b9050919050565b7f44657374696e6174696f6e20616d6f756e7420657863656564204d617857616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b6000613041602383612686565b915061304c82612fe5565b604082019050919050565b6000602082019050818103600083015261307081613034565b905091905056fea26469706673582212208ac7d3deff7418fd74d8a344914b9588086330b8f316bdb26c4df14175a4e97764736f6c63430008140033

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.