ETH Price: $2,945.46 (-5.61%)
Gas: 8 Gwei

Token

The Official MINE Token (MINE)
 

Overview

Max Total Supply

1,000,000,000,000,000 MINE

Holders

611 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,223,200,000,000.00000143 MINE

Value
$0.00
0x78815067c3926cc33f7790d87460bec779f42d4d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

: MINE provides several revenue streams to holders including: 6% ETH reflections on all transactions, buybacks of the token from the profits derived from the mining rigs operated by the project, the purchasing of more rigs, plus burns of the buybacks, effectively decreasing the supply over time.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheOfficialMINEToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 9 of 12: MINE.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: Apache-2.0

import "./SafeMath.sol";
import "./Address.sol";
import "./RewardsToken.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router.sol";
import "./IRewardsTracker.sol";

contract TheOfficialMINEToken is RewardsToken {
    using SafeMath for uint256;
    using Address for address;
    
    // Supply, limits and fees
    uint256 private constant REWARDS_TRACKER_IDENTIFIER = 3;
    uint256 private constant TOTAL_SUPPLY = 1000000000000000 * (10**9);

    uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); // 2%

    uint256 private platformFee = 75; //  0.75%
    uint256 private _previousPlatformFee = platformFee;

    uint256 public devFee = 525; // 5.25%
    uint256 private _previousDevFee = devFee;
    
    uint256 public rewardsFee = 600; // 6%
    uint256 private _previousRewardsFee = rewardsFee;

    uint256 public launchSellFee = 800; // 8%
    uint256 private _previousLaunchSellFee = launchSellFee;

    address payable private _platformWalletAddress =
        payable(0xDfA14c05571bb126BFaF7e3E87BA375e7690dbb0);
    address payable private _devWalletAddress =
        payable(0x579d8da6a0efc9d99E4Ae9551D2d550ac3Adec1d);

    uint256 public launchSellFeeDeadline = 0;

    IRewardsTracker private _rewardsTracker;

    // Fallback to generic transfer. On by default
    bool public useGenericTransfer = true;
    
    // Exclusions
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;
    
    // Token -> ETH swap support
    IUniswapV2Router public uniswapV2Router;
    address public uniswapV2Pair;

    bool currentlySwapping;
    bool public swapAndRedirectEthFeesEnabled = true;

    uint256 private minTokensBeforeSwap = 100000000000 * 10**9;

    // Events and modifiers
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndRedirectEthFeesUpdated(bool enabled);
    event OnSwapAndRedirectEthFees(
        uint256 tokensSwapped,
        uint256 ethToDevWallet
    );
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    event GenericTransferChanged(bool useGenericTransfer);
    event ExcludeFromFees(address wallet);
    event IncludeInFees(address wallet);
    event DevWalletUpdated(address newDevWallet);
    event RewardsTrackerUpdated(address newRewardsTracker);
    event RouterUpdated(address newRouterAddress);
    event FeesChanged(uint256 newDevFee, uint256 newRewardsFee);
    event LaunchFeeUpdated(uint256 newLaunchSellFee);

    modifier lockTheSwap() {
        currentlySwapping = true;
        _;
        currentlySwapping = false;
    }

    constructor() ERC20("The Official MINE Token", "MINE") {
        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        // mint supply
        _mint(owner(), TOTAL_SUPPLY);

        // exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        
        // exclude from rewards
        excludeFromRewards(address(this));
        excludeFromRewards(address(0xdead));
        excludeFromRewards(uniswapV2Pair);

        // sell penalty for the first 24 hours
        launchSellFeeDeadline = block.timestamp + 3 days;
    }
    
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        // fallback implementation
        if (useGenericTransfer) {
            super._transfer(from, to, amount);
            return;
        }

        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount"
            );
        }

        // sell penalty
        uint256 baseDevFee = devFee;
        if (launchSellFeeDeadline >= block.timestamp && to == uniswapV2Pair) {
            devFee = devFee.add(launchSellFee);
        }

        // start swap to ETH
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !currentlySwapping &&
            from != uniswapV2Pair &&
            swapAndRedirectEthFeesEnabled
        ) {
            // add dev fee
            swapAndRedirectEthFees(contractTokenBalance);
        }

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            removeAllFee();
        }

        (uint256 tTransferAmount, uint256 tFee) = _getValues(amount);
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(tTransferAmount);

        _takeFee(tFee);

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            restoreAllFee();
        }

        // restore dev fee
        devFee = baseDevFee;

        emit Transfer(from, to, tTransferAmount);
    }

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _getValues(uint256 tAmount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 tFee = calculateFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _takeFee(uint256 fee) private {
        _balances[address(this)] = _balances[address(this)].add(fee);
    }

    function calculateFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        uint256 totalFee = devFee.add(rewardsFee).add(platformFee);
        return _amount.mul(totalFee).div(10000);
    }

    function removeAllFee() private {
        if (devFee == 0 && rewardsFee == 0 && platformFee == 0) return;

        _previousPlatformFee = platformFee;
        _previousDevFee = devFee;
        _previousRewardsFee = rewardsFee;

        platformFee = 0;
        devFee = 0;
        rewardsFee = 0;
    }

    function restoreAllFee() private {
        platformFee = _previousPlatformFee;
        devFee = _previousDevFee;
        rewardsFee = _previousRewardsFee;
    }

    function swapAndRedirectEthFees(uint256 contractTokenBalance)
        private
        lockTheSwap
    {
        uint256 totalRedirectFee = devFee.add(rewardsFee).add(platformFee);
        if (totalRedirectFee == 0) return;
        
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(contractTokenBalance);

        uint256 newBalance = address(this).balance.sub(initialBalance);

        if (newBalance > 0) {
            // send to platform wallet
            uint256 platformBalance = newBalance.mul(platformFee).div(totalRedirectFee);
            sendEthToWallet(_platformWalletAddress, platformBalance);

            //
            // send to rewards wallet
            //
            uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee);
            if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) {
                try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {}
            }
            
            //
            // send to dev wallet
            //
            uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee);
            sendEthToWallet(_devWalletAddress, devBalance);

            emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance);
        }
    }

    function sendEthToWallet(address wallet, uint256 amount) private {
        if (amount > 0) {
            payable(wallet).transfer(amount);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function setUseGenericTransfer(bool genericTransfer) external onlyOwner {
        useGenericTransfer = genericTransfer;
        emit GenericTransferChanged(genericTransfer);
    }
    
    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000);
        emit MaxTxAmountUpdated(maxTxAmount);
    }
    
    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
        emit ExcludeFromFees(account);
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
        emit IncludeInFees(account);
    }

    function setFees(uint256 newDevFee, uint256 newRewardsFee) external onlyOwner {
        require(newDevFee <= 1000 && newRewardsFee <= 1000, "Fees exceed maximum allowed value");
        devFee = newDevFee;
        rewardsFee = newRewardsFee;
        emit FeesChanged(newDevFee, newRewardsFee);
    }

    function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner {
        require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%");
        launchSellFee = newLaunchSellFee;
        emit LaunchFeeUpdated(newLaunchSellFee);
    }

    function setDevWallet(address payable newDevWallet)
        external
        onlyOwner
    {
        _devWalletAddress = newDevWallet;
        emit DevWalletUpdated(newDevWallet);
    }
    
    function setRewardsTracker(address payable newRewardsTracker)
        external
        onlyOwner
    {
        _rewardsTracker = IRewardsTracker(newRewardsTracker);
        emit RewardsTrackerUpdated(newRewardsTracker);
    }

    function setRouterAddress(address newRouter) external onlyOwner {
        IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory())
            .createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
        emit RouterUpdated(newRouter);
    }

    function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner {
        swapAndRedirectEthFeesEnabled = enabled;
        emit SwapAndRedirectEthFeesUpdated(enabled);
    }

    function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner {
        minTokensBeforeSwap = minTokens * 10**9;
        emit MinTokensBeforeSwapUpdated(minTokens);
    }
    
    // emergency claim functions
    function manualSwap() external onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner {
        uint256 contractEthBalance = address(this).balance;
        sendEthToWallet(_devWalletAddress, contractEthBalance);
    }
}

File 1 of 12: Address.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 12: Context.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 12: ERC20.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
import "./SafeMath.sol";
import "./Address.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 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 to 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 {}
}

File 4 of 12: IERC20.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

File 5 of 12: IERC20Metadata.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

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 6 of 12: IRewardsTracker.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: Apache-2.0

interface IRewardsTracker {
    
    function addAllocation(uint identifier) external payable;
}

File 7 of 12: IUniswapV2Factory.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: MIT

interface IUniswapV2Factory {

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

File 8 of 12: IUniswapV2Router.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: MIT

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

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

File 10 of 12: Ownable.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: MIT

import "./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.
 */
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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() external virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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) external virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 11 of 12: RewardsToken.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: Apache-2.0

import "./ERC20.sol";
import "./Ownable.sol";

