POL Price: $0.398328 (+5.38%)
Gas: 66.1 GWei
 

Overview

Max Total Supply

124,163.707502891057205921 KAVIAN

Holders

680 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Multi-Chain Yield farming experience.

Contract Source Code Verified (Exact Match)

Contract Name:
KavianToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion
File 1 of 11 : KavianToken.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

import "./libs/BEP20.sol";

import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";


// KavianToken with Governance.
contract KavianToken is BEP20 {
	// Transfer tax rate in basis points. (default 5%)
	uint16 public transferTaxRate = 500;
	// Burn rate % of transfer tax. (default 20% x 5% = 1% of total amount).
	uint16 public burnRate = 20;
	// Max transfer tax rate: 10%.
	uint16 public constant MAXIMUM_TRANSFER_TAX_RATE = 1000;
	// Burn address
	address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD;

	// Max transfer amount rate in basis points. (default is 1% of total supply)
	uint16 public maxTransferAmountRate = 100;
	// Min value of the max transfer amount rate. (0.5%)
	uint16 public constant maxTransferAmountRateMinValue = 50;

	// Addresses that excluded from antiWhale
	mapping(address => bool) private _excludedFromAntiWhale;
	// Automatic swap and liquify enabled
	bool public swapAndLiquifyEnabled = false;
	// Min amount to liquify. (default 25 KAVIAN)
	uint256 public minAmountToLiquify = 25 ether;
	// The swap router.
	IUniswapV2Router02 public constant swapRouter = IUniswapV2Router02(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff);
	// The trading pair
	address public swapPair;
	// In swap and liquify
	bool private _inSwapAndLiquify;
	// Liquidity address, if not set it will be operator, timelock after start
	address public liquidityAddress = 0x000000000000000000000000000000000000dEaD;

	// The operator can only update the transfer tax rate
	address private _operator;

	// Events
	event OperatorTransferred(address indexed previousOperator, address indexed newOperator);
	event TransferTaxRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate);
	event BurnRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate);
	event MaxTransferAmountRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate);
	event SwapAndLiquifyEnabledUpdated(address indexed operator, bool enabled);
	event MinAmountToLiquifyUpdated(address indexed operator, uint256 previousAmount, uint256 newAmount);
	event SwapRouterUpdated(address indexed operator, address indexed router, address indexed pair);
	event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);

	modifier onlyOperator() {
		require(_operator == msg.sender, "operator: caller is not the operator");
		_;
	}

	modifier antiWhale(
		address sender,
		address recipient,
		uint256 amount
	) {
		if (maxTransferAmount() > 0) {
			if (_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false) {
				require(amount <= maxTransferAmount(), "KAVIAN::antiWhale: Transfer amount exceeds the maxTransferAmount");
			}
		}
		_;
	}

	modifier lockTheSwap {
		_inSwapAndLiquify = true;
		_;
		_inSwapAndLiquify = false;
	}

	modifier transferTaxFree {
		uint16 _transferTaxRate = transferTaxRate;
		transferTaxRate = 0;
		_;
		transferTaxRate = _transferTaxRate;
	}

	/**
	 * @notice Constructs the KavianToken contract.
	 */
	constructor() public BEP20("KAVIAN Token", "KAVIAN") {
		_operator = _msgSender();
		emit OperatorTransferred(address(0), _operator);

		_excludedFromAntiWhale[msg.sender] = true;
		_excludedFromAntiWhale[address(0)] = true;
		_excludedFromAntiWhale[address(this)] = true;
		_excludedFromAntiWhale[BURN_ADDRESS] = true;
	}

	/// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
	function mint(address _to, uint256 _amount) public onlyOwner {
		_mint(_to, _amount);
		_moveDelegates(address(0), _delegates[_to], _amount);
	}

	/// @dev overrides transfer function to meet tokenomics of KAVIAN
	function _transfer(
		address sender,
		address recipient,
		uint256 amount
	) internal virtual override antiWhale(sender, recipient, amount) {
		// swap and liquify
		if (
			swapAndLiquifyEnabled == true &&
			_inSwapAndLiquify == false &&
			address(swapRouter) != address(0) &&
			swapPair != address(0) &&
			sender != swapPair &&
			sender != owner()
		) {
			swapAndLiquify();
		}

		if (recipient == BURN_ADDRESS || transferTaxRate == 0) {
			super._transfer(sender, recipient, amount);
		} else {
			// default tax is 5% of every transfer
			uint256 taxAmount = amount.mul(transferTaxRate).div(10000);
			uint256 burnAmount = taxAmount.mul(burnRate).div(100);
			uint256 liquidityAmount = taxAmount.sub(burnAmount);
			require(taxAmount == burnAmount + liquidityAmount, "KAVIAN::transfer: Burn value invalid");

			// default 95% of transfer sent to recipient
			uint256 sendAmount = amount.sub(taxAmount);
			require(amount == sendAmount + taxAmount, "KAVIAN::transfer: Tax value invalid");

			super._transfer(sender, BURN_ADDRESS, burnAmount);
			super._transfer(sender, address(this), liquidityAmount);
			super._transfer(sender, recipient, sendAmount);
			amount = sendAmount;
		}
	}

	/// @dev Swap and liquify
	function swapAndLiquify() private lockTheSwap transferTaxFree {
		uint256 contractTokenBalance = balanceOf(address(this));
		uint256 maxTransferAmount = maxTransferAmount();
		contractTokenBalance = contractTokenBalance > maxTransferAmount ? maxTransferAmount : contractTokenBalance;

		if (contractTokenBalance >= minAmountToLiquify) {
			// only min amount to liquify
			uint256 liquifyAmount = minAmountToLiquify;

			// split the liquify amount into halves
			uint256 half = liquifyAmount.div(2);
			uint256 otherHalf = liquifyAmount.sub(half);

			// 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 liquidity event include any ETH that
			// has been manually sent to the contract
			uint256 initialBalance = address(this).balance;

			// swap tokens for ETH
			swapTokensForEth(half);

			// how much ETH did we just swap into?
			uint256 newBalance = address(this).balance.sub(initialBalance);

			// add liquidity
			addLiquidity(otherHalf, newBalance);

			emit SwapAndLiquify(half, newBalance, otherHalf);
		}
	}

	/// @dev Swap tokens for eth
	function swapTokensForEth(uint256 tokenAmount) private {
		// generate the swap pair path of token -> weth
		address[] memory path = new address[](2);
		path[0] = address(this);
		path[1] = swapRouter.WETH();

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

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

	/// @dev Add liquidity
	function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
		// approve token transfer to cover all possible scenarios
		_approve(address(this), address(swapRouter), tokenAmount);
		address liquidityAddressTarget = operator();
		if (liquidityAddress != BURN_ADDRESS) {
			liquidityAddressTarget = liquidityAddress;
		}
		// add the liquidity
		swapRouter.addLiquidityETH{value: ethAmount}(
			address(this),
			tokenAmount,
			0, // slippage is unavoidable
			0, // slippage is unavoidable
			liquidityAddressTarget,
			block.timestamp
		);
	}

	/**
	 * @dev Returns the max transfer amount.
	 */
	function maxTransferAmount() public view returns (uint256) {
		return totalSupply().mul(maxTransferAmountRate).div(10000);
	}

	/**
	 * @dev Returns the address is excluded from antiWhale or not.
	 */
	function isExcludedFromAntiWhale(address _account) public view returns (bool) {
		return _excludedFromAntiWhale[_account];
	}

	// To receive MATIC from swapRouter when swapping
	receive() external payable {}

	/**
	 * @dev Update the transfer tax rate.
	 * Can only be called by the current operator.
	 */
	function updateTransferTaxRate(uint16 _transferTaxRate) public onlyOperator {
		require(_transferTaxRate <= MAXIMUM_TRANSFER_TAX_RATE, "KAVIAN::updateTransferTaxRate: Transfer tax rate must not exceed the maximum rate.");
		emit TransferTaxRateUpdated(msg.sender, transferTaxRate, _transferTaxRate);
		transferTaxRate = _transferTaxRate;
	}

	/**
	 * @dev Update the burn rate.
	 * Can only be called by the current operator.
	 */
	function updateBurnRate(uint16 _burnRate) public onlyOperator {
		require(_burnRate <= 100, "KAVIAN::updateBurnRate: Burn rate must not exceed the maximum rate.");
		emit BurnRateUpdated(msg.sender, burnRate, _burnRate);
		burnRate = _burnRate;
	}

	/**
	 * @dev Update the max transfer amount rate.
	 * Can only be called by the current operator.
	 */
	function updateMaxTransferAmountRate(uint16 _maxTransferAmountRate) public onlyOperator {
		require(_maxTransferAmountRate <= 10000, "KAVIAN::updateMaxTransferAmountRate: Max transfer amount rate must not exceed the maximum rate.");
		require(
			_maxTransferAmountRate >= maxTransferAmountRateMinValue,
			"KAVIAN::updateMaxTransferAmountRate: Max transfer amount rate must be grater than min rate"
		);
		emit MaxTransferAmountRateUpdated(msg.sender, maxTransferAmountRate, _maxTransferAmountRate);
		maxTransferAmountRate = _maxTransferAmountRate;
	}

	/**
	 * @dev Update the min amount to liquify.
	 * Can only be called by the current operator.
	 */
	function updateMinAmountToLiquify(uint256 _minAmount) public onlyOperator {
		emit MinAmountToLiquifyUpdated(msg.sender, minAmountToLiquify, _minAmount);
		minAmountToLiquify = _minAmount;
	}

	/**
	 * @dev Exclude or include an address from antiWhale.
	 * Can only be called by the current operator.
	 */
	function setExcludedFromAntiWhale(address _account, bool _excluded) public onlyOperator {
		_excludedFromAntiWhale[_account] = _excluded;
	}

	/**
	 * @dev Update the swapAndLiquifyEnabled.
	 * Can only be called by the current operator.
	 */
	function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOperator {
		emit SwapAndLiquifyEnabledUpdated(msg.sender, _enabled);
		swapAndLiquifyEnabled = _enabled;
	}

	function setLiquidityAddress(address _liquidityAddress) public onlyOperator {
		liquidityAddress = _liquidityAddress;
	}

	function setSwapPair() public onlyOperator {
		swapPair = IUniswapV2Factory(swapRouter.factory()).getPair(address(this), swapRouter.WETH());
		require(swapPair != address(0), "KAVIAN::updateSwapRouter: Invalid pair address. Check if liquidity was added");
	}

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

	/**
	 * @dev Transfers operator of the contract to a new account (`newOperator`).
	 * Can only be called by the current operator.
	 */
	function transferOperator(address newOperator) public onlyOperator {
		require(newOperator != address(0), "KAVIAN::transferOperator: new operator is the zero address");
		emit OperatorTransferred(_operator, newOperator);
		_operator = newOperator;
	}

	// Copied and modified from YAM code:
	// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
	// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
	// Which is copied and modified from COMPOUND:
	// https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

	/// @dev A record of each accounts delegate
	mapping(address => address) internal _delegates;

	/// @notice A checkpoint for marking number of votes from a given block
	struct Checkpoint {
		uint32 fromBlock;
		uint256 votes;
	}

	/// @notice A record of votes checkpoints for each account, by index
	mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

	/// @notice The number of checkpoints for each account
	mapping(address => uint32) public numCheckpoints;

	/// @notice The EIP-712 typehash for the contract's domain
	bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

	/// @notice The EIP-712 typehash for the delegation struct used by the contract
	bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

	/// @notice A record of states for signing / validating signatures
	mapping(address => uint256) public nonces;

	/// @notice An event thats emitted when an account changes its delegate
	event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

	/// @notice An event thats emitted when a delegate account's vote balance changes
	event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

	/**
	 * @notice Delegate votes from `msg.sender` to `delegatee`
	 * @param delegator The address to get delegatee for
	 */
	function delegates(address delegator) external view returns (address) {
		return _delegates[delegator];
	}

	/**
	 * @notice Delegate votes from `msg.sender` to `delegatee`
	 * @param delegatee The address to delegate votes to
	 */
	function delegate(address delegatee) external {
		return _delegate(msg.sender, delegatee);
	}

	/**
	 * @notice Delegates votes from signatory to `delegatee`
	 * @param delegatee The address to delegate votes to
	 * @param nonce The contract state required to match the signature
	 * @param expiry The time at which to expire the signature
	 * @param v The recovery byte of the signature
	 * @param r Half of the ECDSA signature pair
	 * @param s Half of the ECDSA signature pair
	 */
	function delegateBySig(
		address delegatee,
		uint256 nonce,
		uint256 expiry,
		uint8 v,
		bytes32 r,
		bytes32 s
	) external {
		bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this)));

		bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));

		bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));

		address signatory = ecrecover(digest, v, r, s);
		require(signatory != address(0), "KAVIAN::delegateBySig: invalid signature");
		require(nonce == nonces[signatory]++, "KAVIAN::delegateBySig: invalid nonce");
		require(now <= expiry, "KAVIAN::delegateBySig: signature expired");
		return _delegate(signatory, delegatee);
	}

	/**
	 * @notice Gets the current votes balance for `account`
	 * @param account The address to get votes balance
	 * @return The number of current votes for `account`
	 */
	function getCurrentVotes(address account) external view returns (uint256) {
		uint32 nCheckpoints = numCheckpoints[account];
		return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
	}

	/**
	 * @notice Determine the prior number of votes for an account as of a block number
	 * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
	 * @param account The address of the account to check
	 * @param blockNumber The block number to get the vote balance at
	 * @return The number of votes the account had as of the given block
	 */
	function getPriorVotes(address account, uint256 blockNumber) external view returns (uint256) {
		require(blockNumber < block.number, "KAVIAN::getPriorVotes: not yet determined");

		uint32 nCheckpoints = numCheckpoints[account];
		if (nCheckpoints == 0) {
			return 0;
		}

		// First check most recent balance
		if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
			return checkpoints[account][nCheckpoints - 1].votes;
		}

		// Next check implicit zero balance
		if (checkpoints[account][0].fromBlock > blockNumber) {
			return 0;
		}

		uint32 lower = 0;
		uint32 upper = nCheckpoints - 1;
		while (upper > lower) {
			uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
			Checkpoint memory cp = checkpoints[account][center];
			if (cp.fromBlock == blockNumber) {
				return cp.votes;
			} else if (cp.fromBlock < blockNumber) {
				lower = center;
			} else {
				upper = center - 1;
			}
		}
		return checkpoints[account][lower].votes;
	}

	function _delegate(address delegator, address delegatee) internal {
		address currentDelegate = _delegates[delegator];
		uint256 delegatorBalance = balanceOf(delegator); // balance of underlying KAVIAN (not scaled);
		_delegates[delegator] = delegatee;

		emit DelegateChanged(delegator, currentDelegate, delegatee);

		_moveDelegates(currentDelegate, delegatee, delegatorBalance);
	}

	function _moveDelegates(
		address srcRep,
		address dstRep,
		uint256 amount
	) internal {
		if (srcRep != dstRep && amount > 0) {
			if (srcRep != address(0)) {
				// decrease old representative
				uint32 srcRepNum = numCheckpoints[srcRep];
				uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
				uint256 srcRepNew = srcRepOld.sub(amount);
				_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
			}

			if (dstRep != address(0)) {
				// increase new representative
				uint32 dstRepNum = numCheckpoints[dstRep];
				uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
				uint256 dstRepNew = dstRepOld.add(amount);
				_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
			}
		}
	}

	function _writeCheckpoint(
		address delegatee,
		uint32 nCheckpoints,
		uint256 oldVotes,
		uint256 newVotes
	) internal {
		uint32 blockNumber = safe32(block.number, "KAVIAN::_writeCheckpoint: block number exceeds 32 bits");

		if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
			checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
		} else {
			checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
			numCheckpoints[delegatee] = nCheckpoints + 1;
		}

		emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
	}

	function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) {
		require(n < 2**32, errorMessage);
		return uint32(n);
	}

	function getChainId() internal pure returns (uint256) {
		uint256 chainId;
		assembly {
			chainId := chainid()
		}
		return chainId;
	}
}

