ETH Price: $2,489.82 (-2.21%)

Token

Wanna (WANNA)
 

Overview

Max Total Supply

100,000,000 WANNA

Holders

210 (0.00%)

Market

Price

$0.01 @ 0.000004 ETH

Onchain Market Cap

$1,005,485.20

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
297,746.839332582781105356 WANNA

Value
$2,993.80 ( ~1.2024 Eth) [0.2977%]
0x0a2667e0d480cacbd281c7c0fc53c8d41f60329d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Wanna.Bot is a platform for content creators to engage with their audience, by allowing them to wager on outcomes in sports, viral challenges & more.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 WANNA
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Wanna

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Wanna.sol
// SPDX-License-Identifier: UNLICENSED

// Website:  https://wanna.bot/
// Airdrop:  https://zealy.io/cw/wannabot/questboard
// Telegram: https://t.me/WannaBotBet
// Twitter:  https://twitter.com/wannabotbet
// Discord:  https://discord.com/invite/vjRnFRrn8b
// Blog:     https://mirror.xyz/0xDDD03b35AFB5B27a2911f9004745A83A09C671A7
// Docs:     https://docs.wanna.bot/

pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";


contract Wanna is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    mapping(address => bool) private isExcludedFromFees;
    mapping(address => bool) private automatedMarketMakerPairs;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool private swapping = false;
    bool private removeFees = false;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;
    uint256 public buyReferrerFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellBetAndBurnFee;

    uint256 public tokensForTreasury;
    uint256 public tokensForReferrer;
    uint256 public tokensForRevShare;
    uint256 public tokensForBetAndBurn;

    address public treasuryWallet      = address(0x0a89AfC483A8B629073C353a25bA1BAb25c5F4ab);
    address public referrerWallet      = address(0xABfC303Ff5392f6dEaCD4597e992a5D9b6fE53A6);
    address public revShareWallet      = address(0x5F5B95C0Ccc1fe8b519918E4dE8c48365FA387B6);
    address public betAndBurnWallet    = address(0xA9B598bc2042109f68C8792288619A67E41b4c1B);
    address public liquidityPoolWallet = address(0xD3648F4aDA865B4146A6E479b0e9e0Be8D94D605);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    
    constructor() ERC20("Wanna", "WANNA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Router = _uniswapV2Router;
    
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

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

        uint256 totalSupply = 100_000_000 * 1e18;
        
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        sellRevShareFee = 2;
        sellBetAndBurnFee = 2;
        sellTotalFees = sellRevShareFee + sellBetAndBurnFee ;

        buyTreasuryFee = 2;
        buyReferrerFee = 2;
        buyTotalFees = buyTreasuryFee + buyReferrerFee ;
        
        _mint(msg.sender, totalSupply);  
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
    }

     function _transfer(address from, address to, uint256 amount) internal override{
        require(from != address(0), "ERC20: transfer from zero address");
        require(to != address(0), "ERC20: transfer to zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
                if (!tradingActive) {
                    require(isExcludedFromFees[from] || isExcludedFromFees[to], "Trading is not active.");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (!removeFees && canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !isExcludedFromFees[from] && !isExcludedFromFees[to]) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;

        if (isExcludedFromFees[from] || isExcludedFromFees[to]) {
            takeFee = false;
        }

        if(removeFees){
            takeFee = false;
        }

        uint256 senderBalance = balanceOf(from);
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
                tokensForBetAndBurn += (fees * sellBetAndBurnFee) / sellTotalFees;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForTreasury += (fees * buyTreasuryFee) / buyTotalFees;
                tokensForReferrer += (fees * buyReferrerFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            amount -= fees;
        }

        super._transfer(from, to, amount);
    } 
        
    function swapBack() private {
        uint256 swapBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForTreasury + tokensForReferrer + tokensForRevShare + tokensForBetAndBurn;
        bool success;

        if (swapBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (swapBalance > swapTokensAtAmount * 20) {
            swapBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(swapBalance);
        uint256 ethBalance = address(this).balance;

        if (ethBalance > 0 && !removeFees) {
            uint256 ethForTreasury = ethBalance * tokensForTreasury / swapBalance;
            uint256 ethForReferrer = ethBalance * tokensForReferrer / swapBalance;
            uint256 ethForRevShare = ethBalance * tokensForRevShare / swapBalance;
            uint256 ethForBetAndBurn = ethBalance - ethForTreasury - ethForReferrer - ethForRevShare;

            (success, ) = address(treasuryWallet).call{value: ethForTreasury}("");
            (success, ) = address(referrerWallet).call{value: ethForReferrer}("");
            (success, ) = address(revShareWallet).call{value: ethForRevShare}("");
            (success, ) = address(betAndBurnWallet).call{value: ethForBetAndBurn}("");

            tokensForTreasury = 0;
            tokensForReferrer = 0;
            tokensForRevShare = 0;
            tokensForBetAndBurn = 0;
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount) external payable onlyOwner {
        require(!tradingActive, "Already launched");
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityPoolWallet,
            block.timestamp
        );
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function excludeFromFees(address account, bool value) public onlyOwner {
        isExcludedFromFees[account] = value;
    }

    function withdrawERC20() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(owner()).transfer(address(this).balance);
    }

    function withdrawETH() external onlyOwner {
        (bool success, ) = payable(owner()).call{value: address(this).balance}("");
        require(success, "Withdrawal failed");
    }

    function updateAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair!= uniswapV2Pair,"Can not change Uniswap pair");
        setAutomatedMarketMakerPair(pair,value);
    }

    function updateRemoveFees(bool remove) external onlyOwner {
        removeFees = remove;
    }

    function updateTreasuryWallet(address wallet) external onlyOwner {
        treasuryWallet = wallet;
    }

    function updateReferrerWalletWallet(address wallet) external onlyOwner {
        referrerWallet = wallet;
    }

    function updateRevShareWalletyWallet(address wallet) external onlyOwner {
        revShareWallet = wallet;
    }
    
    function updateBetAndBurnWalletWallet(address wallet) external onlyOwner {
        betAndBurnWallet = wallet;
    }

    function updateLiquidityPoolWalletWallet(address wallet) external onlyOwner {
        liquidityPoolWallet = wallet;
    }

    receive() external payable {}
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

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

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

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

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

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 4 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

File 6 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

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

File 7 of 9 : 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 8 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 9 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

Settings
{
  "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"},{"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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"amount","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":"betAndBurnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyReferrerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPoolWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referrerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBetAndBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBetAndBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReferrer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"updateAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateBetAndBurnWalletWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateLiquidityPoolWalletWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateReferrerWalletWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateRemoveFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateRevShareWalletyWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff0219169083151502179055506000600860036101000a81548160ff0219169083151502179055506000600860046101000a81548160ff021916908315150217905550730a89afc483a8b629073c353a25ba1bab25c5f4ab601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073abfc303ff5392f6deacd4597e992a5d9b6fe53a6601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735f5b95c0ccc1fe8b519918e4de8c48365fa387b6601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a9b598bc2042109f68c8792288619a67e41b4c1b601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d3648f4ada865b4146a6e479b0e9e0be8d94d605601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200024157600080fd5b506040518060400160405280600581526020017f57616e6e610000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f57414e4e410000000000000000000000000000000000000000000000000000008152508160039081620002bf919062000e62565b508060049081620002d1919062000e62565b505050620002f4620002e86200060b60201b60201c565b6200061360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200038d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b3919062000fb3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200041b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000441919062000fb3565b6040518363ffffffff1660e01b81526004016200046092919062000ff6565b6020604051808303816000875af115801562000480573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a6919062000fb3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620004ee60a0516001620006d960201b60201c565b62000510620005026200077a60201b60201c565b6001620007a460201b60201c565b62000523306001620007a460201b60201c565b6200053861dead6001620007a460201b60201c565b60006a52b7d2dcc80cd2e400000090506127106005826200055a919062001052565b620005669190620010cc565b6009819055506002600e819055506002600f81905550600f54600e546200058e919062001104565b600d819055506002600b819055506002600c81905550600c54600b54620005b6919062001104565b600a81905550620005ce33826200080f60201b60201c565b62000603306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200097c60201b60201c565b505062001392565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007b462000b4d60201b60201c565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087890620011a0565b60405180910390fd5b620008956000838362000bde60201b60201c565b8060026000828254620008a9919062001104565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200095c9190620011d3565b60405180910390a3620009786000838362000be360201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620009ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e59062001266565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5790620012fe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b409190620011d3565b60405180910390a3505050565b62000b5d6200060b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b836200077a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000bdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bd39062001370565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c6a57607f821691505b60208210810362000c805762000c7f62000c22565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cab565b62000cf6868362000cab565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d4362000d3d62000d378462000d0e565b62000d18565b62000d0e565b9050919050565b6000819050919050565b62000d5f8362000d22565b62000d7762000d6e8262000d4a565b84845462000cb8565b825550505050565b600090565b62000d8e62000d7f565b62000d9b81848462000d54565b505050565b5b8181101562000dc35762000db760008262000d84565b60018101905062000da1565b5050565b601f82111562000e125762000ddc8162000c86565b62000de78462000c9b565b8101602085101562000df7578190505b62000e0f62000e068562000c9b565b83018262000da0565b50505b505050565b600082821c905092915050565b600062000e376000198460080262000e17565b1980831691505092915050565b600062000e52838362000e24565b9150826002028217905092915050565b62000e6d8262000be8565b67ffffffffffffffff81111562000e895762000e8862000bf3565b5b62000e95825462000c51565b62000ea282828562000dc7565b600060209050601f83116001811462000eda576000841562000ec5578287015190505b62000ed1858262000e44565b86555062000f41565b601f19841662000eea8662000c86565b60005b8281101562000f145784890151825560018201915060208501945060208101905062000eed565b8683101562000f34578489015162000f30601f89168262000e24565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f7b8262000f4e565b9050919050565b62000f8d8162000f6e565b811462000f9957600080fd5b50565b60008151905062000fad8162000f82565b92915050565b60006020828403121562000fcc5762000fcb62000f49565b5b600062000fdc8482850162000f9c565b91505092915050565b62000ff08162000f6e565b82525050565b60006040820190506200100d600083018562000fe5565b6200101c602083018462000fe5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200105f8262000d0e565b91506200106c8362000d0e565b92508282026200107c8162000d0e565b9150828204841483151762001096576200109562001023565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010d98262000d0e565b9150620010e68362000d0e565b925082620010f957620010f86200109d565b5b828204905092915050565b6000620011118262000d0e565b91506200111e8362000d0e565b925082820190508082111562001139576200113862001023565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001188601f836200113f565b9150620011958262001150565b602082019050919050565b60006020820190508181036000830152620011bb8162001179565b9050919050565b620011cd8162000d0e565b82525050565b6000602082019050620011ea6000830184620011c2565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200124e6024836200113f565b91506200125b82620011f0565b604082019050919050565b6000602082019050818103600083015262001281816200123f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620012e66022836200113f565b9150620012f38262001288565b604082019050919050565b600060208201905081810360008301526200131981620012d7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013586020836200113f565b9150620013658262001320565b602082019050919050565b600060208201905081810360008301526200138b8162001349565b9050919050565b60805160a051613c7b620013db60003960008181610dfe0152610e3d015260008181610bad01528181610f31015281816129a401528181612a850152612aac0152613c7b6000f3fe6080604052600436106102b25760003560e01c8063744c8af111610175578063a9059cbb116100dc578063d02fd99811610095578063e086e5ec1161006f578063e086e5ec14610a5a578063e2f4560514610a71578063e880510014610a9c578063f2fde38b14610ac7576102b9565b8063d02fd998146109c7578063d85ba063146109f2578063dd62ed3e14610a1d576102b9565b8063a9059cbb146108b9578063abdd1b7b146108f6578063b2e3ca271461091f578063bbc0c74214610948578063c024666814610973578063cc2ffe7c1461099c576102b9565b80638a8c523c1161012e5780638a8c523c146107bd5780638da5cb5b146107d4578063924de9b7146107ff578063936557c71461082857806395d89b4114610851578063a457c2d71461087c576102b9565b8063744c8af1146106d3578063751039fc146106fe578063782c4e99146107155780637f64895914610740578063809d458d146107695780638716e1b814610792576102b9565b80634626402b116102195780635c068a8c116101d25780635c068a8c146105d55780636a486a8e146106005780636ddd17131461062b57806370a0823114610656578063715018a61461069357806374005529146106aa576102b9565b80634626402b146104e45780634710ff5b1461050f57806349bd5a5e1461053a5780634a62bb65146105655780634ec27aac1461059057806351c6590a146105b9576102b9565b806323b872dd1161026b57806323b872dd146103d257806324b9f3c11461040f5780632ed6d5e81461043a578063313ce56714610451578063395093511461047c5780633a95ac2b146104b9576102b9565b806306fdde03146102be578063095ea7b3146102e9578063163eb459146103265780631694505e1461035157806318160ddd1461037c57806319eab042146103a7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610af0565b6040516102e09190612bd2565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612c8d565b610b82565b60405161031d9190612ce8565b60405180910390f35b34801561033257600080fd5b5061033b610ba5565b6040516103489190612d12565b60405180910390f35b34801561035d57600080fd5b50610366610bab565b6040516103739190612d8c565b60405180910390f35b34801561038857600080fd5b50610391610bcf565b60405161039e9190612d12565b60405180910390f35b3480156103b357600080fd5b506103bc610bd9565b6040516103c99190612d12565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612da7565b610bdf565b6040516104069190612ce8565b60405180910390f35b34801561041b57600080fd5b50610424610c0e565b6040516104319190612d12565b60405180910390f35b34801561044657600080fd5b5061044f610c14565b005b34801561045d57600080fd5b50610466610d6a565b6040516104739190612e16565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612c8d565b610d73565b6040516104b09190612ce8565b60405180910390f35b3480156104c557600080fd5b506104ce610daa565b6040516104db9190612e40565b60405180910390f35b3480156104f057600080fd5b506104f9610dd0565b6040516105069190612e40565b60405180910390f35b34801561051b57600080fd5b50610524610df6565b6040516105319190612d12565b60405180910390f35b34801561054657600080fd5b5061054f610dfc565b60405161055c9190612e40565b60405180910390f35b34801561057157600080fd5b5061057a610e20565b6040516105879190612ce8565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190612e87565b610e33565b005b6105d360048036038101906105ce9190612ec7565b610ed7565b005b3480156105e157600080fd5b506105ea610fff565b6040516105f79190612d12565b60405180910390f35b34801561060c57600080fd5b50610615611005565b6040516106229190612d12565b60405180910390f35b34801561063757600080fd5b5061064061100b565b60405161064d9190612ce8565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612ef4565b61101e565b60405161068a9190612d12565b60405180910390f35b34801561069f57600080fd5b506106a8611066565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612ef4565b61107a565b005b3480156106df57600080fd5b506106e86110c6565b6040516106f59190612d12565b60405180910390f35b34801561070a57600080fd5b506107136110cc565b005b34801561072157600080fd5b5061072a6110f1565b6040516107379190612e40565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612ef4565b611117565b005b34801561077557600080fd5b50610790600480360381019061078b9190612ef4565b611163565b005b34801561079e57600080fd5b506107a76111af565b6040516107b49190612e40565b60405180910390f35b3480156107c957600080fd5b506107d26111d5565b005b3480156107e057600080fd5b506107e9611215565b6040516107f69190612e40565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190612f21565b61123f565b005b34801561083457600080fd5b5061084f600480360381019061084a9190612ef4565b611264565b005b34801561085d57600080fd5b506108666112b0565b6040516108739190612bd2565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190612c8d565b611342565b6040516108b09190612ce8565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612c8d565b6113b9565b6040516108ed9190612ce8565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190612f21565b6113dc565b005b34801561092b57600080fd5b5061094660048036038101906109419190612ef4565b611401565b005b34801561095457600080fd5b5061095d61144d565b60405161096a9190612ce8565b60405180910390f35b34801561097f57600080fd5b5061099a60048036038101906109959190612e87565b611460565b005b3480156109a857600080fd5b506109b16114c3565b6040516109be9190612d12565b60405180910390f35b3480156109d357600080fd5b506109dc6114c9565b6040516109e99190612e40565b60405180910390f35b3480156109fe57600080fd5b50610a076114ef565b604051610a149190612d12565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190612f4e565b6114f5565b604051610a519190612d12565b60405180910390f35b348015610a6657600080fd5b50610a6f61157c565b005b348015610a7d57600080fd5b50610a8661163a565b604051610a939190612d12565b60405180910390f35b348015610aa857600080fd5b50610ab1611640565b604051610abe9190612d12565b60405180910390f35b348015610ad357600080fd5b50610aee6004803603810190610ae99190612ef4565b611646565b005b606060038054610aff90612fbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2b90612fbd565b8015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b5050505050905090565b600080610b8d6116c9565b9050610b9a8185856116d1565b600191505092915050565b600c5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600e5481565b600080610bea6116c9565b9050610bf785828561189a565b610c02858585611926565b60019150509392505050565b60125481565b610c1c61210f565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c579190612e40565b602060405180830381865afa158015610c74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c989190613003565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610cd5929190613030565b6020604051808303816000875af1158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d18919061306e565b50610d21611215565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d66573d6000803e3d6000fd5b5050565b60006012905090565b600080610d7e6116c9565b9050610d9f818585610d9085896114f5565b610d9a91906130ca565b6116d1565b600191505092915050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600860009054906101000a900460ff1681565b610e3b61210f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec09061314a565b60405180910390fd5b610ed3828261218d565b5050565b610edf61210f565b600860019054906101000a900460ff1615610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906131b6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719343084600080601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401610fb696959493929190613211565b60606040518083038185885af1158015610fd4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ff99190613272565b50505050565b600b5481565b600d5481565b600860029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61106e61210f565b611078600061222e565b565b61108261210f565b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b6110d461210f565b6000600860006101000a81548160ff021916908315150217905550565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61111f61210f565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61116b61210f565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111dd61210f565b6001600860016101000a81548160ff0219169083151502179055506001600860026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61124761210f565b80600860026101000a81548160ff02191690831515021790555050565b61126c61210f565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600480546112bf90612fbd565b80601f01602080910402602001604051908101604052809291908181526020018280546112eb90612fbd565b80156113385780601f1061130d57610100808354040283529160200191611338565b820191906000526020600020905b81548152906001019060200180831161131b57829003601f168201915b5050505050905090565b60008061134d6116c9565b9050600061135b82866114f5565b9050838110156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613337565b60405180910390fd5b6113ad82868684036116d1565b60019250505092915050565b6000806113c46116c9565b90506113d1818585611926565b600191505092915050565b6113e461210f565b80600860046101000a81548160ff02191690831515021790555050565b61140961210f565b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860019054906101000a900460ff1681565b61146861210f565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61158461210f565b600061158e611215565b73ffffffffffffffffffffffffffffffffffffffff16476040516115b190613388565b60006040518083038185875af1925050503d80600081146115ee576040519150601f19603f3d011682016040523d82523d6000602084013e6115f3565b606091505b5050905080611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906133e9565b60405180910390fd5b50565b60095481565b60115481565b61164e61210f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061347b565b60405180910390fd5b6116c68161222e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061350d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a69061359f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161188d9190612d12565b60405180910390a3505050565b60006118a684846114f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119205781811015611912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119099061360b565b60405180910390fd5b61191f84848484036116d1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c9061369d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613709565b60405180910390fd5b60008103611a1d57611a18838360006122f4565b61210a565b600860009054906101000a900460ff1615611c3057611a3a611215565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611aa85750611a78611215565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ae15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b1b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b345750600860039054906101000a900460ff16155b15611c2f57600860019054906101000a900460ff16611c2e57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bee5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490613775565b60405180910390fd5b5b5b5b6000611c3b3061101e565b905060006009548210159050600860049054906101000a900460ff16158015611c615750805b8015611c795750600860029054906101000a900460ff165b8015611c925750600860039054906101000a900460ff16155b8015611ce85750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d3e5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d945750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611dd8576001600860036101000a81548160ff021916908315150217905550611dbc61256a565b6000600860036101000a81548160ff0219169083151502179055505b6000600860039054906101000a900460ff16159050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e8e5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e9857600090505b600860049054906101000a900460ff1615611eb257600090505b6000611ebd8761101e565b905084811015611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613807565b60405180910390fd5b600082156120f957600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f6557506000600d54115b15611ff1576064600d5487611f7a9190613827565b611f849190613898565b9050600d54600e5482611f979190613827565b611fa19190613898565b60126000828254611fb291906130ca565b92505081905550600d54600f5482611fca9190613827565b611fd49190613898565b60136000828254611fe591906130ca565b925050819055506120d5565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561204c57506000600a54115b156120d4576064600a54876120619190613827565b61206b9190613898565b9050600a54600b548261207e9190613827565b6120889190613898565b6010600082825461209991906130ca565b92505081905550600a54600c54826120b19190613827565b6120bb9190613898565b601160008282546120cc91906130ca565b925050819055505b5b60008111156120ea576120e98830836122f4565b5b80866120f691906138c9565b95505b6121048888886122f4565b50505050505b505050565b6121176116c9565b73ffffffffffffffffffffffffffffffffffffffff16612135611215565b73ffffffffffffffffffffffffffffffffffffffff161461218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290613949565b60405180910390fd5b565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235a906139db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990613a6d565b60405180910390fd5b6123dd8383836128fb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a90613807565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125519190612d12565b60405180910390a3612564848484612900565b50505050565b60006125753061101e565b9050600060135460125460115460105461258f91906130ca565b61259991906130ca565b6125a391906130ca565b90506000808314806125b55750600082145b156125c2575050506128f9565b60146009546125d19190613827565b8311156125ea5760146009546125e79190613827565b92505b6125f383612905565b60004790506000811180156126155750600860049054906101000a900460ff16155b156128f4576000846010548361262b9190613827565b6126359190613898565b9050600085601154846126489190613827565b6126529190613898565b9050600086601254856126659190613827565b61266f9190613898565b905060008183858761268191906138c9565b61268b91906138c9565b61269591906138c9565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516126dd90613388565b60006040518083038185875af1925050503d806000811461271a576040519150601f19603f3d011682016040523d82523d6000602084013e61271f565b606091505b505080965050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161276b90613388565b60006040518083038185875af1925050503d80600081146127a8576040519150601f19603f3d011682016040523d82523d6000602084013e6127ad565b606091505b505080965050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516127f990613388565b60006040518083038185875af1925050503d8060008114612836576040519150601f19603f3d011682016040523d82523d6000602084013e61283b565b606091505b505080965050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161288790613388565b60006040518083038185875af1925050503d80600081146128c4576040519150601f19603f3d011682016040523d82523d6000602084013e6128c9565b606091505b5050809650506000601081905550600060118190555060006012819055506000601381905550505050505b505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561292257612921613a8d565b5b6040519080825280602002602001820160405280156129505781602001602082028036833780820191505090505b509050308160008151811061296857612967613abc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a319190613b00565b81600181518110612a4557612a44613abc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612aaa307f0000000000000000000000000000000000000000000000000000000000000000846116d1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b0c959493929190613beb565b600060405180830381600087803b158015612b2657600080fd5b505af1158015612b3a573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b7c578082015181840152602081019050612b61565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ba482612b42565b612bae8185612b4d565b9350612bbe818560208601612b5e565b612bc781612b88565b840191505092915050565b60006020820190508181036000830152612bec8184612b99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2482612bf9565b9050919050565b612c3481612c19565b8114612c3f57600080fd5b50565b600081359050612c5181612c2b565b92915050565b6000819050919050565b612c6a81612c57565b8114612c7557600080fd5b50565b600081359050612c8781612c61565b92915050565b60008060408385031215612ca457612ca3612bf4565b5b6000612cb285828601612c42565b9250506020612cc385828601612c78565b9150509250929050565b60008115159050919050565b612ce281612ccd565b82525050565b6000602082019050612cfd6000830184612cd9565b92915050565b612d0c81612c57565b82525050565b6000602082019050612d276000830184612d03565b92915050565b6000819050919050565b6000612d52612d4d612d4884612bf9565b612d2d565b612bf9565b9050919050565b6000612d6482612d37565b9050919050565b6000612d7682612d59565b9050919050565b612d8681612d6b565b82525050565b6000602082019050612da16000830184612d7d565b92915050565b600080600060608486031215612dc057612dbf612bf4565b5b6000612dce86828701612c42565b9350506020612ddf86828701612c42565b9250506040612df086828701612c78565b9150509250925092565b600060ff82169050919050565b612e1081612dfa565b82525050565b6000602082019050612e2b6000830184612e07565b92915050565b612e3a81612c19565b82525050565b6000602082019050612e556000830184612e31565b92915050565b612e6481612ccd565b8114612e6f57600080fd5b50565b600081359050612e8181612e5b565b92915050565b60008060408385031215612e9e57612e9d612bf4565b5b6000612eac85828601612c42565b9250506020612ebd85828601612e72565b9150509250929050565b600060208284031215612edd57612edc612bf4565b5b6000612eeb84828501612c78565b91505092915050565b600060208284031215612f0a57612f09612bf4565b5b6000612f1884828501612c42565b91505092915050565b600060208284031215612f3757612f36612bf4565b5b6000612f4584828501612e72565b91505092915050565b60008060408385031215612f6557612f64612bf4565b5b6000612f7385828601612c42565b9250506020612f8485828601612c42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fd557607f821691505b602082108103612fe857612fe7612f8e565b5b50919050565b600081519050612ffd81612c61565b92915050565b60006020828403121561301957613018612bf4565b5b600061302784828501612fee565b91505092915050565b60006040820190506130456000830185612e31565b6130526020830184612d03565b9392505050565b60008151905061306881612e5b565b92915050565b60006020828403121561308457613083612bf4565b5b600061309284828501613059565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130d582612c57565b91506130e083612c57565b92508282019050808211156130f8576130f761309b565b5b92915050565b7f43616e206e6f74206368616e676520556e697377617020706169720000000000600082015250565b6000613134601b83612b4d565b915061313f826130fe565b602082019050919050565b6000602082019050818103600083015261316381613127565b9050919050565b7f416c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b60006131a0601083612b4d565b91506131ab8261316a565b602082019050919050565b600060208201905081810360008301526131cf81613193565b9050919050565b6000819050919050565b60006131fb6131f66131f1846131d6565b612d2d565b612c57565b9050919050565b61320b816131e0565b82525050565b600060c0820190506132266000830189612e31565b6132336020830188612d03565b6132406040830187613202565b61324d6060830186613202565b61325a6080830185612e31565b61326760a0830184612d03565b979650505050505050565b60008060006060848603121561328b5761328a612bf4565b5b600061329986828701612fee565b93505060206132aa86828701612fee565b92505060406132bb86828701612fee565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613321602583612b4d565b915061332c826132c5565b604082019050919050565b6000602082019050818103600083015261335081613314565b9050919050565b600081905092915050565b50565b6000613372600083613357565b915061337d82613362565b600082019050919050565b600061339382613365565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b60006133d3601183612b4d565b91506133de8261339d565b602082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613465602683612b4d565b915061347082613409565b604082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134f7602483612b4d565b91506135028261349b565b604082019050919050565b60006020820190508181036000830152613526816134ea565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613589602283612b4d565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006135f5601d83612b4d565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b7f45524332303a207472616e736665722066726f6d207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613687602183612b4d565b91506136928261362b565b604082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b7f45524332303a207472616e7366657220746f207a65726f206164647265737300600082015250565b60006136f3601f83612b4d565b91506136fe826136bd565b602082019050919050565b60006020820190508181036000830152613722816136e6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061375f601683612b4d565b915061376a82613729565b602082019050919050565b6000602082019050818103600083015261378e81613752565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137f1602683612b4d565b91506137fc82613795565b604082019050919050565b60006020820190508181036000830152613820816137e4565b9050919050565b600061383282612c57565b915061383d83612c57565b925082820261384b81612c57565b915082820484148315176138625761386161309b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138a382612c57565b91506138ae83612c57565b9250826138be576138bd613869565b5b828204905092915050565b60006138d482612c57565b91506138df83612c57565b92508282039050818111156138f7576138f661309b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613933602083612b4d565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139c5602583612b4d565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a57602383612b4d565b9150613a62826139fb565b604082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613afa81612c2b565b92915050565b600060208284031215613b1657613b15612bf4565b5b6000613b2484828501613aeb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b6281612c19565b82525050565b6000613b748383613b59565b60208301905092915050565b6000602082019050919050565b6000613b9882613b2d565b613ba28185613b38565b9350613bad83613b49565b8060005b83811015613bde578151613bc58882613b68565b9750613bd083613b80565b925050600181019050613bb1565b5085935050505092915050565b600060a082019050613c006000830188612d03565b613c0d6020830187613202565b8181036040830152613c1f8186613b8d565b9050613c2e6060830185612e31565b613c3b6080830184612d03565b969550505050505056fea2646970667358221220fe7bc441bd3167e313771ceabf6edf6c3b1ee6bb0dd317fca1f59574dea6cb5a64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c8063744c8af111610175578063a9059cbb116100dc578063d02fd99811610095578063e086e5ec1161006f578063e086e5ec14610a5a578063e2f4560514610a71578063e880510014610a9c578063f2fde38b14610ac7576102b9565b8063d02fd998146109c7578063d85ba063146109f2578063dd62ed3e14610a1d576102b9565b8063a9059cbb146108b9578063abdd1b7b146108f6578063b2e3ca271461091f578063bbc0c74214610948578063c024666814610973578063cc2ffe7c1461099c576102b9565b80638a8c523c1161012e5780638a8c523c146107bd5780638da5cb5b146107d4578063924de9b7146107ff578063936557c71461082857806395d89b4114610851578063a457c2d71461087c576102b9565b8063744c8af1146106d3578063751039fc146106fe578063782c4e99146107155780637f64895914610740578063809d458d146107695780638716e1b814610792576102b9565b80634626402b116102195780635c068a8c116101d25780635c068a8c146105d55780636a486a8e146106005780636ddd17131461062b57806370a0823114610656578063715018a61461069357806374005529146106aa576102b9565b80634626402b146104e45780634710ff5b1461050f57806349bd5a5e1461053a5780634a62bb65146105655780634ec27aac1461059057806351c6590a146105b9576102b9565b806323b872dd1161026b57806323b872dd146103d257806324b9f3c11461040f5780632ed6d5e81461043a578063313ce56714610451578063395093511461047c5780633a95ac2b146104b9576102b9565b806306fdde03146102be578063095ea7b3146102e9578063163eb459146103265780631694505e1461035157806318160ddd1461037c57806319eab042146103a7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610af0565b6040516102e09190612bd2565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612c8d565b610b82565b60405161031d9190612ce8565b60405180910390f35b34801561033257600080fd5b5061033b610ba5565b6040516103489190612d12565b60405180910390f35b34801561035d57600080fd5b50610366610bab565b6040516103739190612d8c565b60405180910390f35b34801561038857600080fd5b50610391610bcf565b60405161039e9190612d12565b60405180910390f35b3480156103b357600080fd5b506103bc610bd9565b6040516103c99190612d12565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190612da7565b610bdf565b6040516104069190612ce8565b60405180910390f35b34801561041b57600080fd5b50610424610c0e565b6040516104319190612d12565b60405180910390f35b34801561044657600080fd5b5061044f610c14565b005b34801561045d57600080fd5b50610466610d6a565b6040516104739190612e16565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612c8d565b610d73565b6040516104b09190612ce8565b60405180910390f35b3480156104c557600080fd5b506104ce610daa565b6040516104db9190612e40565b60405180910390f35b3480156104f057600080fd5b506104f9610dd0565b6040516105069190612e40565b60405180910390f35b34801561051b57600080fd5b50610524610df6565b6040516105319190612d12565b60405180910390f35b34801561054657600080fd5b5061054f610dfc565b60405161055c9190612e40565b60405180910390f35b34801561057157600080fd5b5061057a610e20565b6040516105879190612ce8565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190612e87565b610e33565b005b6105d360048036038101906105ce9190612ec7565b610ed7565b005b3480156105e157600080fd5b506105ea610fff565b6040516105f79190612d12565b60405180910390f35b34801561060c57600080fd5b50610615611005565b6040516106229190612d12565b60405180910390f35b34801561063757600080fd5b5061064061100b565b60405161064d9190612ce8565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612ef4565b61101e565b60405161068a9190612d12565b60405180910390f35b34801561069f57600080fd5b506106a8611066565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612ef4565b61107a565b005b3480156106df57600080fd5b506106e86110c6565b6040516106f59190612d12565b60405180910390f35b34801561070a57600080fd5b506107136110cc565b005b34801561072157600080fd5b5061072a6110f1565b6040516107379190612e40565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190612ef4565b611117565b005b34801561077557600080fd5b50610790600480360381019061078b9190612ef4565b611163565b005b34801561079e57600080fd5b506107a76111af565b6040516107b49190612e40565b60405180910390f35b3480156107c957600080fd5b506107d26111d5565b005b3480156107e057600080fd5b506107e9611215565b6040516107f69190612e40565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190612f21565b61123f565b005b34801561083457600080fd5b5061084f600480360381019061084a9190612ef4565b611264565b005b34801561085d57600080fd5b506108666112b0565b6040516108739190612bd2565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190612c8d565b611342565b6040516108b09190612ce8565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612c8d565b6113b9565b6040516108ed9190612ce8565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190612f21565b6113dc565b005b34801561092b57600080fd5b5061094660048036038101906109419190612ef4565b611401565b005b34801561095457600080fd5b5061095d61144d565b60405161096a9190612ce8565b60405180910390f35b34801561097f57600080fd5b5061099a60048036038101906109959190612e87565b611460565b005b3480156109a857600080fd5b506109b16114c3565b6040516109be9190612d12565b60405180910390f35b3480156109d357600080fd5b506109dc6114c9565b6040516109e99190612e40565b60405180910390f35b3480156109fe57600080fd5b50610a076114ef565b604051610a149190612d12565b60405180910390f35b348015610a2957600080fd5b50610a446004803603810190610a3f9190612f4e565b6114f5565b604051610a519190612d12565b60405180910390f35b348015610a6657600080fd5b50610a6f61157c565b005b348015610a7d57600080fd5b50610a8661163a565b604051610a939190612d12565b60405180910390f35b348015610aa857600080fd5b50610ab1611640565b604051610abe9190612d12565b60405180910390f35b348015610ad357600080fd5b50610aee6004803603810190610ae99190612ef4565b611646565b005b606060038054610aff90612fbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2b90612fbd565b8015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b5050505050905090565b600080610b8d6116c9565b9050610b9a8185856116d1565b600191505092915050565b600c5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600e5481565b600080610bea6116c9565b9050610bf785828561189a565b610c02858585611926565b60019150509392505050565b60125481565b610c1c61210f565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c579190612e40565b602060405180830381865afa158015610c74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c989190613003565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610cd5929190613030565b6020604051808303816000875af1158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d18919061306e565b50610d21611215565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d66573d6000803e3d6000fd5b5050565b60006012905090565b600080610d7e6116c9565b9050610d9f818585610d9085896114f5565b610d9a91906130ca565b6116d1565b600191505092915050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b7f0000000000000000000000006e12cfec68bc86d831ea79b4de26d6effc852c3881565b600860009054906101000a900460ff1681565b610e3b61210f565b7f0000000000000000000000006e12cfec68bc86d831ea79b4de26d6effc852c3873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec09061314a565b60405180910390fd5b610ed3828261218d565b5050565b610edf61210f565b600860019054906101000a900460ff1615610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f26906131b6565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719343084600080601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401610fb696959493929190613211565b60606040518083038185885af1158015610fd4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ff99190613272565b50505050565b600b5481565b600d5481565b600860029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61106e61210f565b611078600061222e565b565b61108261210f565b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b6110d461210f565b6000600860006101000a81548160ff021916908315150217905550565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61111f61210f565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61116b61210f565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111dd61210f565b6001600860016101000a81548160ff0219169083151502179055506001600860026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61124761210f565b80600860026101000a81548160ff02191690831515021790555050565b61126c61210f565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600480546112bf90612fbd565b80601f01602080910402602001604051908101604052809291908181526020018280546112eb90612fbd565b80156113385780601f1061130d57610100808354040283529160200191611338565b820191906000526020600020905b81548152906001019060200180831161131b57829003601f168201915b5050505050905090565b60008061134d6116c9565b9050600061135b82866114f5565b9050838110156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613337565b60405180910390fd5b6113ad82868684036116d1565b60019250505092915050565b6000806113c46116c9565b90506113d1818585611926565b600191505092915050565b6113e461210f565b80600860046101000a81548160ff02191690831515021790555050565b61140961210f565b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860019054906101000a900460ff1681565b61146861210f565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61158461210f565b600061158e611215565b73ffffffffffffffffffffffffffffffffffffffff16476040516115b190613388565b60006040518083038185875af1925050503d80600081146115ee576040519150601f19603f3d011682016040523d82523d6000602084013e6115f3565b606091505b5050905080611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e906133e9565b60405180910390fd5b50565b60095481565b60115481565b61164e61210f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061347b565b60405180910390fd5b6116c68161222e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061350d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a69061359f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161188d9190612d12565b60405180910390a3505050565b60006118a684846114f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119205781811015611912576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119099061360b565b60405180910390fd5b61191f84848484036116d1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c9061369d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613709565b60405180910390fd5b60008103611a1d57611a18838360006122f4565b61210a565b600860009054906101000a900460ff1615611c3057611a3a611215565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611aa85750611a78611215565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ae15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b1b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b345750600860039054906101000a900460ff16155b15611c2f57600860019054906101000a900460ff16611c2e57600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bee5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2490613775565b60405180910390fd5b5b5b5b6000611c3b3061101e565b905060006009548210159050600860049054906101000a900460ff16158015611c615750805b8015611c795750600860029054906101000a900460ff165b8015611c925750600860039054906101000a900460ff16155b8015611ce85750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d3e5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d945750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611dd8576001600860036101000a81548160ff021916908315150217905550611dbc61256a565b6000600860036101000a81548160ff0219169083151502179055505b6000600860039054906101000a900460ff16159050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e8e5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e9857600090505b600860049054906101000a900460ff1615611eb257600090505b6000611ebd8761101e565b905084811015611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613807565b60405180910390fd5b600082156120f957600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f6557506000600d54115b15611ff1576064600d5487611f7a9190613827565b611f849190613898565b9050600d54600e5482611f979190613827565b611fa19190613898565b60126000828254611fb291906130ca565b92505081905550600d54600f5482611fca9190613827565b611fd49190613898565b60136000828254611fe591906130ca565b925050819055506120d5565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561204c57506000600a54115b156120d4576064600a54876120619190613827565b61206b9190613898565b9050600a54600b548261207e9190613827565b6120889190613898565b6010600082825461209991906130ca565b92505081905550600a54600c54826120b19190613827565b6120bb9190613898565b601160008282546120cc91906130ca565b925050819055505b5b60008111156120ea576120e98830836122f4565b5b80866120f691906138c9565b95505b6121048888886122f4565b50505050505b505050565b6121176116c9565b73ffffffffffffffffffffffffffffffffffffffff16612135611215565b73ffffffffffffffffffffffffffffffffffffffff161461218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290613949565b60405180910390fd5b565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235a906139db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990613a6d565b60405180910390fd5b6123dd8383836128fb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a90613807565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125519190612d12565b60405180910390a3612564848484612900565b50505050565b60006125753061101e565b9050600060135460125460115460105461258f91906130ca565b61259991906130ca565b6125a391906130ca565b90506000808314806125b55750600082145b156125c2575050506128f9565b60146009546125d19190613827565b8311156125ea5760146009546125e79190613827565b92505b6125f383612905565b60004790506000811180156126155750600860049054906101000a900460ff16155b156128f4576000846010548361262b9190613827565b6126359190613898565b9050600085601154846126489190613827565b6126529190613898565b9050600086601254856126659190613827565b61266f9190613898565b905060008183858761268191906138c9565b61268b91906138c9565b61269591906138c9565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516126dd90613388565b60006040518083038185875af1925050503d806000811461271a576040519150601f19603f3d011682016040523d82523d6000602084013e61271f565b606091505b505080965050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161276b90613388565b60006040518083038185875af1925050503d80600081146127a8576040519150601f19603f3d011682016040523d82523d6000602084013e6127ad565b606091505b505080965050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516127f990613388565b60006040518083038185875af1925050503d8060008114612836576040519150601f19603f3d011682016040523d82523d6000602084013e61283b565b606091505b505080965050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161288790613388565b60006040518083038185875af1925050503d80600081146128c4576040519150601f19603f3d011682016040523d82523d6000602084013e6128c9565b606091505b5050809650506000601081905550600060118190555060006012819055506000601381905550505050505b505050505b565b505050565b505050565b6000600267ffffffffffffffff81111561292257612921613a8d565b5b6040519080825280602002602001820160405280156129505781602001602082028036833780820191505090505b509050308160008151811061296857612967613abc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a319190613b00565b81600181518110612a4557612a44613abc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612aaa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116d1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b0c959493929190613beb565b600060405180830381600087803b158015612b2657600080fd5b505af1158015612b3a573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b7c578082015181840152602081019050612b61565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ba482612b42565b612bae8185612b4d565b9350612bbe818560208601612b5e565b612bc781612b88565b840191505092915050565b60006020820190508181036000830152612bec8184612b99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2482612bf9565b9050919050565b612c3481612c19565b8114612c3f57600080fd5b50565b600081359050612c5181612c2b565b92915050565b6000819050919050565b612c6a81612c57565b8114612c7557600080fd5b50565b600081359050612c8781612c61565b92915050565b60008060408385031215612ca457612ca3612bf4565b5b6000612cb285828601612c42565b9250506020612cc385828601612c78565b9150509250929050565b60008115159050919050565b612ce281612ccd565b82525050565b6000602082019050612cfd6000830184612cd9565b92915050565b612d0c81612c57565b82525050565b6000602082019050612d276000830184612d03565b92915050565b6000819050919050565b6000612d52612d4d612d4884612bf9565b612d2d565b612bf9565b9050919050565b6000612d6482612d37565b9050919050565b6000612d7682612d59565b9050919050565b612d8681612d6b565b82525050565b6000602082019050612da16000830184612d7d565b92915050565b600080600060608486031215612dc057612dbf612bf4565b5b6000612dce86828701612c42565b9350506020612ddf86828701612c42565b9250506040612df086828701612c78565b9150509250925092565b600060ff82169050919050565b612e1081612dfa565b82525050565b6000602082019050612e2b6000830184612e07565b92915050565b612e3a81612c19565b82525050565b6000602082019050612e556000830184612e31565b92915050565b612e6481612ccd565b8114612e6f57600080fd5b50565b600081359050612e8181612e5b565b92915050565b60008060408385031215612e9e57612e9d612bf4565b5b6000612eac85828601612c42565b9250506020612ebd85828601612e72565b9150509250929050565b600060208284031215612edd57612edc612bf4565b5b6000612eeb84828501612c78565b91505092915050565b600060208284031215612f0a57612f09612bf4565b5b6000612f1884828501612c42565b91505092915050565b600060208284031215612f3757612f36612bf4565b5b6000612f4584828501612e72565b91505092915050565b60008060408385031215612f6557612f64612bf4565b5b6000612f7385828601612c42565b9250506020612f8485828601612c42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fd557607f821691505b602082108103612fe857612fe7612f8e565b5b50919050565b600081519050612ffd81612c61565b92915050565b60006020828403121561301957613018612bf4565b5b600061302784828501612fee565b91505092915050565b60006040820190506130456000830185612e31565b6130526020830184612d03565b9392505050565b60008151905061306881612e5b565b92915050565b60006020828403121561308457613083612bf4565b5b600061309284828501613059565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130d582612c57565b91506130e083612c57565b92508282019050808211156130f8576130f761309b565b5b92915050565b7f43616e206e6f74206368616e676520556e697377617020706169720000000000600082015250565b6000613134601b83612b4d565b915061313f826130fe565b602082019050919050565b6000602082019050818103600083015261316381613127565b9050919050565b7f416c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b60006131a0601083612b4d565b91506131ab8261316a565b602082019050919050565b600060208201905081810360008301526131cf81613193565b9050919050565b6000819050919050565b60006131fb6131f66131f1846131d6565b612d2d565b612c57565b9050919050565b61320b816131e0565b82525050565b600060c0820190506132266000830189612e31565b6132336020830188612d03565b6132406040830187613202565b61324d6060830186613202565b61325a6080830185612e31565b61326760a0830184612d03565b979650505050505050565b60008060006060848603121561328b5761328a612bf4565b5b600061329986828701612fee565b93505060206132aa86828701612fee565b92505060406132bb86828701612fee565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613321602583612b4d565b915061332c826132c5565b604082019050919050565b6000602082019050818103600083015261335081613314565b9050919050565b600081905092915050565b50565b6000613372600083613357565b915061337d82613362565b600082019050919050565b600061339382613365565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b60006133d3601183612b4d565b91506133de8261339d565b602082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613465602683612b4d565b915061347082613409565b604082019050919050565b6000602082019050818103600083015261349481613458565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134f7602483612b4d565b91506135028261349b565b604082019050919050565b60006020820190508181036000830152613526816134ea565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613589602283612b4d565b91506135948261352d565b604082019050919050565b600060208201905081810360008301526135b88161357c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006135f5601d83612b4d565b9150613600826135bf565b602082019050919050565b60006020820190508181036000830152613624816135e8565b9050919050565b7f45524332303a207472616e736665722066726f6d207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613687602183612b4d565b91506136928261362b565b604082019050919050565b600060208201905081810360008301526136b68161367a565b9050919050565b7f45524332303a207472616e7366657220746f207a65726f206164647265737300600082015250565b60006136f3601f83612b4d565b91506136fe826136bd565b602082019050919050565b60006020820190508181036000830152613722816136e6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061375f601683612b4d565b915061376a82613729565b602082019050919050565b6000602082019050818103600083015261378e81613752565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006137f1602683612b4d565b91506137fc82613795565b604082019050919050565b60006020820190508181036000830152613820816137e4565b9050919050565b600061383282612c57565b915061383d83612c57565b925082820261384b81612c57565b915082820484148315176138625761386161309b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138a382612c57565b91506138ae83612c57565b9250826138be576138bd613869565b5b828204905092915050565b60006138d482612c57565b91506138df83612c57565b92508282039050818111156138f7576138f661309b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613933602083612b4d565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139c5602583612b4d565b91506139d082613969565b604082019050919050565b600060208201905081810360008301526139f4816139b8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a57602383612b4d565b9150613a62826139fb565b604082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613afa81612c2b565b92915050565b600060208284031215613b1657613b15612bf4565b5b6000613b2484828501613aeb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b6281612c19565b82525050565b6000613b748383613b59565b60208301905092915050565b6000602082019050919050565b6000613b9882613b2d565b613ba28185613b38565b9350613bad83613b49565b8060005b83811015613bde578151613bc58882613b68565b9750613bd083613b80565b925050600181019050613bb1565b5085935050505092915050565b600060a082019050613c006000830188612d03565b613c0d6020830187613202565b8181036040830152613c1f8186613b8d565b9050613c2e6060830185612e31565b613c3b6080830184612d03565b969550505050505056fea2646970667358221220fe7bc441bd3167e313771ceabf6edf6c3b1ee6bb0dd317fca1f59574dea6cb5a64736f6c63430008130033

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.