abstract contract RewardsToken is ERC20, Ownable {

    address[] private excludedFromRewards;
    mapping(address => bool) private isAddressExcluded;
    
    event ExcludeFromRewards(address wallet);
    event IncludeInRewards(address wallet);
    
    function deleteExcluded(uint index) internal {
        require(index < excludedFromRewards.length, "Index is greater than array length");
        excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1];
        excludedFromRewards.pop();
    }
    
    function getExcludedBalances() internal view returns (uint256) {
        uint256 totalExcludedHoldings = 0;
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            totalExcludedHoldings += balanceOf(excludedFromRewards[i]);
        }
        return totalExcludedHoldings;
    }
    
    function excludeFromRewards(address wallet) public onlyOwner {
        require(!isAddressExcluded[wallet], "Address is already excluded from rewards");
        excludedFromRewards.push(wallet);
        isAddressExcluded[wallet] = true;
        emit ExcludeFromRewards(wallet);
    }
    
    function includeInRewards(address wallet) external onlyOwner {
        require(isAddressExcluded[wallet], "Address is not excluded from rewards");
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            if (excludedFromRewards[i] == wallet) {
                isAddressExcluded[wallet] = false;
                deleteExcluded(i);
                break;
            }
        }
        emit IncludeInRewards(wallet);
    }
    
    function isExcludedFromRewards(address wallet) external view returns (bool) {
        return isAddressExcluded[wallet];
    }
    
    function getAllExcludedFromRewards() external view returns (address[] memory) {
        return excludedFromRewards;
    }
    
    function getRewardsSupply() public view returns (uint256) {
        return _totalSupply - getExcludedBalances();
    }
}