File 2 of 11 : BEP20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.4.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./IBEP20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";

/**
 * @dev Implementation of the {IBEP20} 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 {BEP20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-BEP20-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 BEP20 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 {IBEP20-approve}.
 */
contract BEP20 is Context, IBEP20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external override view returns (address) {
        return owner();
    }

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() public override view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() public override view returns (string memory) {
        return _symbol;
    }

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

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

    /**
     * @dev See {BEP20-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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {BEP20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {BEP20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {BEP20};
     *
     * 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 override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(amount, "BEP20: 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 {BEP20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public 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 {BEP20-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 returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero")
        );
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
     * the total supply.
     *
     * Requirements
     *
     * - `msg.sender` must be the token owner
     */
    function mint(uint256 amount) public onlyOwner returns (bool) {
        _mint(_msgSender(), amount);
        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), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "BEP20: 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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "BEP20: mint to the zero address");

        _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 {
        require(account != address(0), "BEP20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "BEP20: 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 is 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 {
        require(owner != address(0), "BEP20: approve from the zero address");
        require(spender != address(0), "BEP20: approve to the zero address");

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance")
        );
    }
}

File 3 of 11 : IBEP20.sol
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity >=0.4.0;

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

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

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

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

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address);

    /**
     * @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 4 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        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 5 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "../GSN/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 () internal {
        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() public 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) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @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 8 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 9 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 10 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

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

import './IUniswapV2Router01.sol';

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 1500
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"BurnRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"MaxTransferAmountRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"MinAmountToLiquifyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"router","type":"address"},{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"SwapRouterUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"TransferTaxRateUpdated","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_TRANSFER_TAX_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","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":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isExcludedFromAntiWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmountRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmountRateMinValue","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmountToLiquify","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"setExcludedFromAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityAddress","type":"address"}],"name":"setLiquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSwapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_burnRate","type":"uint16"}],"name":"updateBurnRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxTransferAmountRate","type":"uint16"}],"name":"updateMaxTransferAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minAmount","type":"uint256"}],"name":"updateMinAmountToLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_transferTaxRate","type":"uint16"}],"name":"updateTransferTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526006805462ffff0019166201f4001764ffff000000191663140000001761ffff60281b1916656400000000001790556008805460ff1916905568015af1d78b58c40000600955600b805461dead6001600160a01b03199091161790553480156200006d57600080fd5b506040518060400160405280600c81526020016b25a0ab24a0a7102a37b5b2b760a11b8152506040518060400160405280600681526020016525a0ab24a0a760d11b8152506000620000c46200022c60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200012390600490602085019062000230565b5080516200013990600590602084019062000230565b50506006805460ff1916601217905550620001536200022c565b600c80546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3336000908152600760205260408082208054600160ff1991821681179092557f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df8054821683179055308452918320805483168217905561dead9092527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d80549091169091179055620002cc565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200027357805160ff1916838001178555620002a3565b82800160010185558215620002a3579182015b82811115620002a357825182559160200191906001019062000286565b50620002b1929150620002b5565b5090565b5b80821115620002b15760008155600101620002b6565b6135c580620002dc6000396000f3fe60806040526004361061032d5760003560e01c8063782d6fe1116101a5578063b65d08b0116100ec578063d824835811610095578063f1127ed81161006f578063f1127ed814610b10578063f2fde38b14610b6f578063f607f2b414610ba2578063fccc281314610bd057610334565b8063d824835814610aab578063dd62ed3e14610ac0578063e7a324dc14610afb57610334565b8063c3cda520116100c6578063c3cda52014610a07578063c7f59a6714610a5b578063c84d24f914610a9657610334565b8063b65d08b0146109c8578063bed99850146109dd578063c31c9c07146109f257610334565b8063a0712d681161014e578063a9059cbb11610128578063a9059cbb14610947578063a9e7572314610980578063b4b5ea571461099557610334565b8063a0712d68146108ba578063a392e674146108e4578063a457c2d71461090e57610334565b80638da5cb5b1161017f5780638da5cb5b1461086457806395d89b41146108795780639f9a4e7f1461088e57610334565b8063782d6fe1146107e35780637ecebe001461081c578063893d20e81461084f57610334565b8063376c239111610274578063570ca7351161021d5780636a141e2c116101f75780636a141e2c146107215780636fcfff451461074f57806370a082311461079b578063715018a6146107ce57610334565b8063570ca735146106a6578063587cde1e146106bb5780635c19a95c146106ee57610334565b806340c10f191161024e57806340c10f19146106255780634a74bb021461065e578063525fa81f1461067357610334565b8063376c2391146105a957806339509351146105d75780633ff8bf2e1461061057610334565b806326991cc8116102d657806329605e77116102b057806329605e7714610534578063313ce567146105695780633221c93f1461059457610334565b806326991cc8146104bb578063269f534c146104ec57806327feac931461051f57610334565b80631ad9339a116103075780631ad9339a1461043757806320606b701461046357806323b872dd1461047857610334565b806306fdde0314610339578063095ea7b3146103c357806318160ddd1461041057610334565b3661033457005b600080fd5b34801561034557600080fd5b5061034e610be5565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610388578181015183820152602001610370565b50505050905090810190601f1680156103b55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103cf57600080fd5b506103fc600480360360408110156103e657600080fd5b506001600160a01b038135169060200135610c7b565b604080519115158252519081900360200190f35b34801561041c57600080fd5b50610425610c99565b60408051918252519081900360200190f35b34801561044357600080fd5b5061044c610c9f565b6040805161ffff9092168252519081900360200190f35b34801561046f57600080fd5b50610425610ca5565b34801561048457600080fd5b506103fc6004803603606081101561049b57600080fd5b506001600160a01b03813581169160208101359091169060400135610cc9565b3480156104c757600080fd5b506104d0610d50565b604080516001600160a01b039092168252519081900360200190f35b3480156104f857600080fd5b506103fc6004803603602081101561050f57600080fd5b50356001600160a01b0316610d5f565b34801561052b57600080fd5b5061044c610d7d565b34801561054057600080fd5b506105676004803603602081101561055757600080fd5b50356001600160a01b0316610d82565b005b34801561057557600080fd5b5061057e610e79565b6040805160ff9092168252519081900360200190f35b3480156105a057600080fd5b506104d0610e82565b3480156105b557600080fd5b50610567600480360360208110156105cc57600080fd5b503561ffff16610e91565b3480156105e357600080fd5b506103fc600480360360408110156105fa57600080fd5b506001600160a01b038135169060200135610f86565b34801561061c57600080fd5b5061044c610fd4565b34801561063157600080fd5b506105676004803603604081101561064857600080fd5b506001600160a01b038135169060200135610fe7565b34801561066a57600080fd5b506103fc611084565b34801561067f57600080fd5b506105676004803603602081101561069657600080fd5b50356001600160a01b031661108d565b3480156106b257600080fd5b506104d0611105565b3480156106c757600080fd5b506104d0600480360360208110156106de57600080fd5b50356001600160a01b0316611114565b3480156106fa57600080fd5b506105676004803603602081101561071157600080fd5b50356001600160a01b0316611132565b34801561072d57600080fd5b506105676004803603602081101561074457600080fd5b503561ffff1661113f565b34801561075b57600080fd5b506107826004803603602081101561077257600080fd5b50356001600160a01b0316611284565b6040805163ffffffff9092168252519081900360200190f35b3480156107a757600080fd5b50610425600480360360208110156107be57600080fd5b50356001600160a01b031661129c565b3480156107da57600080fd5b506105676112b7565b3480156107ef57600080fd5b506104256004803603604081101561080657600080fd5b506001600160a01b038135169060200135611378565b34801561082857600080fd5b506104256004803603602081101561083f57600080fd5b50356001600160a01b0316611580565b34801561085b57600080fd5b506104d0611592565b34801561087057600080fd5b506104d06115a1565b34801561088557600080fd5b5061034e6115b0565b34801561089a57600080fd5b50610567600480360360208110156108b157600080fd5b50351515611611565b3480156108c657600080fd5b506103fc600480360360208110156108dd57600080fd5b50356116a5565b3480156108f057600080fd5b506105676004803603602081101561090757600080fd5b503561172a565b34801561091a57600080fd5b506103fc6004803603604081101561093157600080fd5b506001600160a01b0381351690602001356117b6565b34801561095357600080fd5b506103fc6004803603604081101561096a57600080fd5b506001600160a01b03813516906020013561181e565b34801561098c57600080fd5b50610425611832565b3480156109a157600080fd5b50610425600480360360208110156109b857600080fd5b50356001600160a01b0316611865565b3480156109d457600080fd5b5061044c6118c9565b3480156109e957600080fd5b5061044c6118d8565b3480156109fe57600080fd5b506104d06118e9565b348015610a1357600080fd5b50610567600480360360c0811015610a2a57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611901565b348015610a6757600080fd5b5061056760048036036040811015610a7e57600080fd5b506001600160a01b0381351690602001351515611b8f565b348015610aa257600080fd5b50610567611c03565b348015610ab757600080fd5b50610425611e64565b348015610acc57600080fd5b5061042560048036036040811015610ae357600080fd5b506001600160a01b0381358116916020013516611e6a565b348015610b0757600080fd5b50610425611e95565b348015610b1c57600080fd5b50610b4f60048036036040811015610b3357600080fd5b5080356001600160a01b0316906020013563ffffffff16611eb9565b6040805163ffffffff909316835260208301919091528051918290030190f35b348015610b7b57600080fd5b5061056760048036036020811015610b9257600080fd5b50356001600160a01b0316611ee6565b348015610bae57600080fd5b5061056760048036036020811015610bc557600080fd5b503561ffff16611ffd565b348015610bdc57600080fd5b506104d06120f7565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b5050505050905090565b6000610c8f610c886120fd565b8484612101565b5060015b92915050565b60035490565b6103e881565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610cd68484846121ed565b610d4684610ce26120fd565b610d41856040518060600160405280602881526020016131c7602891396001600160a01b038a16600090815260026020526040812090610d206120fd565b6001600160a01b03168152602081019190915260400160002054919061246b565b612101565b5060019392505050565b600a546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b603281565b600c546001600160a01b03163314610dcb5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6001600160a01b038116610e105760405162461bcd60e51b815260040180806020018281038252603a81526020018061318d603a913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed90600090a3600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60065460ff1690565b600b546001600160a01b031681565b600c546001600160a01b03163314610eda5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6103e861ffff82161115610f1f5760405162461bcd60e51b815260040180806020018281038252605281526020018061327a6052913960600191505060405180910390fd5b6006546040805161ffff610100909304831681529183166020830152805133927fe9d5c8ee2a65d4fb859c680669d8f902172d53e3f15f9f11108a31bbada4b70b92908290030190a26006805461ffff9092166101000262ffff0019909216919091179055565b6000610c8f610f936120fd565b84610d418560026000610fa46120fd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612502565b60065465010000000000900461ffff1681565b610fef6120fd565b6000546001600160a01b03908116911614611051576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61105b828261255c565b6001600160a01b038083166000908152600d6020526040812054611080921683612642565b5050565b60085460ff1681565b600c546001600160a01b031633146110d65760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600c546001600160a01b031690565b6001600160a01b039081166000908152600d60205260409020541690565b61113c3382612784565b50565b600c546001600160a01b031633146111885760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6127108161ffff1611156111cd5760405162461bcd60e51b815260040180806020018281038252605f8152602001806132cc605f913960600191505060405180910390fd5b603261ffff821610156112115760405162461bcd60e51b815260040180806020018281038252605a81526020018061332b605a913960600191505060405180910390fd5b6006546040805161ffff65010000000000909304831681529183166020830152805133927fb62a50fc861a770636e85357becb3b82a32e911106609d4985871eaf29011e0892908290030190a26006805461ffff909216650100000000000266ffff000000000019909216919091179055565b600f6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526001602052604090205490565b6112bf6120fd565b6000546001600160a01b03908116911614611321576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b60004382106113b85760405162461bcd60e51b81526004018080602001828103825260298152602001806134166029913960400191505060405180910390fd5b6001600160a01b0383166000908152600f602052604090205463ffffffff16806113e6576000915050610c93565b6001600160a01b0384166000908152600e6020908152604080832063ffffffff600019860181168552925290912054168310611455576001600160a01b0384166000908152600e602090815260408083206000199490940163ffffffff16835292905220600101549050610c93565b6001600160a01b0384166000908152600e6020908152604080832083805290915290205463ffffffff16831015611490576000915050610c93565b600060001982015b8163ffffffff168163ffffffff16111561154957600282820363ffffffff160481036114c26130de565b506001600160a01b0387166000908152600e6020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561152457602001519450610c939350505050565b805163ffffffff1687111561153b57819350611542565b6001820392505b5050611498565b506001600160a01b0385166000908152600e6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60106020526000908152604090205481565b600061159c6115a1565b905090565b6000546001600160a01b031690565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c715780601f10610c4657610100808354040283529160200191610c71565b600c546001600160a01b0316331461165a5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b604080518215158152905133917f3ca65588b29182880283bc8778fea5f01b351e01d874839a39a99e1c281a2113919081900360200190a26008805460ff1916911515919091179055565b60006116af6120fd565b6000546001600160a01b03908116911614611711576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61172261171c6120fd565b8361255c565b506001919050565b600c546001600160a01b031633146117735760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6009546040805191825260208201839052805133927f54c7a13ff01698e4ed3550a23216585f8472c7b1515a932eac98c9a6d48990c592908290030190a2600955565b6000610c8f6117c36120fd565b84610d41856040518060600160405280602581526020016134e260259139600260006117ed6120fd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061246b565b6000610c8f61182b6120fd565b84846121ed565b60065460009061159c906127109061185f9065010000000000900461ffff16611859610c99565b90612826565b9061287f565b6001600160a01b0381166000908152600f602052604081205463ffffffff16806118905760006118c2565b6001600160a01b0383166000908152600e6020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b600654610100900461ffff1681565b6006546301000000900461ffff1681565b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff81565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661192c610be5565b8051906020012061193b6128c1565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a905282518085039091018152610140840183528051908501207f19010000000000000000000000000000000000000000000000000000000000006101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015611a89573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611adb5760405162461bcd60e51b81526004018080602001828103825260288152602001806132526028913960400191505060405180910390fd5b6001600160a01b03811660009081526010602052604090208054600181019091558914611b395760405162461bcd60e51b81526004018080602001828103825260248152602001806133d16024913960400191505060405180910390fd5b87421115611b785760405162461bcd60e51b81526004018080602001828103825260288152602001806130f66028913960400191505060405180910390fd5b611b82818b612784565b505050505b505050505050565b600c546001600160a01b03163314611bd85760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b600c546001600160a01b03163314611c4c5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9957600080fd5b505afa158015611cad573d6000803e3d6000fd5b505050506040513d6020811015611cc357600080fd5b5051604080517fad5c464800000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169163e6a4390591309173a5e0829caced8ffdd4de3c43696c57f7d7a678ff9163ad5c4648916004808301926020929190829003018186803b158015611d3d57600080fd5b505afa158015611d51573d6000803e3d6000fd5b505050506040513d6020811015611d6757600080fd5b5051604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926020929190829003018186803b158015611dcf57600080fd5b505afa158015611de3573d6000803e3d6000fd5b505050506040513d6020811015611df957600080fd5b5051600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03928316179081905516611e625760405162461bcd60e51b815260040180806020018281038252604c815260200180613385604c913960600191505060405180910390fd5b565b60095481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611eee6120fd565b6000546001600160a01b03908116911614611f50576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116611f955760405162461bcd60e51b81526004018080602001828103825260268152602001806131676026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600c546001600160a01b031633146120465760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b60648161ffff16111561208a5760405162461bcd60e51b815260040180806020018281038252604381526020018061354d6043913960600191505060405180910390fd5b6006546040805161ffff6301000000909304831681529183166020830152805133927f3eec69630b6f49d4e10eec296fce4baddec5f34c5430fb2cd72f8c4218f63fd092908290030190a26006805461ffff90921663010000000264ffff00000019909216919091179055565b61dead81565b3390565b6001600160a01b0383166121465760405162461bcd60e51b81526004018080602001828103825260248152602001806131436024913960400191505060405180910390fd5b6001600160a01b03821661218b5760405162461bcd60e51b815260040180806020018281038252602281526020018061352b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b82828260006121fa611832565b111561228d576001600160a01b03831660009081526007602052604090205460ff1615801561224257506001600160a01b03821660009081526007602052604090205460ff16155b1561228d5761224f611832565b81111561228d5760405162461bcd60e51b81526004018080602001828103825260408152602001806132126040913960400191505060405180910390fd5b60085460ff16151560011480156122bf5750600a5474010000000000000000000000000000000000000000900460ff16155b80156122c9575060015b80156122df5750600a546001600160a01b031615155b80156122f95750600a546001600160a01b03878116911614155b801561231e57506123086115a1565b6001600160a01b0316866001600160a01b031614155b1561232b5761232b6128c5565b6001600160a01b03851661dead148061234d5750600654610100900461ffff16155b156123625761235d868686612a1f565b611b87565b600654600090612384906127109061185f908890610100900461ffff16612826565b6006549091506000906123aa9060649061185f9085906301000000900461ffff16612826565b905060006123b88383612b71565b905080820183146123fa5760405162461bcd60e51b81526004018080602001828103825260248152602001806135076024913960400191505060405180910390fd5b60006124068885612b71565b905083810188146124485760405162461bcd60e51b81526004018080602001828103825260238152602001806131ef6023913960400191505060405180910390fd5b6124558a61dead85612a1f565b6124608a3084612a1f565b611b828a8a83612a1f565b600081848411156124fa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124bf5781810151838201526020016124a7565b50505050905090810190601f1680156124ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156118c2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166125b7576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546125c49082612502565b6003556001600160a01b0382166000908152600160205260409020546125ea9082612502565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b0316141580156126645750600081115b1561277f576001600160a01b038316156126f6576001600160a01b0383166000908152600f602052604081205463ffffffff1690816126a45760006126d6565b6001600160a01b0385166000908152600e6020908152604080832063ffffffff60001987011684529091529020600101545b905060006126e48285612b71565b90506126f286848484612bb3565b5050505b6001600160a01b0382161561277f576001600160a01b0382166000908152600f602052604081205463ffffffff169081612731576000612763565b6001600160a01b0384166000908152600e6020908152604080832063ffffffff60001987011684529091529020600101545b905060006127718285612502565b9050611b8785848484612bb3565b505050565b6001600160a01b038083166000908152600d6020526040812054909116906127ab8461129c565b6001600160a01b038581166000818152600d6020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612820828483612642565b50505050565b60008261283557506000610c93565b8282028284828161284257fe5b04146118c25760405162461bcd60e51b81526004018080602001828103825260218152602001806133f56021913960400191505060405180910390fd5b60006118c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d18565b4690565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556006805462ffff0019811690915561ffff6101009091041660006129273061129c565b90506000612933611832565b90508082116129425781612944565b805b915060095482106129d757600954600061295f82600261287f565b9050600061296d8383612b71565b90504761297983612d7d565b60006129854783612b71565b90506129918382612f68565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150505050505b50506006805461ffff9092166101000262ffff0019909216919091179055600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b6001600160a01b038316612a645760405162461bcd60e51b815260040180806020018281038252602581526020018061311e6025913960400191505060405180910390fd5b6001600160a01b038216612aa95760405162461bcd60e51b81526004018080602001828103825260238152602001806134bf6023913960400191505060405180910390fd5b612ae681604051806060016040528060268152602001613499602691396001600160a01b038616600090815260016020526040902054919061246b565b6001600160a01b038085166000908152600160205260408082209390935590841681522054612b159082612502565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006118c283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061246b565b6000612bd74360405180606001604052806036815260200161343f60369139613080565b905060008463ffffffff16118015612c2057506001600160a01b0385166000908152600e6020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612c5d576001600160a01b0385166000908152600e6020908152604080832063ffffffff60001989011684529091529020600101829055612cce565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600e84528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600f9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008183612d675760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156124bf5781810151838201526020016124a7565b506000838581612d7357fe5b0495945050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612dab57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e1857600080fd5b505afa158015612e2c573d6000803e3d6000fd5b505050506040513d6020811015612e4257600080fd5b5051815182906001908110612e5357fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612e923073a5e0829caced8ffdd4de3c43696c57f7d7a678ff84612101565b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612f2b578181015183820152602001612f13565b505050509050019650505050505050600060405180830381600087803b158015612f5457600080fd5b505af1158015611b87573d6000803e3d6000fd5b612f873073a5e0829caced8ffdd4de3c43696c57f7d7a678ff84612101565b6000612f91611105565b600b549091506001600160a01b031661dead14612fb65750600b546001600160a01b03165b604080517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810185905260006044820181905260648201526001600160a01b03831660848201524260a4820152905173a5e0829caced8ffdd4de3c43696c57f7d7a678ff9163f305d71991859160c48082019260609290919082900301818588803b15801561304e57600080fd5b505af1158015613062573d6000803e3d6000fd5b50505050506040513d606081101561307957600080fd5b5050505050565b60008164010000000084106130d65760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156124bf5781810151838201526020016124a7565b509192915050565b60408051808201909152600080825260208201529056fe4b415649414e3a3a64656c656761746542795369673a207369676e6174757265206578706972656442455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734b415649414e3a3a7472616e736665724f70657261746f723a206e6577206f70657261746f7220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654b415649414e3a3a7472616e736665723a205461782076616c756520696e76616c69644b415649414e3a3a616e74695768616c653a205472616e7366657220616d6f756e74206578636565647320746865206d61785472616e73666572416d6f756e744b415649414e3a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b415649414e3a3a7570646174655472616e73666572546178526174653a205472616e73666572207461782072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e4b415649414e3a3a7570646174654d61785472616e73666572416d6f756e74526174653a204d6178207472616e7366657220616d6f756e742072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e4b415649414e3a3a7570646174654d61785472616e73666572416d6f756e74526174653a204d6178207472616e7366657220616d6f756e742072617465206d75737420626520677261746572207468616e206d696e20726174654b415649414e3a3a75706461746553776170526f757465723a20496e76616c6964207061697220616464726573732e20436865636b206966206c6971756964697479207761732061646465644b415649414e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774b415649414e3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b415649414e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974736f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4b415649414e3a3a7472616e736665723a204275726e2076616c756520696e76616c696442455032303a20617070726f766520746f20746865207a65726f20616464726573734b415649414e3a3a7570646174654275726e526174653a204275726e2072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652ea26469706673582212204d24e877128d78744e51ebf087fe06fc8dfdc09c607fbf49efc94cd737badee364736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061032d5760003560e01c8063782d6fe1116101a5578063b65d08b0116100ec578063d824835811610095578063f1127ed81161006f578063f1127ed814610b10578063f2fde38b14610b6f578063f607f2b414610ba2578063fccc281314610bd057610334565b8063d824835814610aab578063dd62ed3e14610ac0578063e7a324dc14610afb57610334565b8063c3cda520116100c6578063c3cda52014610a07578063c7f59a6714610a5b578063c84d24f914610a9657610334565b8063b65d08b0146109c8578063bed99850146109dd578063c31c9c07146109f257610334565b8063a0712d681161014e578063a9059cbb11610128578063a9059cbb14610947578063a9e7572314610980578063b4b5ea571461099557610334565b8063a0712d68146108ba578063a392e674146108e4578063a457c2d71461090e57610334565b80638da5cb5b1161017f5780638da5cb5b1461086457806395d89b41146108795780639f9a4e7f1461088e57610334565b8063782d6fe1146107e35780637ecebe001461081c578063893d20e81461084f57610334565b8063376c239111610274578063570ca7351161021d5780636a141e2c116101f75780636a141e2c146107215780636fcfff451461074f57806370a082311461079b578063715018a6146107ce57610334565b8063570ca735146106a6578063587cde1e146106bb5780635c19a95c146106ee57610334565b806340c10f191161024e57806340c10f19146106255780634a74bb021461065e578063525fa81f1461067357610334565b8063376c2391146105a957806339509351146105d75780633ff8bf2e1461061057610334565b806326991cc8116102d657806329605e77116102b057806329605e7714610534578063313ce567146105695780633221c93f1461059457610334565b806326991cc8146104bb578063269f534c146104ec57806327feac931461051f57610334565b80631ad9339a116103075780631ad9339a1461043757806320606b701461046357806323b872dd1461047857610334565b806306fdde0314610339578063095ea7b3146103c357806318160ddd1461041057610334565b3661033457005b600080fd5b34801561034557600080fd5b5061034e610be5565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610388578181015183820152602001610370565b50505050905090810190601f1680156103b55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103cf57600080fd5b506103fc600480360360408110156103e657600080fd5b506001600160a01b038135169060200135610c7b565b604080519115158252519081900360200190f35b34801561041c57600080fd5b50610425610c99565b60408051918252519081900360200190f35b34801561044357600080fd5b5061044c610c9f565b6040805161ffff9092168252519081900360200190f35b34801561046f57600080fd5b50610425610ca5565b34801561048457600080fd5b506103fc6004803603606081101561049b57600080fd5b506001600160a01b03813581169160208101359091169060400135610cc9565b3480156104c757600080fd5b506104d0610d50565b604080516001600160a01b039092168252519081900360200190f35b3480156104f857600080fd5b506103fc6004803603602081101561050f57600080fd5b50356001600160a01b0316610d5f565b34801561052b57600080fd5b5061044c610d7d565b34801561054057600080fd5b506105676004803603602081101561055757600080fd5b50356001600160a01b0316610d82565b005b34801561057557600080fd5b5061057e610e79565b6040805160ff9092168252519081900360200190f35b3480156105a057600080fd5b506104d0610e82565b3480156105b557600080fd5b50610567600480360360208110156105cc57600080fd5b503561ffff16610e91565b3480156105e357600080fd5b506103fc600480360360408110156105fa57600080fd5b506001600160a01b038135169060200135610f86565b34801561061c57600080fd5b5061044c610fd4565b34801561063157600080fd5b506105676004803603604081101561064857600080fd5b506001600160a01b038135169060200135610fe7565b34801561066a57600080fd5b506103fc611084565b34801561067f57600080fd5b506105676004803603602081101561069657600080fd5b50356001600160a01b031661108d565b3480156106b257600080fd5b506104d0611105565b3480156106c757600080fd5b506104d0600480360360208110156106de57600080fd5b50356001600160a01b0316611114565b3480156106fa57600080fd5b506105676004803603602081101561071157600080fd5b50356001600160a01b0316611132565b34801561072d57600080fd5b506105676004803603602081101561074457600080fd5b503561ffff1661113f565b34801561075b57600080fd5b506107826004803603602081101561077257600080fd5b50356001600160a01b0316611284565b6040805163ffffffff9092168252519081900360200190f35b3480156107a757600080fd5b50610425600480360360208110156107be57600080fd5b50356001600160a01b031661129c565b3480156107da57600080fd5b506105676112b7565b3480156107ef57600080fd5b506104256004803603604081101561080657600080fd5b506001600160a01b038135169060200135611378565b34801561082857600080fd5b506104256004803603602081101561083f57600080fd5b50356001600160a01b0316611580565b34801561085b57600080fd5b506104d0611592565b34801561087057600080fd5b506104d06115a1565b34801561088557600080fd5b5061034e6115b0565b34801561089a57600080fd5b50610567600480360360208110156108b157600080fd5b50351515611611565b3480156108c657600080fd5b506103fc600480360360208110156108dd57600080fd5b50356116a5565b3480156108f057600080fd5b506105676004803603602081101561090757600080fd5b503561172a565b34801561091a57600080fd5b506103fc6004803603604081101561093157600080fd5b506001600160a01b0381351690602001356117b6565b34801561095357600080fd5b506103fc6004803603604081101561096a57600080fd5b506001600160a01b03813516906020013561181e565b34801561098c57600080fd5b50610425611832565b3480156109a157600080fd5b50610425600480360360208110156109b857600080fd5b50356001600160a01b0316611865565b3480156109d457600080fd5b5061044c6118c9565b3480156109e957600080fd5b5061044c6118d8565b3480156109fe57600080fd5b506104d06118e9565b348015610a1357600080fd5b50610567600480360360c0811015610a2a57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611901565b348015610a6757600080fd5b5061056760048036036040811015610a7e57600080fd5b506001600160a01b0381351690602001351515611b8f565b348015610aa257600080fd5b50610567611c03565b348015610ab757600080fd5b50610425611e64565b348015610acc57600080fd5b5061042560048036036040811015610ae357600080fd5b506001600160a01b0381358116916020013516611e6a565b348015610b0757600080fd5b50610425611e95565b348015610b1c57600080fd5b50610b4f60048036036040811015610b3357600080fd5b5080356001600160a01b0316906020013563ffffffff16611eb9565b6040805163ffffffff909316835260208301919091528051918290030190f35b348015610b7b57600080fd5b5061056760048036036020811015610b9257600080fd5b50356001600160a01b0316611ee6565b348015610bae57600080fd5b5061056760048036036020811015610bc557600080fd5b503561ffff16611ffd565b348015610bdc57600080fd5b506104d06120f7565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c715780601f10610c4657610100808354040283529160200191610c71565b820191906000526020600020905b815481529060010190602001808311610c5457829003601f168201915b5050505050905090565b6000610c8f610c886120fd565b8484612101565b5060015b92915050565b60035490565b6103e881565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610cd68484846121ed565b610d4684610ce26120fd565b610d41856040518060600160405280602881526020016131c7602891396001600160a01b038a16600090815260026020526040812090610d206120fd565b6001600160a01b03168152602081019190915260400160002054919061246b565b612101565b5060019392505050565b600a546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b603281565b600c546001600160a01b03163314610dcb5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6001600160a01b038116610e105760405162461bcd60e51b815260040180806020018281038252603a81526020018061318d603a913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed90600090a3600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60065460ff1690565b600b546001600160a01b031681565b600c546001600160a01b03163314610eda5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6103e861ffff82161115610f1f5760405162461bcd60e51b815260040180806020018281038252605281526020018061327a6052913960600191505060405180910390fd5b6006546040805161ffff610100909304831681529183166020830152805133927fe9d5c8ee2a65d4fb859c680669d8f902172d53e3f15f9f11108a31bbada4b70b92908290030190a26006805461ffff9092166101000262ffff0019909216919091179055565b6000610c8f610f936120fd565b84610d418560026000610fa46120fd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612502565b60065465010000000000900461ffff1681565b610fef6120fd565b6000546001600160a01b03908116911614611051576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61105b828261255c565b6001600160a01b038083166000908152600d6020526040812054611080921683612642565b5050565b60085460ff1681565b600c546001600160a01b031633146110d65760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600c546001600160a01b031690565b6001600160a01b039081166000908152600d60205260409020541690565b61113c3382612784565b50565b600c546001600160a01b031633146111885760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6127108161ffff1611156111cd5760405162461bcd60e51b815260040180806020018281038252605f8152602001806132cc605f913960600191505060405180910390fd5b603261ffff821610156112115760405162461bcd60e51b815260040180806020018281038252605a81526020018061332b605a913960600191505060405180910390fd5b6006546040805161ffff65010000000000909304831681529183166020830152805133927fb62a50fc861a770636e85357becb3b82a32e911106609d4985871eaf29011e0892908290030190a26006805461ffff909216650100000000000266ffff000000000019909216919091179055565b600f6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526001602052604090205490565b6112bf6120fd565b6000546001600160a01b03908116911614611321576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b60004382106113b85760405162461bcd60e51b81526004018080602001828103825260298152602001806134166029913960400191505060405180910390fd5b6001600160a01b0383166000908152600f602052604090205463ffffffff16806113e6576000915050610c93565b6001600160a01b0384166000908152600e6020908152604080832063ffffffff600019860181168552925290912054168310611455576001600160a01b0384166000908152600e602090815260408083206000199490940163ffffffff16835292905220600101549050610c93565b6001600160a01b0384166000908152600e6020908152604080832083805290915290205463ffffffff16831015611490576000915050610c93565b600060001982015b8163ffffffff168163ffffffff16111561154957600282820363ffffffff160481036114c26130de565b506001600160a01b0387166000908152600e6020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561152457602001519450610c939350505050565b805163ffffffff1687111561153b57819350611542565b6001820392505b5050611498565b506001600160a01b0385166000908152600e6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60106020526000908152604090205481565b600061159c6115a1565b905090565b6000546001600160a01b031690565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c715780601f10610c4657610100808354040283529160200191610c71565b600c546001600160a01b0316331461165a5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b604080518215158152905133917f3ca65588b29182880283bc8778fea5f01b351e01d874839a39a99e1c281a2113919081900360200190a26008805460ff1916911515919091179055565b60006116af6120fd565b6000546001600160a01b03908116911614611711576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61172261171c6120fd565b8361255c565b506001919050565b600c546001600160a01b031633146117735760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6009546040805191825260208201839052805133927f54c7a13ff01698e4ed3550a23216585f8472c7b1515a932eac98c9a6d48990c592908290030190a2600955565b6000610c8f6117c36120fd565b84610d41856040518060600160405280602581526020016134e260259139600260006117ed6120fd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061246b565b6000610c8f61182b6120fd565b84846121ed565b60065460009061159c906127109061185f9065010000000000900461ffff16611859610c99565b90612826565b9061287f565b6001600160a01b0381166000908152600f602052604081205463ffffffff16806118905760006118c2565b6001600160a01b0383166000908152600e6020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b600654610100900461ffff1681565b6006546301000000900461ffff1681565b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff81565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661192c610be5565b8051906020012061193b6128c1565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a905282518085039091018152610140840183528051908501207f19010000000000000000000000000000000000000000000000000000000000006101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015611a89573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611adb5760405162461bcd60e51b81526004018080602001828103825260288152602001806132526028913960400191505060405180910390fd5b6001600160a01b03811660009081526010602052604090208054600181019091558914611b395760405162461bcd60e51b81526004018080602001828103825260248152602001806133d16024913960400191505060405180910390fd5b87421115611b785760405162461bcd60e51b81526004018080602001828103825260288152602001806130f66028913960400191505060405180910390fd5b611b82818b612784565b505050505b505050505050565b600c546001600160a01b03163314611bd85760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b600c546001600160a01b03163314611c4c5760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9957600080fd5b505afa158015611cad573d6000803e3d6000fd5b505050506040513d6020811015611cc357600080fd5b5051604080517fad5c464800000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169163e6a4390591309173a5e0829caced8ffdd4de3c43696c57f7d7a678ff9163ad5c4648916004808301926020929190829003018186803b158015611d3d57600080fd5b505afa158015611d51573d6000803e3d6000fd5b505050506040513d6020811015611d6757600080fd5b5051604080517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926020929190829003018186803b158015611dcf57600080fd5b505afa158015611de3573d6000803e3d6000fd5b505050506040513d6020811015611df957600080fd5b5051600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03928316179081905516611e625760405162461bcd60e51b815260040180806020018281038252604c815260200180613385604c913960600191505060405180910390fd5b565b60095481565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611eee6120fd565b6000546001600160a01b03908116911614611f50576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116611f955760405162461bcd60e51b81526004018080602001828103825260268152602001806131676026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600c546001600160a01b031633146120465760405162461bcd60e51b81526004018080602001828103825260248152602001806134756024913960400191505060405180910390fd5b60648161ffff16111561208a5760405162461bcd60e51b815260040180806020018281038252604381526020018061354d6043913960600191505060405180910390fd5b6006546040805161ffff6301000000909304831681529183166020830152805133927f3eec69630b6f49d4e10eec296fce4baddec5f34c5430fb2cd72f8c4218f63fd092908290030190a26006805461ffff90921663010000000264ffff00000019909216919091179055565b61dead81565b3390565b6001600160a01b0383166121465760405162461bcd60e51b81526004018080602001828103825260248152602001806131436024913960400191505060405180910390fd5b6001600160a01b03821661218b5760405162461bcd60e51b815260040180806020018281038252602281526020018061352b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b82828260006121fa611832565b111561228d576001600160a01b03831660009081526007602052604090205460ff1615801561224257506001600160a01b03821660009081526007602052604090205460ff16155b1561228d5761224f611832565b81111561228d5760405162461bcd60e51b81526004018080602001828103825260408152602001806132126040913960400191505060405180910390fd5b60085460ff16151560011480156122bf5750600a5474010000000000000000000000000000000000000000900460ff16155b80156122c9575060015b80156122df5750600a546001600160a01b031615155b80156122f95750600a546001600160a01b03878116911614155b801561231e57506123086115a1565b6001600160a01b0316866001600160a01b031614155b1561232b5761232b6128c5565b6001600160a01b03851661dead148061234d5750600654610100900461ffff16155b156123625761235d868686612a1f565b611b87565b600654600090612384906127109061185f908890610100900461ffff16612826565b6006549091506000906123aa9060649061185f9085906301000000900461ffff16612826565b905060006123b88383612b71565b905080820183146123fa5760405162461bcd60e51b81526004018080602001828103825260248152602001806135076024913960400191505060405180910390fd5b60006124068885612b71565b905083810188146124485760405162461bcd60e51b81526004018080602001828103825260238152602001806131ef6023913960400191505060405180910390fd5b6124558a61dead85612a1f565b6124608a3084612a1f565b611b828a8a83612a1f565b600081848411156124fa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124bf5781810151838201526020016124a7565b50505050905090810190601f1680156124ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156118c2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166125b7576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546125c49082612502565b6003556001600160a01b0382166000908152600160205260409020546125ea9082612502565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b0316141580156126645750600081115b1561277f576001600160a01b038316156126f6576001600160a01b0383166000908152600f602052604081205463ffffffff1690816126a45760006126d6565b6001600160a01b0385166000908152600e6020908152604080832063ffffffff60001987011684529091529020600101545b905060006126e48285612b71565b90506126f286848484612bb3565b5050505b6001600160a01b0382161561277f576001600160a01b0382166000908152600f602052604081205463ffffffff169081612731576000612763565b6001600160a01b0384166000908152600e6020908152604080832063ffffffff60001987011684529091529020600101545b905060006127718285612502565b9050611b8785848484612bb3565b505050565b6001600160a01b038083166000908152600d6020526040812054909116906127ab8461129c565b6001600160a01b038581166000818152600d6020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612820828483612642565b50505050565b60008261283557506000610c93565b8282028284828161284257fe5b04146118c25760405162461bcd60e51b81526004018080602001828103825260218152602001806133f56021913960400191505060405180910390fd5b60006118c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d18565b4690565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556006805462ffff0019811690915561ffff6101009091041660006129273061129c565b90506000612933611832565b90508082116129425781612944565b805b915060095482106129d757600954600061295f82600261287f565b9050600061296d8383612b71565b90504761297983612d7d565b60006129854783612b71565b90506129918382612f68565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150505050505b50506006805461ffff9092166101000262ffff0019909216919091179055600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b6001600160a01b038316612a645760405162461bcd60e51b815260040180806020018281038252602581526020018061311e6025913960400191505060405180910390fd5b6001600160a01b038216612aa95760405162461bcd60e51b81526004018080602001828103825260238152602001806134bf6023913960400191505060405180910390fd5b612ae681604051806060016040528060268152602001613499602691396001600160a01b038616600090815260016020526040902054919061246b565b6001600160a01b038085166000908152600160205260408082209390935590841681522054612b159082612502565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006118c283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061246b565b6000612bd74360405180606001604052806036815260200161343f60369139613080565b905060008463ffffffff16118015612c2057506001600160a01b0385166000908152600e6020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612c5d576001600160a01b0385166000908152600e6020908152604080832063ffffffff60001989011684529091529020600101829055612cce565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600e84528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600f9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008183612d675760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156124bf5781810151838201526020016124a7565b506000838581612d7357fe5b0495945050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612dab57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e1857600080fd5b505afa158015612e2c573d6000803e3d6000fd5b505050506040513d6020811015612e4257600080fd5b5051815182906001908110612e5357fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612e923073a5e0829caced8ffdd4de3c43696c57f7d7a678ff84612101565b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612f2b578181015183820152602001612f13565b505050509050019650505050505050600060405180830381600087803b158015612f5457600080fd5b505af1158015611b87573d6000803e3d6000fd5b612f873073a5e0829caced8ffdd4de3c43696c57f7d7a678ff84612101565b6000612f91611105565b600b549091506001600160a01b031661dead14612fb65750600b546001600160a01b03165b604080517ff305d7190000000000000000000000000000000000000000000000000000000081523060048201526024810185905260006044820181905260648201526001600160a01b03831660848201524260a4820152905173a5e0829caced8ffdd4de3c43696c57f7d7a678ff9163f305d71991859160c48082019260609290919082900301818588803b15801561304e57600080fd5b505af1158015613062573d6000803e3d6000fd5b50505050506040513d606081101561307957600080fd5b5050505050565b60008164010000000084106130d65760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156124bf5781810151838201526020016124a7565b509192915050565b60408051808201909152600080825260208201529056fe4b415649414e3a3a64656c656761746542795369673a207369676e6174757265206578706972656442455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734b415649414e3a3a7472616e736665724f70657261746f723a206e6577206f70657261746f7220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654b415649414e3a3a7472616e736665723a205461782076616c756520696e76616c69644b415649414e3a3a616e74695768616c653a205472616e7366657220616d6f756e74206578636565647320746865206d61785472616e73666572416d6f756e744b415649414e3a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654b415649414e3a3a7570646174655472616e73666572546178526174653a205472616e73666572207461782072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e4b415649414e3a3a7570646174654d61785472616e73666572416d6f756e74526174653a204d6178207472616e7366657220616d6f756e742072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e4b415649414e3a3a7570646174654d61785472616e73666572416d6f756e74526174653a204d6178207472616e7366657220616d6f756e742072617465206d75737420626520677261746572207468616e206d696e20726174654b415649414e3a3a75706461746553776170526f757465723a20496e76616c6964207061697220616464726573732e20436865636b206966206c6971756964697479207761732061646465644b415649414e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774b415649414e3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644b415649414e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974736f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4b415649414e3a3a7472616e736665723a204275726e2076616c756520696e76616c696442455032303a20617070726f766520746f20746865207a65726f20616464726573734b415649414e3a3a7570646174654275726e526174653a204275726e2072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652ea26469706673582212204d24e877128d78744e51ebf087fe06fc8dfdc09c607fbf49efc94cd737badee364736f6c634300060c0033

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.