File 12 of 12: SafeMath.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

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":false,"internalType":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"useGenericTransfer","type":"bool"}],"name":"GenericTransferChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","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":false,"internalType":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"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":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"setRewardsTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"genericTransfer","type":"bool"}],"name":"setUseGenericTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useGenericTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000446103e862000030600269d3c21bcecceda1000000620004b160201b6200163f1790919060201c565b6200054560201b620016c51790919060201c565b600855604b6009819055600a5561020d600b819055600c55610258600d819055600e55610320600f819055601055601180546001600160a01b031990811673dfa14c05571bb126bfaf7e3e87ba375e7690dbb0179091556012805490911673579d8da6a0efc9d99e4ae9551d2d550ac3adec1d17905560006013556014805460ff60a01b1916600160a01b1790556018805460ff60a81b1916600160a81b17905568056bc75e2d63100000601955348015620000ff57600080fd5b50604080518082018252601781527f546865204f6666696369616c204d494e4520546f6b656e0000000000000000006020808301918252835180850190945260048452634d494e4560e01b9084015281519192916200016191600391620008a0565b50805162000177906004906020840190620008a0565b50505060006200018c6200058f60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022d57600080fd5b505afa15801562000242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000268919062000946565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b157600080fd5b505afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec919062000946565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200033557600080fd5b505af11580156200034a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000370919062000946565b601880546001600160a01b03199081166001600160a01b039384161790915560178054909116838316179055600554620003b6911669d3c21bcecceda100000062000593565b600160156000620003cf6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080549092166001908117909255601690620004286005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530808252601690935220805490921660011790915562000474906200068f565b6200048161dead6200068f565b60185462000498906001600160a01b03166200068f565b620004a7426203f480620009c5565b6013555062000a76565b600082620004c2575060006200053f565b6000620004d0838562000a01565b905082620004df8583620009e0565b146200053c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b60006200053c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200080160201b60201c565b3390565b6001600160a01b038216620005eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000533565b62000607816002546200083d60201b620017071790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200063a918390620017076200083d821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000533565b6001600160a01b03811660009081526007602052604090205460ff1615620007675760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b606482015260840162000533565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b60008183620008255760405162461bcd60e51b81526004016200053391906200096f565b506000620008348486620009e0565b95945050505050565b6000806200084c8385620009c5565b9050838110156200053c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000533565b828054620008ae9062000a23565b90600052602060002090601f016020900481019282620008d257600085556200091d565b82601f10620008ed57805160ff19168380011785556200091d565b828001600101855582156200091d579182015b828111156200091d57825182559160200191906001019062000900565b506200092b9291506200092f565b5090565b5b808211156200092b576000815560010162000930565b60006020828403121562000958578081fd5b81516001600160a01b03811681146200053c578182fd5b6000602080835283518082850152825b818110156200099d578581018301518582016040015282016200097f565b81811115620009af5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115620009db57620009db62000a60565b500190565b600082620009fc57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000a1e5762000a1e62000a60565b500290565b600181811c9082168062000a3857607f821691505b6020821081141562000a5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6127828062000a866000396000f3fe6080604052600436106102555760003560e01c80636827e76411610139578063ada46d0a116100b6578063dd62ed3e1161007a578063dd62ed3e14610708578063e89bcca21461074e578063ea2f0b371461076e578063f2fde38b1461078e578063f4293890146107ae578063fffa1dd9146107c357600080fd5b8063ada46d0a14610670578063af01f2b214610692578063b609995e146106a8578063ba385abb146106c8578063d543dbeb146106e857600080fd5b80638da5cb5b116100fd5780638da5cb5b146105dc57806395d89b41146105fa57806398850b641461060f578063a457c2d714610630578063a9059cbb1461065057600080fd5b80636827e7641461054557806370a082311461055b578063715018a6146105915780638421b507146105a65780638c0b5e22146105c657600080fd5b806326b6308d116101d2578063437823ec11610196578063437823ec1461048157806348a46473146104a157806349bd5a5e146104c157806351bc3c85146104e15780635342acb4146104f6578063549593631461052f57600080fd5b806326b6308d146103ef5780632bb14e1d1461040f578063313ce56714610425578063395093511461044157806341cb87fc1461046157600080fd5b8063113201fa11610219578063113201fa146103375780631694505e1461035857806318160ddd146103905780631f53ac02146103af57806323b872dd146103cf57600080fd5b806306fdde0314610261578063095ea7b31461028c5780630b78f9c0146102bc5780630e832273146102de578063111e03761461031757600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107d8565b604051610283919061252c565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004612452565b61086a565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d73660046124b5565b610881565b005b3480156102ea57600080fd5b506102ac6102f93660046123a2565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561032357600080fd5b506102dc6103323660046123a2565b610966565b34801561034357600080fd5b506018546102ac90600160a81b900460ff1681565b34801561036457600080fd5b50601754610378906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561039c57600080fd5b506002545b604051908152602001610283565b3480156103bb57600080fd5b506102dc6103ca3660046123a2565b610aa5565b3480156103db57600080fd5b506102ac6103ea366004612412565b610b1d565b3480156103fb57600080fd5b506102dc61040a36600461247d565b610b86565b34801561041b57600080fd5b506103a1600d5481565b34801561043157600080fd5b5060405160098152602001610283565b34801561044d57600080fd5b506102ac61045c366004612452565b610bfd565b34801561046d57600080fd5b506102dc61047c3660046123a2565b610c33565b34801561048d57600080fd5b506102dc61049c3660046123a2565b610e31565b3480156104ad57600080fd5b506102dc6104bc36600461249d565b610eaf565b3480156104cd57600080fd5b50601854610378906001600160a01b031681565b3480156104ed57600080fd5b506102dc610f1a565b34801561050257600080fd5b506102ac6105113660046123a2565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561053b57600080fd5b506103a1600f5481565b34801561055157600080fd5b506103a1600b5481565b34801561056757600080fd5b506103a16105763660046123a2565b6001600160a01b031660009081526020819052604090205490565b34801561059d57600080fd5b506102dc610f60565b3480156105b257600080fd5b506102dc6105c136600461249d565b610fd4565b3480156105d257600080fd5b506103a160085481565b3480156105e857600080fd5b506005546001600160a01b0316610378565b34801561060657600080fd5b50610276611085565b34801561061b57600080fd5b506014546102ac90600160a01b900460ff1681565b34801561063c57600080fd5b506102ac61064b366004612452565b611094565b34801561065c57600080fd5b506102ac61066b366004612452565b6110e3565b34801561067c57600080fd5b506106856110f0565b6040516102839190612519565b34801561069e57600080fd5b506103a160135481565b3480156106b457600080fd5b506102dc6106c33660046123a2565b611151565b3480156106d457600080fd5b506102dc6106e33660046123a2565b6112bc565b3480156106f457600080fd5b506102dc61070336600461249d565b611334565b34801561071457600080fd5b506103a16107233660046123da565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075a57600080fd5b506102dc61076936600461247d565b611404565b34801561077a57600080fd5b506102dc6107893660046123a2565b61147b565b34801561079a57600080fd5b506102dc6107a93660046123a2565b6114f6565b3480156107ba57600080fd5b506102dc6115e1565b3480156107cf57600080fd5b506103a1611623565b6060600380546107e79061265e565b80601f01602080910402602001604051908101604052809291908181526020018280546108139061265e565b80156108605780601f1061083557610100808354040283529160200191610860565b820191906000526020600020905b81548152906001019060200180831161084357829003601f168201915b5050505050905090565b6000610877338484611766565b5060015b92915050565b6005546001600160a01b031633146108b45760405162461bcd60e51b81526004016108ab9061257f565b60405180910390fd5b6103e882111580156108c857506103e88111155b61091e5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016108ab565b600b829055600d81905560408051838152602081018390527f64f84976d9c917a44796104a59950fdbd9b3c16a5dd348b546d738301f6bd06891015b60405180910390a15050565b6005546001600160a01b031633146109905760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b03811660009081526007602052604090205460ff1615610a0a5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016108ab565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610acf5760405162461bcd60e51b81526004016108ab9061257f565b601280546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610a9a565b6000610b2a84848461188b565b610b7c8433610b7785604051806060016040528060288152602001612700602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611b85565b611766565b5060019392505050565b6005546001600160a01b03163314610bb05760405162461bcd60e51b81526004016108ab9061257f565b60188054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610a9a90831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610877918590610b779086611707565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b81526004016108ab9061257f565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9b57600080fd5b505afa158015610caf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd391906123be565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d1b57600080fd5b505afa158015610d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5391906123be565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610d9b57600080fd5b505af1158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd391906123be565b601880546001600160a01b03199081166001600160a01b03938416179091556017805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200161095a565b6005546001600160a01b03163314610e5b5760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b038116600081815260156020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610a9a565b6005546001600160a01b03163314610ed95760405162461bcd60e51b81526004016108ab9061257f565b610ee781633b9aca00612628565b6019556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610a9a565b6005546001600160a01b03163314610f445760405162461bcd60e51b81526004016108ab9061257f565b30600090815260208190526040902054610f5d81611bbf565b50565b6005546001600160a01b03163314610f8a5760405162461bcd60e51b81526004016108ab9061257f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ffe5760405162461bcd60e51b81526004016108ab9061257f565b6109c48111156110505760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016108ab565b600f8190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610a9a565b6060600480546107e79061265e565b60006108773384610b7785604051806060016040528060258152602001612728602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611b85565b600061087733848461188b565b6060600680548060200260200160405190810160405280929190818152602001828054801561086057602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161112a575050505050905090565b6005546001600160a01b0316331461117b5760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b03811660009081526007602052604090205460ff166111ef5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016108ab565b60005b60065481101561128257816001600160a01b03166006828154811061122757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611270576001600160a01b0382166000908152600760205260409020805460ff1916905561126b81611d44565b611282565b8061127a81612693565b9150506111f2565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610a9a565b6005546001600160a01b031633146112e65760405162461bcd60e51b81526004016108ab9061257f565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610a9a565b6005546001600160a01b0316331461135e5760405162461bcd60e51b81526004016108ab9061257f565b60058110156113af5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016108ab565b6113cf6103e86113c969d3c21bcecceda10000008461163f565b906116c5565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610a9a565b6005546001600160a01b0316331461142e5760405162461bcd60e51b81526004016108ab9061257f565b60148054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610a9a90831515815260200190565b6005546001600160a01b031633146114a55760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b038116600081815260156020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610a9a565b6005546001600160a01b031633146115205760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b0381166115855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ab565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461160b5760405162461bcd60e51b81526004016108ab9061257f565b6012544790610f5d906001600160a01b031682611e7a565b600061162d611eba565b60025461163a9190612647565b905090565b60008261164e5750600061087b565b600061165a8385612628565b9050826116678583612608565b146116be5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108ab565b9392505050565b60006116be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f35565b60008061171483856125f0565b9050838110156116be5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108ab565b6001600160a01b0383166117c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ab565b6001600160a01b0382166118295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601454600160a01b900460ff16156118ad576118a8838383611f63565b505050565b6001600160a01b03831660009081526016602052604090205460ff161580156118ef57506001600160a01b03821660009081526016602052604090205460ff16155b15611956576008548111156119565760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016108ab565b600b54601354421180159061197857506018546001600160a01b038481169116145b1561199057600f54600b5461198c91611707565b600b555b30600090815260208190526040902054601954811080159081906119be5750601854600160a01b900460ff16155b80156119d857506018546001600160a01b03878116911614155b80156119ed5750601854600160a81b900460ff165b156119fb576119fb826120e6565b6001600160a01b03861660009081526015602052604090205460ff1680611a3a57506001600160a01b03851660009081526015602052604090205460ff165b15611a4757611a47612295565b600080611a53866122da565b6001600160a01b038a166000908152602081905260409020549193509150611a7b9087612301565b6001600160a01b03808a166000908152602081905260408082209390935590891681522054611aaa9083611707565b6001600160a01b038816600090815260208190526040902055611acc81612343565b6001600160a01b03881660009081526015602052604090205460ff1680611b0b57506001600160a01b03871660009081526015602052604090205460ff165b15611b2757611b27600a54600955600c54600b55600e54600d55565b84600b81905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b7391815260200190565b60405180910390a35050505050505050565b60008184841115611ba95760405162461bcd60e51b81526004016108ab919061252c565b506000611bb68486612647565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c0257634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c5657600080fd5b505afa158015611c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8e91906123be565b81600181518110611caf57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601754611cd59130911684611766565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d0e9085906000908690309042906004016125b4565b600060405180830381600087803b158015611d2857600080fd5b505af1158015611d3c573d6000803e3d6000fd5b505050505050565b6006548110611da05760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016108ab565b60068054611db090600190612647565b81548110611dce57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110611e0857634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480611e5557634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015611eb6576040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156118a8573d6000803e3d6000fd5b5050565b600080805b600654811015611f2f57611f1160068281548110611eed57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b611f1b90836125f0565b915080611f2781612693565b915050611ebf565b50919050565b60008183611f565760405162461bcd60e51b81526004016108ab919061252c565b506000611bb68486612608565b6001600160a01b038316611fc75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108ab565b6001600160a01b0382166120295760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108ab565b612066816040518060600160405280602681526020016126da602691396001600160a01b0386166000908152602081905260409020549190611b85565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120959082611707565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161187e565b6018805460ff60a01b1916600160a01b179055600954600d54600b5460009261211a92909161211491611707565b90611707565b9050806121275750612285565b4761213183611bbf565b600061213d4783612301565b90508015612281576000612160846113c96009548561163f90919063ffffffff16565b601154909150612179906001600160a01b031682611e7a565b6000612194856113c9600d548661163f90919063ffffffff16565b90506000811180156121b057506014546001600160a01b031615155b156122105760145460405163febd221b60e01b8152600360048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b1580156121fc57600080fd5b505af19350505050801561220e575060015b505b600061222b866113c9600b548761163f90919063ffffffff16565b601254909150612244906001600160a01b031682611e7a565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506018805460ff60a01b19169055565b600b541580156122a55750600d54155b80156122b15750600954155b156122b857565b60098054600a55600b8054600c55600d8054600e556000928390559082905555565b60008060006122e884612370565b905060006122f68583612301565b959194509092505050565b60006116be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b85565b3060009081526020819052604090205461235d9082611707565b3060009081526020819052604090205550565b600080612390600954612114600d54600b5461170790919063ffffffff16565b90506116be6127106113c9858461163f565b6000602082840312156123b3578081fd5b81356116be816126c4565b6000602082840312156123cf578081fd5b81516116be816126c4565b600080604083850312156123ec578081fd5b82356123f7816126c4565b91506020830135612407816126c4565b809150509250929050565b600080600060608486031215612426578081fd5b8335612431816126c4565b92506020840135612441816126c4565b929592945050506040919091013590565b60008060408385031215612464578182fd5b823561246f816126c4565b946020939093013593505050565b60006020828403121561248e578081fd5b813580151581146116be578182fd5b6000602082840312156124ae578081fd5b5035919050565b600080604083850312156124c7578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b8381101561250e5781516001600160a01b0316875295820195908201906001016124e9565b509495945050505050565b6020815260006116be60208301846124d6565b6000602080835283518082850152825b818110156125585785810183015185820160400152820161253c565b818111156125695783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a0604082015260006125d360a08301866124d6565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612603576126036126ae565b500190565b60008261262357634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612642576126426126ae565b500290565b600082821015612659576126596126ae565b500390565b600181811c9082168061267257607f821691505b60208210811415611f2f57634e487b7160e01b600052602260045260246000fd5b60006000198214156126a7576126a76126ae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f5d57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b6c10627b31d16e8365efb718cdf983bab558ec4c662957c2b0830373e78efb864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636827e76411610139578063ada46d0a116100b6578063dd62ed3e1161007a578063dd62ed3e14610708578063e89bcca21461074e578063ea2f0b371461076e578063f2fde38b1461078e578063f4293890146107ae578063fffa1dd9146107c357600080fd5b8063ada46d0a14610670578063af01f2b214610692578063b609995e146106a8578063ba385abb146106c8578063d543dbeb146106e857600080fd5b80638da5cb5b116100fd5780638da5cb5b146105dc57806395d89b41146105fa57806398850b641461060f578063a457c2d714610630578063a9059cbb1461065057600080fd5b80636827e7641461054557806370a082311461055b578063715018a6146105915780638421b507146105a65780638c0b5e22146105c657600080fd5b806326b6308d116101d2578063437823ec11610196578063437823ec1461048157806348a46473146104a157806349bd5a5e146104c157806351bc3c85146104e15780635342acb4146104f6578063549593631461052f57600080fd5b806326b6308d146103ef5780632bb14e1d1461040f578063313ce56714610425578063395093511461044157806341cb87fc1461046157600080fd5b8063113201fa11610219578063113201fa146103375780631694505e1461035857806318160ddd146103905780631f53ac02146103af57806323b872dd146103cf57600080fd5b806306fdde0314610261578063095ea7b31461028c5780630b78f9c0146102bc5780630e832273146102de578063111e03761461031757600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107d8565b604051610283919061252c565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004612452565b61086a565b6040519015158152602001610283565b3480156102c857600080fd5b506102dc6102d73660046124b5565b610881565b005b3480156102ea57600080fd5b506102ac6102f93660046123a2565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561032357600080fd5b506102dc6103323660046123a2565b610966565b34801561034357600080fd5b506018546102ac90600160a81b900460ff1681565b34801561036457600080fd5b50601754610378906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561039c57600080fd5b506002545b604051908152602001610283565b3480156103bb57600080fd5b506102dc6103ca3660046123a2565b610aa5565b3480156103db57600080fd5b506102ac6103ea366004612412565b610b1d565b3480156103fb57600080fd5b506102dc61040a36600461247d565b610b86565b34801561041b57600080fd5b506103a1600d5481565b34801561043157600080fd5b5060405160098152602001610283565b34801561044d57600080fd5b506102ac61045c366004612452565b610bfd565b34801561046d57600080fd5b506102dc61047c3660046123a2565b610c33565b34801561048d57600080fd5b506102dc61049c3660046123a2565b610e31565b3480156104ad57600080fd5b506102dc6104bc36600461249d565b610eaf565b3480156104cd57600080fd5b50601854610378906001600160a01b031681565b3480156104ed57600080fd5b506102dc610f1a565b34801561050257600080fd5b506102ac6105113660046123a2565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561053b57600080fd5b506103a1600f5481565b34801561055157600080fd5b506103a1600b5481565b34801561056757600080fd5b506103a16105763660046123a2565b6001600160a01b031660009081526020819052604090205490565b34801561059d57600080fd5b506102dc610f60565b3480156105b257600080fd5b506102dc6105c136600461249d565b610fd4565b3480156105d257600080fd5b506103a160085481565b3480156105e857600080fd5b506005546001600160a01b0316610378565b34801561060657600080fd5b50610276611085565b34801561061b57600080fd5b506014546102ac90600160a01b900460ff1681565b34801561063c57600080fd5b506102ac61064b366004612452565b611094565b34801561065c57600080fd5b506102ac61066b366004612452565b6110e3565b34801561067c57600080fd5b506106856110f0565b6040516102839190612519565b34801561069e57600080fd5b506103a160135481565b3480156106b457600080fd5b506102dc6106c33660046123a2565b611151565b3480156106d457600080fd5b506102dc6106e33660046123a2565b6112bc565b3480156106f457600080fd5b506102dc61070336600461249d565b611334565b34801561071457600080fd5b506103a16107233660046123da565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075a57600080fd5b506102dc61076936600461247d565b611404565b34801561077a57600080fd5b506102dc6107893660046123a2565b61147b565b34801561079a57600080fd5b506102dc6107a93660046123a2565b6114f6565b3480156107ba57600080fd5b506102dc6115e1565b3480156107cf57600080fd5b506103a1611623565b6060600380546107e79061265e565b80601f01602080910402602001604051908101604052809291908181526020018280546108139061265e565b80156108605780601f1061083557610100808354040283529160200191610860565b820191906000526020600020905b81548152906001019060200180831161084357829003601f168201915b5050505050905090565b6000610877338484611766565b5060015b92915050565b6005546001600160a01b031633146108b45760405162461bcd60e51b81526004016108ab9061257f565b60405180910390fd5b6103e882111580156108c857506103e88111155b61091e5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016108ab565b600b829055600d81905560408051838152602081018390527f64f84976d9c917a44796104a59950fdbd9b3c16a5dd348b546d738301f6bd06891015b60405180910390a15050565b6005546001600160a01b031633146109905760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b03811660009081526007602052604090205460ff1615610a0a5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016108ab565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610acf5760405162461bcd60e51b81526004016108ab9061257f565b601280546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610a9a565b6000610b2a84848461188b565b610b7c8433610b7785604051806060016040528060288152602001612700602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611b85565b611766565b5060019392505050565b6005546001600160a01b03163314610bb05760405162461bcd60e51b81526004016108ab9061257f565b60188054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610a9a90831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610877918590610b779086611707565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b81526004016108ab9061257f565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9b57600080fd5b505afa158015610caf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd391906123be565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d1b57600080fd5b505afa158015610d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5391906123be565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610d9b57600080fd5b505af1158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd391906123be565b601880546001600160a01b03199081166001600160a01b03938416179091556017805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200161095a565b6005546001600160a01b03163314610e5b5760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b038116600081815260156020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610a9a565b6005546001600160a01b03163314610ed95760405162461bcd60e51b81526004016108ab9061257f565b610ee781633b9aca00612628565b6019556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610a9a565b6005546001600160a01b03163314610f445760405162461bcd60e51b81526004016108ab9061257f565b30600090815260208190526040902054610f5d81611bbf565b50565b6005546001600160a01b03163314610f8a5760405162461bcd60e51b81526004016108ab9061257f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ffe5760405162461bcd60e51b81526004016108ab9061257f565b6109c48111156110505760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016108ab565b600f8190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610a9a565b6060600480546107e79061265e565b60006108773384610b7785604051806060016040528060258152602001612728602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611b85565b600061087733848461188b565b6060600680548060200260200160405190810160405280929190818152602001828054801561086057602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161112a575050505050905090565b6005546001600160a01b0316331461117b5760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b03811660009081526007602052604090205460ff166111ef5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016108ab565b60005b60065481101561128257816001600160a01b03166006828154811061122757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611270576001600160a01b0382166000908152600760205260409020805460ff1916905561126b81611d44565b611282565b8061127a81612693565b9150506111f2565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610a9a565b6005546001600160a01b031633146112e65760405162461bcd60e51b81526004016108ab9061257f565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610a9a565b6005546001600160a01b0316331461135e5760405162461bcd60e51b81526004016108ab9061257f565b60058110156113af5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016108ab565b6113cf6103e86113c969d3c21bcecceda10000008461163f565b906116c5565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610a9a565b6005546001600160a01b0316331461142e5760405162461bcd60e51b81526004016108ab9061257f565b60148054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610a9a90831515815260200190565b6005546001600160a01b031633146114a55760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b038116600081815260156020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610a9a565b6005546001600160a01b031633146115205760405162461bcd60e51b81526004016108ab9061257f565b6001600160a01b0381166115855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ab565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461160b5760405162461bcd60e51b81526004016108ab9061257f565b6012544790610f5d906001600160a01b031682611e7a565b600061162d611eba565b60025461163a9190612647565b905090565b60008261164e5750600061087b565b600061165a8385612628565b9050826116678583612608565b146116be5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108ab565b9392505050565b60006116be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f35565b60008061171483856125f0565b9050838110156116be5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108ab565b6001600160a01b0383166117c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ab565b6001600160a01b0382166118295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601454600160a01b900460ff16156118ad576118a8838383611f63565b505050565b6001600160a01b03831660009081526016602052604090205460ff161580156118ef57506001600160a01b03821660009081526016602052604090205460ff16155b15611956576008548111156119565760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016108ab565b600b54601354421180159061197857506018546001600160a01b038481169116145b1561199057600f54600b5461198c91611707565b600b555b30600090815260208190526040902054601954811080159081906119be5750601854600160a01b900460ff16155b80156119d857506018546001600160a01b03878116911614155b80156119ed5750601854600160a81b900460ff165b156119fb576119fb826120e6565b6001600160a01b03861660009081526015602052604090205460ff1680611a3a57506001600160a01b03851660009081526015602052604090205460ff165b15611a4757611a47612295565b600080611a53866122da565b6001600160a01b038a166000908152602081905260409020549193509150611a7b9087612301565b6001600160a01b03808a166000908152602081905260408082209390935590891681522054611aaa9083611707565b6001600160a01b038816600090815260208190526040902055611acc81612343565b6001600160a01b03881660009081526015602052604090205460ff1680611b0b57506001600160a01b03871660009081526015602052604090205460ff165b15611b2757611b27600a54600955600c54600b55600e54600d55565b84600b81905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b7391815260200190565b60405180910390a35050505050505050565b60008184841115611ba95760405162461bcd60e51b81526004016108ab919061252c565b506000611bb68486612647565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c0257634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c5657600080fd5b505afa158015611c6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8e91906123be565b81600181518110611caf57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601754611cd59130911684611766565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac94790611d0e9085906000908690309042906004016125b4565b600060405180830381600087803b158015611d2857600080fd5b505af1158015611d3c573d6000803e3d6000fd5b505050505050565b6006548110611da05760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016108ab565b60068054611db090600190612647565b81548110611dce57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110611e0857634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480611e5557634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015611eb6576040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156118a8573d6000803e3d6000fd5b5050565b600080805b600654811015611f2f57611f1160068281548110611eed57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b611f1b90836125f0565b915080611f2781612693565b915050611ebf565b50919050565b60008183611f565760405162461bcd60e51b81526004016108ab919061252c565b506000611bb68486612608565b6001600160a01b038316611fc75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108ab565b6001600160a01b0382166120295760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108ab565b612066816040518060600160405280602681526020016126da602691396001600160a01b0386166000908152602081905260409020549190611b85565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120959082611707565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161187e565b6018805460ff60a01b1916600160a01b179055600954600d54600b5460009261211a92909161211491611707565b90611707565b9050806121275750612285565b4761213183611bbf565b600061213d4783612301565b90508015612281576000612160846113c96009548561163f90919063ffffffff16565b601154909150612179906001600160a01b031682611e7a565b6000612194856113c9600d548661163f90919063ffffffff16565b90506000811180156121b057506014546001600160a01b031615155b156122105760145460405163febd221b60e01b8152600360048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b1580156121fc57600080fd5b505af19350505050801561220e575060015b505b600061222b866113c9600b548761163f90919063ffffffff16565b601254909150612244906001600160a01b031682611e7a565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506018805460ff60a01b19169055565b600b541580156122a55750600d54155b80156122b15750600954155b156122b857565b60098054600a55600b8054600c55600d8054600e556000928390559082905555565b60008060006122e884612370565b905060006122f68583612301565b959194509092505050565b60006116be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b85565b3060009081526020819052604090205461235d9082611707565b3060009081526020819052604090205550565b600080612390600954612114600d54600b5461170790919063ffffffff16565b90506116be6127106113c9858461163f565b6000602082840312156123b3578081fd5b81356116be816126c4565b6000602082840312156123cf578081fd5b81516116be816126c4565b600080604083850312156123ec578081fd5b82356123f7816126c4565b91506020830135612407816126c4565b809150509250929050565b600080600060608486031215612426578081fd5b8335612431816126c4565b92506020840135612441816126c4565b929592945050506040919091013590565b60008060408385031215612464578182fd5b823561246f816126c4565b946020939093013593505050565b60006020828403121561248e578081fd5b813580151581146116be578182fd5b6000602082840312156124ae578081fd5b5035919050565b600080604083850312156124c7578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b8381101561250e5781516001600160a01b0316875295820195908201906001016124e9565b509495945050505050565b6020815260006116be60208301846124d6565b6000602080835283518082850152825b818110156125585785810183015185820160400152820161253c565b818111156125695783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a0604082015260006125d360a08301866124d6565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612603576126036126ae565b500190565b60008261262357634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612642576126426126ae565b500290565b600082821015612659576126596126ae565b500390565b600181811c9082168061267257607f821691505b60208210811415611f2f57634e487b7160e01b600052602260045260246000fd5b60006000198214156126a7576126a76126ae565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f5d57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b6c10627b31d16e8365efb718cdf983bab558ec4c662957c2b0830373e78efb864736f6c63430008040033

Deployed Bytecode Sourcemap

243:11887:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4265:166;;;;;;;;;;-1:-1:-1;4265:166:2;;;;;:::i;:::-;;:::i;:::-;;;4404:14:12;;4397:22;4379:41;;4367:2;4352:18;4265:166:2;4334:92:12;10033:299:8;;;;;;;;;;-1:-1:-1;10033:299:8;;;;;:::i;:::-;;:::i;:::-;;1694:125:10;;;;;;;;;;-1:-1:-1;1694:125:10;;;;;:::i;:::-;-1:-1:-1;;;;;1787:25:10;1764:4;1787:25;;;:17;:25;;;;;;;;;1694:125;952:282;;;;;;;;;;-1:-1:-1;952:282:10;;;;;:::i;:::-;;:::i;1698:48:8:-;;;;;;;;;;-1:-1:-1;1698:48:8;;;;-1:-1:-1;;;1698:48:8;;;;;;1590:39;;;;;;;;;;-1:-1:-1;1590:39:8;;;;-1:-1:-1;;;;;1590:39:8;;;;;;-1:-1:-1;;;;;3404:32:12;;;3386:51;;3374:2;3359:18;1590:39:8;3341:102:12;3256:106:2;;;;;;;;;;-1:-1:-1;3343:12:2;;3256:106;;;11303:25:12;;;11291:2;11276:18;3256:106:2;11258:76:12;10590:185:8;;;;;;;;;;-1:-1:-1;10590:185:8;;;;;:::i;:::-;;:::i;4898:347:2:-;;;;;;;;;;-1:-1:-1;4898:347:2;;;;;:::i;:::-;;:::i;11388:184:8:-;;;;;;;;;;-1:-1:-1;11388:184:8;;;;;:::i;:::-;;:::i;797:31::-;;;;;;;;;;;;;;;;3788:90;;;;;;;;;;-1:-1:-1;3788:90:8;;3870:1;12321:36:12;;12309:2;12294:18;3788:90:8;12276:87:12;5640:215:2;;;;;;;;;;-1:-1:-1;5640:215:2;;;;;:::i;:::-;;:::i;11016:366:8:-;;;;;;;;;;-1:-1:-1;11016:366:8;;;;;:::i;:::-;;:::i;9724:150::-;;;;;;;;;;-1:-1:-1;9724:150:8;;;;;:::i;:::-;;:::i;11578:178::-;;;;;;;;;;-1:-1:-1;11578:178:8;;;;;:::i;:::-;;:::i;1635:28::-;;;;;;;;;;-1:-1:-1;1635:28:8;;;;-1:-1:-1;;;;;1635:28:8;;;11799:151;;;;;;;;;;;;;:::i;9594:124::-;;;;;;;;;;-1:-1:-1;9594:124:8;;;;;:::i;:::-;-1:-1:-1;;;;;9684:27:8;9661:4;9684:27;;;:18;:27;;;;;;;;;9594:124;895:34;;;;;;;;;;;;;;;;704:27;;;;;;;;;;;;;;;;3420:125:2;;;;;;;;;;-1:-1:-1;3420:125:2;;;;;:::i;:::-;-1:-1:-1;;;;;3520:18:2;3494:7;3520:18;;;;;;;;;;;;3420:125;1696:147:9;;;;;;;;;;;;;:::i;10338:246:8:-;;;;;;;;;;-1:-1:-1;10338:246:8;;;;;:::i;:::-;;:::i;528:58::-;;;;;;;;;;;;;;;;1073:77:9;;;;;;;;;;-1:-1:-1;1137:6:9;;-1:-1:-1;;;;;1137:6:9;1073:77;;2379:102:2;;;;;;;;;;;;;:::i;1370:37:8:-;;;;;;;;;;-1:-1:-1;1370:37:8;;;;-1:-1:-1;;;1370:37:8;;;;;;6342:266:2;;;;;;;;;;-1:-1:-1;6342:266:2;;;;;:::i;:::-;;:::i;3748:172::-;;;;;;;;;;-1:-1:-1;3748:172:2;;;;;:::i;:::-;;:::i;1829:121:10:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1226:40:8:-;;;;;;;;;;;;;;;;1244:440:10;;;;;;;;;;-1:-1:-1;1244:440:10;;;;;:::i;:::-;;:::i;10785:225:8:-;;;;;;;;;;-1:-1:-1;10785:225:8;;;;;:::i;:::-;;:::i;9346:238::-;;;;;;;;;;-1:-1:-1;9346:238:8;;;;;:::i;:::-;;:::i;3978:149:2:-;;;;;;;;;;-1:-1:-1;3978:149:2;;;;;:::i;:::-;-1:-1:-1;;;;;4093:18:2;;;4067:7;4093:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3978:149;9116:179:8;;;;;;;;;;-1:-1:-1;9116:179:8;;;;;:::i;:::-;;:::i;9880:147::-;;;;;;;;;;-1:-1:-1;9880:147:8;;;;;:::i;:::-;;:::i;1992:276:9:-;;;;;;;;;;-1:-1:-1;1992:276:9;;;;;:::i;:::-;;:::i;11956:172:8:-;;;;;;;;;;;;;:::i;1960:118:10:-;;;;;;;;;;;;;:::i;2168:98:2:-;2222:13;2254:5;2247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98;:::o;4265:166::-;4348:4;4364:39;169:10:1;4387:7:2;4396:6;4364:8;:39::i;:::-;-1:-1:-1;4420:4:2;4265:166;;;;;:::o;10033:299:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;;;;;;;;;10142:4:8::1;10129:9;:17;;:42;;;;;10167:4;10150:13;:21;;10129:42;10121:88;;;::::0;-1:-1:-1;;;10121:88:8;;8210:2:12;10121:88:8::1;::::0;::::1;8192:21:12::0;8249:2;8229:18;;;8222:30;8288:34;8268:18;;;8261:62;-1:-1:-1;;;8339:18:12;;;8332:31;8380:19;;10121:88:8::1;8182:223:12::0;10121:88:8::1;10219:6;:18:::0;;;10247:10:::1;:26:::0;;;10288:37:::1;::::0;;12100:25:12;;;12156:2;12141:18;;12134:34;;;10288:37:8::1;::::0;12073:18:12;10288:37:8::1;;;;;;;;10033:299:::0;;:::o;952:282:10:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1032:25:10;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1031:26;1023:79;;;::::0;-1:-1:-1;;;1023:79:10;;9370:2:12;1023:79:10::1;::::0;::::1;9352:21:12::0;9409:2;9389:18;;;9382:30;9448:34;9428:18;;;9421:62;-1:-1:-1;;;9499:18:12;;;9492:38;9547:19;;1023:79:10::1;9342:230:12::0;1023:79:10::1;1112:19;:32:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;1112:32:10::1;-1:-1:-1::0;;;;;1112:32:10;::::1;::::0;;::::1;::::0;;;-1:-1:-1;1154:25:10;;;:17:::1;1112:32;1154:25:::0;;;;;;;;:32;;-1:-1:-1;;1154:32:10::1;::::0;;::::1;::::0;;;1201:26;3386:51:12;;;1201:26:10::1;::::0;3359:18:12;1201:26:10::1;;;;;;;;952:282:::0;:::o;10590:185:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;10691:17:8::1;:32:::0;;-1:-1:-1;;;;;;10691:32:8::1;-1:-1:-1::0;;;;;10691:32:8;::::1;::::0;;::::1;::::0;;;10738:30:::1;::::0;3386:51:12;;;10738:30:8::1;::::0;3374:2:12;3359:18;10738:30:8::1;3341:102:12::0;4898:347:2;5034:4;5050:36;5060:6;5068:9;5079:6;5050:9;:36::i;:::-;5096:121;5105:6;169:10:1;5127:89:2;5165:6;5127:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5127:19:2;;;;;;:11;:19;;;;;;;;169:10:1;5127:33:2;;;;;;;;;;:37;:89::i;:::-;5096:8;:121::i;:::-;-1:-1:-1;5234:4:2;4898:347;;;;;:::o;11388:184:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;11473:29:8::1;:39:::0;;;::::1;;-1:-1:-1::0;;;11473:39:8::1;-1:-1:-1::0;;;;11473:39:8;;::::1;;::::0;;11527:38:::1;::::0;::::1;::::0;::::1;::::0;11505:7;4404:14:12;4397:22;4379:41;;4367:2;4352:18;;4334:92;5640:215:2;169:10:1;5728:4:2;5776:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5776:34:2;;;;;;;;;;5728:4;;5744:83;;5767:7;;5776:50;;5815:10;5776:38;:50::i;11016:366:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;11090:34:8::1;11144:9;11090:64;;11198:17;-1:-1:-1::0;;;;;11198:25:8::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11180:70:8::1;;11259:4;11266:17;-1:-1:-1::0;;;;;11266:22:8::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11180:111;::::0;-1:-1:-1;;;;;;11180:111:8::1;::::0;;;;;;-1:-1:-1;;;;;3894:15:12;;;11180:111:8::1;::::0;::::1;3876:34:12::0;3946:15;;3926:18;;;3919:43;3811:18;;11180:111:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11164:13;:127:::0;;-1:-1:-1;;;;;;11164:127:8;;::::1;-1:-1:-1::0;;;;;11164:127:8;;::::1;;::::0;;;11301:15:::1;:35:::0;;;;::::1;::::0;;::::1;;::::0;;11351:24:::1;::::0;3404:32:12;;;3386:51;;11351:24:8::1;::::0;3374:2:12;3359:18;11351:24:8::1;3341:102:12::0;9724:150:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;9794:27:8;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;9794:34:8::1;9824:4;9794:34;::::0;;9843:24;;3386:51:12;;;9843:24:8::1;::::0;3359:18:12;9843:24:8::1;3341:102:12::0;11578:178:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;11680:17:8::1;:9:::0;11692:5:::1;11680:17;:::i;:::-;11658:19;:39:::0;11712:37:::1;::::0;11303:25:12;;;11712:37:8::1;::::0;11291:2:12;11276:18;11712:37:8::1;11258:76:12::0;11799:151:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;11894:4:8::1;11850:23;3520:18:2::0;;;;;;;;;;;11910:33:8::1;3520:18:2::0;11910:16:8::1;:33::i;:::-;1346:1:9;11799:151:8:o:0;1696:147:9:-;1277:6;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;1788:6:::1;::::0;1767:40:::1;::::0;1804:1:::1;::::0;-1:-1:-1;;;;;1788:6:9::1;::::0;1767:40:::1;::::0;1804:1;;1767:40:::1;1817:6;:19:::0;;-1:-1:-1;;;;;;1817:19:9::1;::::0;;1696:147::o;10338:246:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;10447:4:8::1;10427:16;:24;;10419:67;;;::::0;-1:-1:-1;;;10419:67:8;;6687:2:12;10419:67:8::1;::::0;::::1;6669:21:12::0;6726:2;6706:18;;;6699:30;6765:32;6745:18;;;6738:60;6815:18;;10419:67:8::1;6659:180:12::0;10419:67:8::1;10496:13;:32:::0;;;10543:34:::1;::::0;11303:25:12;;;10543:34:8::1;::::0;11291:2:12;11276:18;10543:34:8::1;11258:76:12::0;2379:102:2;2435:13;2467:7;2460:14;;;;;:::i;6342:266::-;6435:4;6451:129;169:10:1;6474:7:2;6483:96;6522:15;6483:96;;;;;;;;;;;;;;;;;169:10:1;6483:25:2;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6483:34:2;;;;;;;;;;;;:38;:96::i;3748:172::-;3834:4;3850:42;169:10:1;3874:9:2;3885:6;3850:9;:42::i;1829:121:10:-;1889:16;1924:19;1917:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1917:26:10;;;;;;;;;;;;;;;;;;;;;;1829:121;:::o;1244:440::-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1323:25:10;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1315:74;;;::::0;-1:-1:-1;;;1315:74:10;;7805:2:12;1315:74:10::1;::::0;::::1;7787:21:12::0;7844:2;7824:18;;;7817:30;7883:34;7863:18;;;7856:62;-1:-1:-1;;;7934:18:12;;;7927:34;7978:19;;1315:74:10::1;7777:226:12::0;1315:74:10::1;1404:6;1399:240;1420:19;:26:::0;1416:30;::::1;1399:240;;;1497:6;-1:-1:-1::0;;;;;1471:32:10::1;:19;1491:1;1471:22;;;;;;-1:-1:-1::0;;;1471:22:10::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;1471:22:10::1;:32;1467:162;;;-1:-1:-1::0;;;;;1523:25:10;::::1;1551:5;1523:25:::0;;;:17:::1;:25;::::0;;;;:33;;-1:-1:-1;;1523:33:10::1;::::0;;1574:17:::1;1589:1:::0;1574:14:::1;:17::i;:::-;1609:5;;1467:162;1448:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1399:240;;;-1:-1:-1::0;1653:24:10::1;::::0;-1:-1:-1;;;;;3404:32:12;;3386:51;;1653:24:10::1;::::0;3374:2:12;3359:18;1653:24:10::1;3341:102:12::0;10785:225:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;10896:15:8::1;:52:::0;;-1:-1:-1;;;;;;10896:52:8::1;-1:-1:-1::0;;;;;10896:52:8;::::1;::::0;;::::1;::::0;;;10963:40:::1;::::0;3386:51:12;;;10963:40:8::1;::::0;3374:2:12;3359:18;10963:40:8::1;3341:102:12::0;9346:238:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;9438:1:8::1;9426:8;:13;;9418:53;;;::::0;-1:-1:-1;;;9418:53:8;;8612:2:12;9418:53:8::1;::::0;::::1;8594:21:12::0;8651:2;8631:18;;;8624:30;8690:29;8670:18;;;8663:57;8737:18;;9418:53:8::1;8584:177:12::0;9418:53:8::1;9495:36;9526:4;9495:26;495;9512:8:::0;9495:16:::1;:26::i;:::-;:30:::0;::::1;:36::i;:::-;9481:11;:50:::0;;;9546:31:::1;::::0;11303:25:12;;;9546:31:8::1;::::0;11291:2:12;11276:18;9546:31:8::1;11258:76:12::0;9116:179:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;9198:18:8::1;:36:::0;;;::::1;;-1:-1:-1::0;;;9198:36:8::1;-1:-1:-1::0;;;;9198:36:8;;::::1;;::::0;;9249:39:::1;::::0;::::1;::::0;::::1;::::0;9219:15;4404:14:12;4397:22;4379:41;;4367:2;4352:18;;4334:92;9880:147:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;9948:27:8;::::1;9978:5;9948:27:::0;;;:18:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;9948:35:8::1;::::0;;9998:22;;3386:51:12;;;9998:22:8::1;::::0;3359:18:12;9998:22:8::1;3341:102:12::0;1992:276:9;1277:6;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;2095:22:9;::::1;2074:107;;;::::0;-1:-1:-1;;;2074:107:9;;5877:2:12;2074:107:9::1;::::0;::::1;5859:21:12::0;5916:2;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;-1:-1:-1;;;6006:18:12;;;5999:36;6052:19;;2074:107:9::1;5849:228:12::0;2074:107:9::1;2217:6;::::0;2196:38:::1;::::0;-1:-1:-1;;;;;2196:38:9;;::::1;::::0;2217:6:::1;::::0;2196:38:::1;::::0;2217:6:::1;::::0;2196:38:::1;2244:6;:17:::0;;-1:-1:-1;;;;;;2244:17:9::1;-1:-1:-1::0;;;;;2244:17:9;;;::::1;::::0;;;::::1;::::0;;1992:276::o;11956:172:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;12083:17:8::1;::::0;12036:21:::1;::::0;12067:54:::1;::::0;-1:-1:-1;;;;;12083:17:8::1;12036:21:::0;12067:15:::1;:54::i;1960:118:10:-:0;2009:7;2050:21;:19;:21::i;:::-;2035:12;;:36;;;;:::i;:::-;2028:43;;1960:118;:::o;2211:459:11:-;2269:7;2510:6;2506:45;;-1:-1:-1;2539:1:11;2532:8;;2506:45;2561:9;2573:5;2577:1;2573;:5;:::i;:::-;2561:17;-1:-1:-1;2605:1:11;2596:5;2600:1;2561:17;2596:5;:::i;:::-;:10;2588:56;;;;-1:-1:-1;;;2588:56:11;;8968:2:12;2588:56:11;;;8950:21:12;9007:2;8987:18;;;8980:30;9046:34;9026:18;;;9019:62;-1:-1:-1;;;9097:18:12;;;9090:31;9138:19;;2588:56:11;8940:223:12;2588:56:11;2662:1;2211:459;-1:-1:-1;;;2211:459:11:o;3132:130::-;3190:7;3216:39;3220:1;3223;3216:39;;;;;;;;;;;;;;;;;:3;:39::i;875:176::-;933:7;;964:5;968:1;964;:5;:::i;:::-;952:17;;992:1;987;:6;;979:46;;;;-1:-1:-1;;;979:46:11;;7046:2:12;979:46:11;;;7028:21:12;7085:2;7065:18;;;7058:30;7124:29;7104:18;;;7097:57;7171:18;;979:46:11;7018:177:12;9441:370:2;-1:-1:-1;;;;;9572:19:2;;9564:68;;;;-1:-1:-1;;;9564:68:2;;10546:2:12;9564:68:2;;;10528:21:12;10585:2;10565:18;;;10558:30;10624:34;10604:18;;;10597:62;-1:-1:-1;;;10675:18:12;;;10668:34;10719:19;;9564:68:2;10518:226:12;9564:68:2;-1:-1:-1;;;;;9650:21:2;;9642:68;;;;-1:-1:-1;;;9642:68:2;;6284:2:12;9642:68:2;;;6266:21:12;6323:2;6303:18;;;6296:30;6362:34;6342:18;;;6335:62;-1:-1:-1;;;6413:18:12;;;6406:32;6455:19;;9642:68:2;6256:224:12;9642:68:2;-1:-1:-1;;;;;9721:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9772:32;;11303:25:12;;;9772:32:2;;11276:18:12;9772:32:2;;;;;;;;9441:370;;;:::o;3884:1712:8:-;4050:18;;-1:-1:-1;;;4050:18:8;;;;4046:102;;;4084:33;4100:4;4106:2;4110:6;4084:15;:33::i;:::-;3884:1712;;;:::o;4046:102::-;-1:-1:-1;;;;;4176:26:8;;;;;;:20;:26;;;;;;;;4175:27;:68;;;;-1:-1:-1;;;;;;4219:24:8;;;;;;:20;:24;;;;;;;;4218:25;4175:68;4158:260;;;4323:11;;4313:6;:21;;4288:119;;;;-1:-1:-1;;;4288:119:8;;10951:2:12;4288:119:8;;;10933:21:12;10990:2;10970:18;;;10963:30;11029:34;11009:18;;;11002:62;-1:-1:-1;;;11080:18:12;;;11073:37;11127:19;;4288:119:8;10923:229:12;4288:119:8;4473:6;;4493:21;;4518:15;-1:-1:-1;4493:40:8;;;:63;;-1:-1:-1;4543:13:8;;-1:-1:-1;;;;;4537:19:8;;;4543:13;;4537:19;4493:63;4489:128;;;4592:13;;4581:6;;:25;;:10;:25::i;:::-;4572:6;:34;4489:128;4705:4;4656:28;3520:18:2;;;;;;;;;;;4772:19:8;;4748:43;;;;;;;4818:53;;-1:-1:-1;4854:17:8;;-1:-1:-1;;;4854:17:8;;;;4853:18;4818:53;:90;;;;-1:-1:-1;4895:13:8;;-1:-1:-1;;;;;4887:21:8;;;4895:13;;4887:21;;4818:90;:135;;;;-1:-1:-1;4924:29:8;;-1:-1:-1;;;4924:29:8;;;;4818:135;4801:259;;;5005:44;5028:20;5005:22;:44::i;:::-;-1:-1:-1;;;;;5074:24:8;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;5102:22:8;;;;;;:18;:22;;;;;;;;5074:50;5070:95;;;5140:14;:12;:14::i;:::-;5176:23;5201:12;5217:18;5228:6;5217:10;:18::i;:::-;-1:-1:-1;;;;;5263:15:8;;:9;:15;;;;;;;;;;;5175:60;;-1:-1:-1;5175:60:8;-1:-1:-1;5263:27:8;;5283:6;5263:19;:27::i;:::-;-1:-1:-1;;;;;5245:15:8;;;:9;:15;;;;;;;;;;;:45;;;;5316:13;;;;;;;:34;;5334:15;5316:17;:34::i;:::-;-1:-1:-1;;;;;5300:13:8;;:9;:13;;;;;;;;;;:50;5361:14;5370:4;5361:8;:14::i;:::-;-1:-1:-1;;;;;5390:24:8;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;5418:22:8;;;;;;:18;:22;;;;;;;;5390:50;5386:96;;;5456:15;6664:20;;6650:11;:34;6703:15;;6694:6;:24;6741:19;;6728:10;:32;6607:160;5456:15;5528:10;5519:6;:19;;;;5569:2;-1:-1:-1;;;;;5554:35:8;5563:4;-1:-1:-1;;;;;5554:35:8;;5573:15;5554:35;;;;11303:25:12;;11291:2;11276:18;;11258:76;5554:35:8;;;;;;;;3884:1712;;;;;;;;:::o;1747:217:11:-;1863:7;1898:12;1890:6;;;;1882:29;;;;-1:-1:-1;;;1882:29:11;;;;;;;;:::i;:::-;-1:-1:-1;1921:9:11;1933:5;1937:1;1933;:5;:::i;:::-;1921:17;1747:217;-1:-1:-1;;;;;1747:217:11:o;8537:573:8:-;8685:16;;;8699:1;8685:16;;;;;;;;8661:21;;8685:16;;;;;;;;;;-1:-1:-1;8685:16:8;8661:40;;8729:4;8711;8716:1;8711:7;;;;;;-1:-1:-1;;;8711:7:8;;;;;;;;;-1:-1:-1;;;;;8711:23:8;;;:7;;;;;;;;;;:23;;;;8754:15;;:22;;;-1:-1:-1;;;8754:22:8;;;;:15;;;;;:20;;:22;;;;;8711:7;;8754:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8744:4;8749:1;8744:7;;;;;;-1:-1:-1;;;8744:7:8;;;;;;;;;-1:-1:-1;;;;;8744:32:8;;;:7;;;;;;;;;:32;8819:15;;8787:62;;8804:4;;8819:15;8837:11;8787:8;:62::i;:::-;8885:15;;:218;;-1:-1:-1;;;8885:218:8;;-1:-1:-1;;;;;8885:15:8;;;;:66;;:218;;8965:11;;8885:15;;9033:4;;9059;;9078:15;;8885:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8537:573;;:::o;367:268:10:-;438:19;:26;430:34;;422:81;;;;-1:-1:-1;;;422:81:10;;7402:2:12;422:81:10;;;7384:21:12;7441:2;7421:18;;;7414:30;7480:34;7460:18;;;7453:62;-1:-1:-1;;;7531:18:12;;;7524:32;7573:19;;422:81:10;7374:224:12;422:81:10;542:19;562:26;;:30;;591:1;;562:30;:::i;:::-;542:51;;;;;;-1:-1:-1;;;542:51:10;;;;;;;;;;;;;;;;;;;513:19;:26;;-1:-1:-1;;;;;542:51:10;;;;533:5;;513:26;;;;-1:-1:-1;;;513:26:10;;;;;;;;;;;;;;;;;:80;;;;;-1:-1:-1;;;;;513:80:10;;;;;-1:-1:-1;;;;;513:80:10;;;;;;603:19;:25;;;;;-1:-1:-1;;;603:25:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;603:25:10;;;;;-1:-1:-1;;;;;;603:25:10;;;;;;-1:-1:-1;367:268:10:o;8377:154:8:-;8456:10;;8452:73;;8482:32;;-1:-1:-1;;;;;8482:24:8;;;:32;;;;;8507:6;;8482:32;;;;8507:6;8482:24;:32;;;;;;;;;;;;;;;;;;;8452:73;8377:154;;:::o;645:297:10:-;699:7;;;761:137;782:19;:26;778:30;;761:137;;;854:33;864:19;884:1;864:22;;;;;;-1:-1:-1;;;864:22:10;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;864:22:10;3520:18:2;;;;;;;;;;3420:125;854:33:10;829:58;;;;:::i;:::-;;-1:-1:-1;810:3:10;;;;:::i;:::-;;;;761:137;;;-1:-1:-1;914:21:10;645:297;-1:-1:-1;645:297:10:o;3744:302:11:-;3860:7;3894:12;3887:5;3879:28;;;;-1:-1:-1;;;3879:28:11;;;;;;;;:::i;:::-;-1:-1:-1;3917:9:11;3929:5;3933:1;3929;:5;:::i;7082:560:2:-;-1:-1:-1;;;;;7217:20:2;;7209:70;;;;-1:-1:-1;;;7209:70:2;;10140:2:12;7209:70:2;;;10122:21:12;10179:2;10159:18;;;10152:30;10218:34;10198:18;;;10191:62;-1:-1:-1;;;10269:18:12;;;10262:35;10314:19;;7209:70:2;10112:227:12;7209:70:2;-1:-1:-1;;;;;7297:23:2;;7289:71;;;;-1:-1:-1;;;7289:71:2;;5473:2:12;7289:71:2;;;5455:21:12;5512:2;5492:18;;;5485:30;5551:34;5531:18;;;5524:62;-1:-1:-1;;;5602:18:12;;;5595:33;5645:19;;7289:71:2;5445:225:12;7289:71:2;7449;7471:6;7449:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7449:17:2;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7429:17:2;;;:9;:17;;;;;;;;;;;:91;;;;7553:20;;;;;;;:32;;7578:6;7553:24;:32::i;:::-;-1:-1:-1;;;;;7530:20:2;;;:9;:20;;;;;;;;;;;;:55;;;;7600:35;11303:25:12;;;7530:20:2;;7600:35;;;;;;11276:18:12;7600:35:2;11258:76:12;6773:1598:8;2581:17;:24;;-1:-1:-1;;;;2581:24:8;-1:-1:-1;;;2581:24:8;;;6939:11:::1;::::0;6923:10:::1;::::0;6912:6:::1;::::0;2581:24;;6912:39:::1;::::0;6939:11;;6912:22:::1;::::0;:10:::1;:22::i;:::-;:26:::0;::::1;:39::i;:::-;6885:66:::0;-1:-1:-1;6965:21:8;6961:34:::1;;6988:7;;;6961:34;7294:21;7357:38;7374:20:::0;7357:16:::1;:38::i;:::-;7406:18;7427:41;:21;7453:14:::0;7427:25:::1;:41::i;:::-;7406:62:::0;-1:-1:-1;7483:14:8;;7479:886:::1;;7552:23;7578:49;7610:16;7578:27;7593:11;;7578:10;:14;;:27;;;;:::i;:49::-;7657:22;::::0;7552:75;;-1:-1:-1;7641:56:8::1;::::0;-1:-1:-1;;;;;7657:22:8::1;7552:75:::0;7641:15:::1;:56::i;:::-;7780:22;7805:48;7836:16;7805:26;7820:10;;7805;:14;;:26;;;;:::i;:48::-;7780:73;;7888:1;7871:14;:18;:60;;;;-1:-1:-1::0;7901:15:8::1;::::0;-1:-1:-1;;;;;7901:15:8::1;7893:38:::0;::::1;7871:60;7867:194;;;7955:15;::::0;:80:::1;::::0;-1:-1:-1;;;7955:80:8;;448:1:::1;7955:80;::::0;::::1;11303:25:12::0;-1:-1:-1;;;;;7955:15:8;;::::1;::::0;:29:::1;::::0;7992:14;;11276:18:12;;7955:80:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;7951:96:::0;::::1;8151:18;8172:44;8199:16;8172:22;8187:6;;8172:10;:14;;:22;;;;:::i;:44::-;8246:17;::::0;8151:65;;-1:-1:-1;8230:46:8::1;::::0;-1:-1:-1;;;;;8246:17:8::1;8151:65:::0;8230:15:::1;:46::i;:::-;8296:58;::::0;;12100:25:12;;;12156:2;12141:18;;12134:34;;;8296:58:8::1;::::0;12073:18:12;8296:58:8::1;;;;;;;7479:886;;;;2615:1;;;;-1:-1:-1::0;2626:17:8;:25;;-1:-1:-1;;;;2626:25:8;;;6773:1598::o;6299:302::-;6345:6;;:11;:30;;;;-1:-1:-1;6360:10:8;;:15;6345:30;:50;;;;-1:-1:-1;6379:11:8;;:16;6345:50;6341:63;;;6299:302::o;6341:63::-;6437:11;;;6414:20;:34;6476:6;;;6458:15;:24;6514:10;;;6492:19;:32;-1:-1:-1;6535:15:8;;;;6560:10;;;;6580:14;6299:302::o;5692:251::-;5775:7;5784;5807:12;5822:21;5835:7;5822:12;:21::i;:::-;5807:36;-1:-1:-1;5853:23:8;5879:17;:7;5807:36;5879:11;:17::i;:::-;5853:43;5931:4;;-1:-1:-1;5692:251:8;;-1:-1:-1;;;5692:251:8:o;1322:134:11:-;1380:7;1406:43;1410:1;1413;1406:43;;;;;;;;;;;;;;;;;:3;:43::i;5949:116:8:-;6043:4;6025:9;:24;;;;;;;;;;;:33;;6054:3;6025:28;:33::i;:::-;6016:4;5998:9;:24;;;;;;;;;;:60;-1:-1:-1;5949:116:8:o;6071:222::-;6156:7;6179:16;6198:39;6225:11;;6198:22;6209:10;;6198:6;;:10;;:22;;;;:::i;:39::-;6179:58;-1:-1:-1;6254:32:8;6280:5;6254:21;:7;6179:58;6254:11;:21::i;14:257:12:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;812:398::-;880:6;888;941:2;929:9;920:7;916:23;912:32;909:2;;;962:6;954;947:22;909:2;1006:9;993:23;1025:31;1050:5;1025:31;:::i;:::-;1075:5;-1:-1:-1;1132:2:12;1117:18;;1104:32;1145:33;1104:32;1145:33;:::i;:::-;1197:7;1187:17;;;899:311;;;;;:::o;1215:466::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:2;;;1382:6;1374;1367:22;1329:2;1426:9;1413:23;1445:31;1470:5;1445:31;:::i;:::-;1495:5;-1:-1:-1;1552:2:12;1537:18;;1524:32;1565:33;1524:32;1565:33;:::i;:::-;1319:362;;1617:7;;-1:-1:-1;;;1671:2:12;1656:18;;;;1643:32;;1319:362::o;1686:325::-;1754:6;1762;1815:2;1803:9;1794:7;1790:23;1786:32;1783:2;;;1836:6;1828;1821:22;1783:2;1880:9;1867:23;1899:31;1924:5;1899:31;:::i;:::-;1949:5;2001:2;1986:18;;;;1973:32;;-1:-1:-1;;;1773:238:12:o;2016:293::-;2072:6;2125:2;2113:9;2104:7;2100:23;2096:32;2093:2;;;2146:6;2138;2131:22;2093:2;2190:9;2177:23;2243:5;2236:13;2229:21;2222:5;2219:32;2209:2;;2270:6;2262;2255:22;2314:190;2373:6;2426:2;2414:9;2405:7;2401:23;2397:32;2394:2;;;2447:6;2439;2432:22;2394:2;-1:-1:-1;2475:23:12;;2384:120;-1:-1:-1;2384:120:12:o;2509:258::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;-1:-1:-1;;2687:23:12;;;2757:2;2742:18;;;2729:32;;-1:-1:-1;2596:171:12:o;2772:463::-;2825:3;2863:5;2857:12;2890:6;2885:3;2878:19;2916:4;2945:2;2940:3;2936:12;2929:19;;2982:2;2975:5;2971:14;3003:3;3015:195;3029:6;3026:1;3023:13;3015:195;;;3094:13;;-1:-1:-1;;;;;3090:39:12;3078:52;;3150:12;;;;3185:15;;;;3126:1;3044:9;3015:195;;;-1:-1:-1;3226:3:12;;2833:402;-1:-1:-1;;;;;2833:402:12:o;3973:261::-;4152:2;4141:9;4134:21;4115:4;4172:56;4224:2;4213:9;4209:18;4201:6;4172:56;:::i;4663:603::-;4775:4;4804:2;4833;4822:9;4815:21;4865:6;4859:13;4908:6;4903:2;4892:9;4888:18;4881:34;4933:4;4946:140;4960:6;4957:1;4954:13;4946:140;;;5055:14;;;5051:23;;5045:30;5021:17;;;5040:2;5017:26;5010:66;4975:10;;4946:140;;;5104:6;5101:1;5098:13;5095:2;;;5174:4;5169:2;5160:6;5149:9;5145:22;5141:31;5134:45;5095:2;-1:-1:-1;5250:2:12;5229:15;-1:-1:-1;;5225:29:12;5210:45;;;;5257:2;5206:54;;4784:482;-1:-1:-1;;;4784:482:12:o;9577:356::-;9779:2;9761:21;;;9798:18;;;9791:30;9857:34;9852:2;9837:18;;9830:62;9924:2;9909:18;;9751:182::o;11339:582::-;11638:6;11627:9;11620:25;11681:6;11676:2;11665:9;11661:18;11654:34;11724:3;11719:2;11708:9;11704:18;11697:31;11601:4;11745:57;11797:3;11786:9;11782:19;11774:6;11745:57;:::i;:::-;-1:-1:-1;;;;;11838:32:12;;;;11833:2;11818:18;;11811:60;-1:-1:-1;11902:3:12;11887:19;11880:35;11737:65;11610:311;-1:-1:-1;;;11610:311:12:o;12368:128::-;12408:3;12439:1;12435:6;12432:1;12429:13;12426:2;;;12445:18;;:::i;:::-;-1:-1:-1;12481:9:12;;12416:80::o;12501:217::-;12541:1;12567;12557:2;;-1:-1:-1;;;12592:31:12;;12646:4;12643:1;12636:15;12674:4;12599:1;12664:15;12557:2;-1:-1:-1;12703:9:12;;12547:171::o;12723:168::-;12763:7;12829:1;12825;12821:6;12817:14;12814:1;12811:21;12806:1;12799:9;12792:17;12788:45;12785:2;;;12836:18;;:::i;:::-;-1:-1:-1;12876:9:12;;12775:116::o;12896:125::-;12936:4;12964:1;12961;12958:8;12955:2;;;12969:18;;:::i;:::-;-1:-1:-1;13006:9:12;;12945:76::o;13026:380::-;13105:1;13101:12;;;;13148;;;13169:2;;13223:4;13215:6;13211:17;13201:27;;13169:2;13276;13268:6;13265:14;13245:18;13242:38;13239:2;;;13322:10;13317:3;13313:20;13310:1;13303:31;13357:4;13354:1;13347:15;13385:4;13382:1;13375:15;13411:135;13450:3;-1:-1:-1;;13471:17:12;;13468:2;;;13491:18;;:::i;:::-;-1:-1:-1;13538:1:12;13527:13;;13458:88::o;13551:127::-;13612:10;13607:3;13603:20;13600:1;13593:31;13643:4;13640:1;13633:15;13667:4;13664:1;13657:15;13683:131;-1:-1:-1;;;;;13758:31:12;;13748:42;;13738:2;;13804:1;13801;13794:12

Swarm Source

ipfs://b6c10627b31d16e8365efb718cdf983bab558ec4c662957c2b0830373e78efb8
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.