ETH Price: $2,535.07 (+3.90%)
Gas: 1.1 Gwei

Token

RFK Coin (RFKC)
 

Overview

Max Total Supply

10,000,000,000 RFKC

Holders

94

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,788,731.775599199158282482 RFKC

Value
$0.00
0x66978c5a2d2b8d34b1b465bbfbfb6c75ca18e11f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RFKC

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : RFKC.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
 
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}
 
interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
 
    function factory() external pure returns (address);
 
    function WETH() external pure returns (address);
}

interface IUniswapV2Pair {
    function sync() external;
}

contract RFKC is ERC20, Ownable {
    uint256 constant public MANTISSA = 1e18; // Percentages are denominated in 1e18 (e.g. 100%=1e18, 42%=0.42e18)
    IUniswapV2Router02 public constant uniV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniV2Pair;

    bool private inSwap;
    
    uint256 public buyFee = 0.02e18; // 2%
    uint256 public sellFee = 0.02e18; // 2%
    uint256 public burnFee = 0.01e18; // 1%

    address public markettingWallet;
    uint256 public maxTradeAmount;
    uint256 public maxFeeSwapPriceImpact;

    mapping(address => bool) public isFeeExcluded;
    mapping(address => bool) public isBot;

    uint256 public minReportFrequency = 72 * 1 hours;
    uint256 public lastReportTime;

    event PollingScore(uint256 pollingPct, uint256 amountBurned, string reason);

    constructor() ERC20("RFK Coin", "RFKC") {
        _mint(msg.sender, 10_000_000_000 * (10 ** decimals())); // 10 billion tokens

        uniV2Pair = IUniswapV2Factory(uniV2Router.factory()).createPair(address(this), uniV2Router.WETH());
        _approve(address(this), address(uniV2Router), type(uint256).max);
    
        setMarkettingWallet(msg.sender);

        excludeAccountFromFees(msg.sender);
        excludeAccountFromFees(address(this));
        excludeAccountFromFees(address(uniV2Router));
    }

    function setMarkettingWallet(address _markettingWallet) public onlyOwner {
        markettingWallet = _markettingWallet;
        excludeAccountFromFees(markettingWallet);
    }

    function setFees(uint256 newBuyFee, uint256 newSellFee, uint256 newBurnFee) public onlyOwner {
        require(newBuyFee < MANTISSA, "Buy fee too high");
        require(newSellFee < MANTISSA, "Sell fee too high");
        require(newBurnFee < MANTISSA, "Burn fee too high");
        require(newBuyFee + newBurnFee + newSellFee < MANTISSA, "Total fee too high");
        
        buyFee = newBuyFee;
        sellFee = newSellFee;
        burnFee = newBurnFee;
    }

    function setMaxTradeAmount(uint256 _maxTradeAmount) public onlyOwner {
        maxTradeAmount = _maxTradeAmount;
    }

    function setMaxFeeSwapPriceImpact(uint256 _maxFeeSwapPriceImpact) external onlyOwner {
        maxFeeSwapPriceImpact = _maxFeeSwapPriceImpact;
    }

    function setMinReportFrequency(uint256 _minReportFrequency) external onlyOwner {
        minReportFrequency = _minReportFrequency;
    }

    function excludeAccountFromFees(address account) public onlyOwner {
        isFeeExcluded[account] = true;
    }

    function includeAccountToFees(address account) external onlyOwner {
        isFeeExcluded[account] = false;
    }

    function listBots(address[] calldata accounts) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            isBot[accounts[i]] = true;
        }
    }

    function delistBots(address[] calldata accounts) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            isBot[accounts[i]] = false;
        }
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if (inSwap) return super._transfer(sender, recipient, amount);

        require(!isBot[sender], "This bot is blocked");

        bool buying = sender == uniV2Pair && !isFeeExcluded[recipient];
        bool selling = recipient == uniV2Pair && !isFeeExcluded[sender];

        if (buying || selling) {
            require(maxTradeAmount > 0, "Trading not enabled yet");
            require(amount <= maxTradeAmount, "Max trade amount exceeded");

            amount = subtractTradingFees(sender, amount, buying);
        }
        
        super._transfer(sender, recipient, amount);
    }

    function subtractTradingFees(address sender, uint256 amount, bool buying) private returns(uint256) {
        uint256 burnFees = amount * burnFee / MANTISSA;
        super._transfer(sender, address(0xdead), burnFees);
        
        uint256 tradingFees = (buying ? buyFee : sellFee) * amount / MANTISSA;
        super._transfer(sender, address(this), tradingFees);
        if (!buying) swapFeesForEth();

        return amount - tradingFees - burnFees;
    }

    function swapFeesForEth() private {
        uint256 amount = balanceOf(address(this));
        uint256 liquidityPairBalance = balanceOf(uniV2Pair);

        uint256 maxSwap = liquidityPairBalance * maxFeeSwapPriceImpact / (2 * MANTISSA);
        if (amount > maxSwap) amount = maxSwap;
        if (amount == 0) return;

        inSwap = true;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniV2Router.WETH();
        uniV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            markettingWallet,
            block.timestamp
        );

        inSwap = false;
    }

    function reportPollingAndIncreasePrice(uint256 pollingPct, uint256 priceIncreasePct, string calldata reason) external onlyOwner {
        require(priceIncreasePct < 0.3e18, "Cannot increase price more than 30%");
        require(block.timestamp > lastReportTime + minReportFrequency , "Cooldown");
        lastReportTime = block.timestamp;
 
        uint256 liquidityPairBalance = balanceOf(uniV2Pair);
        uint256 amountToBurn = liquidityPairBalance * priceIncreasePct / (MANTISSA + priceIncreasePct);
 
        if (amountToBurn > 0){
            super._transfer(uniV2Pair, address(0xdead), amountToBurn);
            IUniswapV2Pair(uniV2Pair).sync();
        }
        
        emit PollingScore(pollingPct, amountToBurn, reason);
    }

    function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }

    function recoverETH(uint256 amount) external onlyOwner {
        payable(owner()).transfer(amount);
    }

    receive() external payable {}
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pollingPct","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBurned","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"PollingScore","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MANTISSA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"delistBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccountFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccountToFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastReportTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"listBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"markettingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFeeSwapPriceImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTradeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minReportFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pollingPct","type":"uint256"},{"internalType":"uint256","name":"priceIncreasePct","type":"uint256"},{"internalType":"string","name":"reason","type":"string"}],"name":"reportPollingAndIncreasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFee","type":"uint256"},{"internalType":"uint256","name":"newSellFee","type":"uint256"},{"internalType":"uint256","name":"newBurnFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_markettingWallet","type":"address"}],"name":"setMarkettingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFeeSwapPriceImpact","type":"uint256"}],"name":"setMaxFeeSwapPriceImpact","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTradeAmount","type":"uint256"}],"name":"setMaxTradeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minReportFrequency","type":"uint256"}],"name":"setMinReportFrequency","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405266470de4df82000060065566470de4df820000600755662386f26fc100006008556203f480600e553480156200003957600080fd5b506040518060400160405280600881526020017f52464b20436f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52464b43000000000000000000000000000000000000000000000000000000008152508160039081620000b7919062000bd8565b508060049081620000c9919062000bd8565b505050620000ec620000e06200039260201b60201c565b6200039a60201b60201c565b6200012d33620001016200046060201b60201c565b600a6200010f919062000e4f565b6402540be40062000121919062000ea0565b6200046960201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b3919062000f55565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000255919062000f55565b6040518363ffffffff1660e01b81526004016200027492919062000f98565b6020604051808303816000875af115801562000294573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ba919062000f55565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200033430737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620005d660201b60201c565b6200034533620007a760201b60201c565b62000356336200082e60201b60201c565b62000367306200082e60201b60201c565b6200038c737a250d5630b4cf539739df2c5dacb4c659f2488d6200082e60201b60201c565b62001253565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d29062001026565b60405180910390fd5b620004ef600083836200089960201b60201c565b806002600082825462000503919062001048565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005b6919062001094565b60405180910390a3620005d2600083836200089e60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063f9062001127565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b190620011bf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200079a919062001094565b60405180910390a3505050565b620007b7620008a360201b60201c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200082b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200082e60201b60201c565b50565b6200083e620008a360201b60201c565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b505050565b505050565b620008b36200039260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008d96200093460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009299062001231565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009e057607f821691505b602082108103620009f657620009f562000998565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a21565b62000a6c868362000a21565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ab962000ab362000aad8462000a84565b62000a8e565b62000a84565b9050919050565b6000819050919050565b62000ad58362000a98565b62000aed62000ae48262000ac0565b84845462000a2e565b825550505050565b600090565b62000b0462000af5565b62000b1181848462000aca565b505050565b5b8181101562000b395762000b2d60008262000afa565b60018101905062000b17565b5050565b601f82111562000b885762000b5281620009fc565b62000b5d8462000a11565b8101602085101562000b6d578190505b62000b8562000b7c8562000a11565b83018262000b16565b50505b505050565b600082821c905092915050565b600062000bad6000198460080262000b8d565b1980831691505092915050565b600062000bc8838362000b9a565b9150826002028217905092915050565b62000be3826200095e565b67ffffffffffffffff81111562000bff5762000bfe62000969565b5b62000c0b8254620009c7565b62000c1882828562000b3d565b600060209050601f83116001811462000c50576000841562000c3b578287015190505b62000c47858262000bba565b86555062000cb7565b601f19841662000c6086620009fc565b60005b8281101562000c8a5784890151825560018201915060208501945060208101905062000c63565b8683101562000caa578489015162000ca6601f89168262000b9a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000d4d5780860481111562000d255762000d2462000cbf565b5b600185161562000d355780820291505b808102905062000d458562000cee565b945062000d05565b94509492505050565b60008262000d68576001905062000e3b565b8162000d78576000905062000e3b565b816001811462000d91576002811462000d9c5762000dd2565b600191505062000e3b565b60ff84111562000db15762000db062000cbf565b5b8360020a91508482111562000dcb5762000dca62000cbf565b5b5062000e3b565b5060208310610133831016604e8410600b841016171562000e0c5782820a90508381111562000e065762000e0562000cbf565b5b62000e3b565b62000e1b848484600162000cfb565b9250905081840481111562000e355762000e3462000cbf565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e5c8262000a84565b915062000e698362000e42565b925062000e987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d56565b905092915050565b600062000ead8262000a84565b915062000eba8362000a84565b925082820262000eca8162000a84565b9150828204841483151762000ee45762000ee362000cbf565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f1d8262000ef0565b9050919050565b62000f2f8162000f10565b811462000f3b57600080fd5b50565b60008151905062000f4f8162000f24565b92915050565b60006020828403121562000f6e5762000f6d62000eeb565b5b600062000f7e8482850162000f3e565b91505092915050565b62000f928162000f10565b82525050565b600060408201905062000faf600083018562000f87565b62000fbe602083018462000f87565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200100e601f8362000fc5565b91506200101b8262000fd6565b602082019050919050565b60006020820190508181036000830152620010418162000fff565b9050919050565b6000620010558262000a84565b9150620010628362000a84565b92508282019050808211156200107d576200107c62000cbf565b5b92915050565b6200108e8162000a84565b82525050565b6000602082019050620010ab600083018462001083565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200110f60248362000fc5565b91506200111c82620010b1565b604082019050919050565b60006020820190508181036000830152620011428162001100565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011a760228362000fc5565b9150620011b48262001149565b604082019050919050565b60006020820190508181036000830152620011da8162001198565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200121960208362000fc5565b91506200122682620011e1565b602082019050919050565b600060208201905081810360008301526200124c816200120a565b9050919050565b6080516134ce6200129960003960008181610c8501528181610ce701528181610d1101528181610ecc015281816118ad015281816119560152611eaf01526134ce6000f3fe6080604052600436106102345760003560e01c80637a2493461161012e578063a457c2d7116100ab578063d33355531161006f578063d33355531461085c578063dd62ed3e14610885578063e0115d0d146108c2578063f2fde38b146108ed578063fce589d8146109165761023b565b8063a457c2d714610753578063a9059cbb14610790578063acfaec0d146107cd578063bca238aa146107f6578063cec10c11146108335761023b565b80638da5cb5b116100f25780638da5cb5b14610680578063938dbf21146106ab578063958c2e52146106d457806395d89b41146106ff5780639b2f037f1461072a5761023b565b80637a249346146105af57806386ba6b8f146105da57806388b78186146106035780638980f11f1461062c5780638bcea939146106555761023b565b8063313ce567116101bc578063470624021161018057806347062402146104dc5780634ae73f4c1461050757806366fe2d5e1461053057806370a082311461055b578063715018a6146105985761023b565b8063313ce567146103e557806339509351146104105780633a2c2baf1461044d5780633aeddaf9146104765780633bbac5791461049f5761023b565b806316fdbfc41161020357806316fdbfc4146102fc57806318160ddd1461032757806323b872dd146103525780632703984c1461038f5780632b14ca56146103ba5761023b565b80630537eae014610240578063067542bf1461026b57806306fdde0314610294578063095ea7b3146102bf5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610941565b6040516102629190612190565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d91906121e1565b610947565b005b3480156102a057600080fd5b506102a9610959565b6040516102b6919061229e565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e1919061231e565b6109eb565b6040516102f39190612379565b60405180910390f35b34801561030857600080fd5b50610311610a0e565b60405161031e91906123a3565b60405180910390f35b34801561033357600080fd5b5061033c610a34565b6040516103499190612190565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906123be565b610a3e565b6040516103869190612379565b60405180910390f35b34801561039b57600080fd5b506103a4610a6d565b6040516103b19190612190565b60405180910390f35b3480156103c657600080fd5b506103cf610a79565b6040516103dc9190612190565b60405180910390f35b3480156103f157600080fd5b506103fa610a7f565b604051610407919061242d565b60405180910390f35b34801561041c57600080fd5b506104376004803603810190610432919061231e565b610a88565b6040516104449190612379565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906121e1565b610abf565b005b34801561048257600080fd5b5061049d60048036038101906104989190612448565b610ad1565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190612448565b610b34565b6040516104d39190612379565b60405180910390f35b3480156104e857600080fd5b506104f1610b54565b6040516104fe9190612190565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906121e1565b610b5a565b005b34801561053c57600080fd5b50610545610b6c565b6040516105529190612190565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190612448565b610b72565b60405161058f9190612190565b60405180910390f35b3480156105a457600080fd5b506105ad610bba565b005b3480156105bb57600080fd5b506105c4610bce565b6040516105d19190612190565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc91906124da565b610bd4565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612448565b610dd5565b005b34801561063857600080fd5b50610653600480360381019061064e919061231e565b610e38565b005b34801561066157600080fd5b5061066a610eca565b60405161067791906123a3565b60405180910390f35b34801561068c57600080fd5b50610695610eee565b6040516106a291906123a3565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906125a4565b610f18565b005b3480156106e057600080fd5b506106e9610fc5565b6040516106f69190612650565b60405180910390f35b34801561070b57600080fd5b50610714610fdd565b604051610721919061229e565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906125a4565b61106f565b005b34801561075f57600080fd5b5061077a6004803603810190610775919061231e565b61111c565b6040516107879190612379565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b2919061231e565b611193565b6040516107c49190612379565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612448565b6111b6565b005b34801561080257600080fd5b5061081d60048036038101906108189190612448565b61122d565b60405161082a9190612379565b60405180910390f35b34801561083f57600080fd5b5061085a6004803603810190610855919061266b565b61124d565b005b34801561086857600080fd5b50610883600480360381019061087e91906121e1565b6113ad565b005b34801561089157600080fd5b506108ac60048036038101906108a791906126be565b611406565b6040516108b99190612190565b60405180910390f35b3480156108ce57600080fd5b506108d761148d565b6040516108e49190612190565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190612448565b611493565b005b34801561092257600080fd5b5061092b611516565b6040516109389190612190565b60405180910390f35b600a5481565b61094f61151c565b80600a8190555050565b6060600380546109689061272d565b80601f01602080910402602001604051908101604052809291908181526020018280546109949061272d565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b6000806109f661159a565b9050610a038185856115a2565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610a4961159a565b9050610a5685828561176b565b610a618585856117f7565b60019150509392505050565b670de0b6b3a764000081565b60075481565b60006012905090565b600080610a9361159a565b9050610ab4818585610aa58589611406565b610aaf919061278d565b6115a2565b600191505092915050565b610ac761151c565b80600b8190555050565b610ad961151c565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d6020528060005260406000206000915054906101000a900460ff1681565b60065481565b610b6261151c565b80600e8190555050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc261151c565b610bcc6000611ab4565b565b600e5481565b610bdc61151c565b670429d069189e00008310610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90612833565b60405180910390fd5b600e54600f54610c36919061278d565b4211610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061289f565b60405180910390fd5b42600f819055506000610ca97f0000000000000000000000000000000000000000000000000000000000000000610b72565b9050600084670de0b6b3a7640000610cc1919061278d565b8583610ccd91906128bf565b610cd79190612930565b90506000811115610d9057610d0f7f000000000000000000000000000000000000000000000000000000000000000061dead83611b7a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d7757600080fd5b505af1158015610d8b573d6000803e3d6000fd5b505050505b7f2c9afb36da638bcccac27c882251b3dc0bd4f5c45f0b40226f2adfdcab1cc00786828686604051610dc5949392919061299d565b60405180910390a1505050505050565b610ddd61151c565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e4061151c565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610e64610eee565b836040518363ffffffff1660e01b8152600401610e829291906129dd565b6020604051808303816000875af1158015610ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec59190612a32565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2061151c565b60005b82829050811015610fc0576000600d6000858585818110610f4757610f46612a5f565b5b9050602002016020810190610f5c9190612448565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fb890612a8e565b915050610f23565b505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b606060048054610fec9061272d565b80601f01602080910402602001604051908101604052809291908181526020018280546110189061272d565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b5050505050905090565b61107761151c565b60005b82829050811015611117576001600d600085858581811061109e5761109d612a5f565b5b90506020020160208101906110b39190612448565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061110f90612a8e565b91505061107a565b505050565b60008061112761159a565b905060006111358286611406565b90508381101561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612b48565b60405180910390fd5b61118782868684036115a2565b60019250505092915050565b60008061119e61159a565b90506111ab8185856117f7565b600191505092915050565b6111be61151c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061122a600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dd5565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b61125561151c565b670de0b6b3a7640000831061129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690612bb4565b60405180910390fd5b670de0b6b3a764000082106112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612c20565b60405180910390fd5b670de0b6b3a76400008110611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90612c8c565b60405180910390fd5b670de0b6b3a7640000828285611349919061278d565b611353919061278d565b10611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90612cf8565b60405180910390fd5b826006819055508160078190555080600881905550505050565b6113b561151c565b6113bd610eee565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611402573d6000803e3d6000fd5b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b61149b61151c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190612d8a565b60405180910390fd5b61151381611ab4565b50565b60085481565b61152461159a565b73ffffffffffffffffffffffffffffffffffffffff16611542610eee565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90612df6565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612e88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612f1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161175e9190612190565b60405180910390a3505050565b60006117778484611406565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117f157818110156117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612f86565b60405180910390fd5b6117f084848484036115a2565b5b50505050565b600560149054906101000a900460ff161561181c57611817838383611b7a565b611aaf565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090612ff2565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119505750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119f95750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90508180611a045750805b15611aa1576000600a5411611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a459061305e565b60405180910390fd5b600a54831115611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906130ca565b60405180910390fd5b611a9e858484611df0565b92505b611aac858585611b7a565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be09061315c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906131ee565b60405180910390fd5b611c63838383611e91565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce090613280565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dd79190612190565b60405180910390a3611dea848484611e96565b50505050565b600080670de0b6b3a764000060085485611e0a91906128bf565b611e149190612930565b9050611e238561dead83611b7a565b6000670de0b6b3a76400008585611e3c57600754611e40565b6006545b611e4a91906128bf565b611e549190612930565b9050611e61863083611b7a565b83611e6f57611e6e611e9b565b5b818186611e7c91906132a0565b611e8691906132a0565b925050509392505050565b505050565b505050565b6000611ea630610b72565b90506000611ed37f0000000000000000000000000000000000000000000000000000000000000000610b72565b90506000670de0b6b3a76400006002611eec91906128bf565b600b5483611efa91906128bf565b611f049190612930565b905080831115611f12578092505b60008303611f2257505050612175565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611f5a57611f596132d4565b5b604051908082528060200260200182016040528015611f885781602001602082028036833780820191505090505b5090503081600081518110611fa057611f9f612a5f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612039573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061205d9190613318565b8160018151811061207157612070612a5f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94785600084600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161212395949392919061343e565b600060405180830381600087803b15801561213d57600080fd5b505af1158015612151573d6000803e3d6000fd5b505050506000600560146101000a81548160ff021916908315150217905550505050505b565b6000819050919050565b61218a81612177565b82525050565b60006020820190506121a56000830184612181565b92915050565b600080fd5b600080fd5b6121be81612177565b81146121c957600080fd5b50565b6000813590506121db816121b5565b92915050565b6000602082840312156121f7576121f66121ab565b5b6000612205848285016121cc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224857808201518184015260208101905061222d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122708261220e565b61227a8185612219565b935061228a81856020860161222a565b61229381612254565b840191505092915050565b600060208201905081810360008301526122b88184612265565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122eb826122c0565b9050919050565b6122fb816122e0565b811461230657600080fd5b50565b600081359050612318816122f2565b92915050565b60008060408385031215612335576123346121ab565b5b600061234385828601612309565b9250506020612354858286016121cc565b9150509250929050565b60008115159050919050565b6123738161235e565b82525050565b600060208201905061238e600083018461236a565b92915050565b61239d816122e0565b82525050565b60006020820190506123b86000830184612394565b92915050565b6000806000606084860312156123d7576123d66121ab565b5b60006123e586828701612309565b93505060206123f686828701612309565b9250506040612407868287016121cc565b9150509250925092565b600060ff82169050919050565b61242781612411565b82525050565b6000602082019050612442600083018461241e565b92915050565b60006020828403121561245e5761245d6121ab565b5b600061246c84828501612309565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261249a57612499612475565b5b8235905067ffffffffffffffff8111156124b7576124b661247a565b5b6020830191508360018202830111156124d3576124d261247f565b5b9250929050565b600080600080606085870312156124f4576124f36121ab565b5b6000612502878288016121cc565b9450506020612513878288016121cc565b935050604085013567ffffffffffffffff811115612534576125336121b0565b5b61254087828801612484565b925092505092959194509250565b60008083601f84011261256457612563612475565b5b8235905067ffffffffffffffff8111156125815761258061247a565b5b60208301915083602082028301111561259d5761259c61247f565b5b9250929050565b600080602083850312156125bb576125ba6121ab565b5b600083013567ffffffffffffffff8111156125d9576125d86121b0565b5b6125e58582860161254e565b92509250509250929050565b6000819050919050565b600061261661261161260c846122c0565b6125f1565b6122c0565b9050919050565b6000612628826125fb565b9050919050565b600061263a8261261d565b9050919050565b61264a8161262f565b82525050565b60006020820190506126656000830184612641565b92915050565b600080600060608486031215612684576126836121ab565b5b6000612692868287016121cc565b93505060206126a3868287016121cc565b92505060406126b4868287016121cc565b9150509250925092565b600080604083850312156126d5576126d46121ab565b5b60006126e385828601612309565b92505060206126f485828601612309565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274557607f821691505b602082108103612758576127576126fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061279882612177565b91506127a383612177565b92508282019050808211156127bb576127ba61275e565b5b92915050565b7f43616e6e6f7420696e637265617365207072696365206d6f7265207468616e2060008201527f3330250000000000000000000000000000000000000000000000000000000000602082015250565b600061281d602383612219565b9150612828826127c1565b604082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b7f436f6f6c646f776e000000000000000000000000000000000000000000000000600082015250565b6000612889600883612219565b915061289482612853565b602082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b60006128ca82612177565b91506128d583612177565b92508282026128e381612177565b915082820484148315176128fa576128f961275e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061293b82612177565b915061294683612177565b92508261295657612955612901565b5b828204905092915050565b82818337600083830152505050565b600061297c8385612219565b9350612989838584612961565b61299283612254565b840190509392505050565b60006060820190506129b26000830187612181565b6129bf6020830186612181565b81810360408301526129d2818486612970565b905095945050505050565b60006040820190506129f26000830185612394565b6129ff6020830184612181565b9392505050565b612a0f8161235e565b8114612a1a57600080fd5b50565b600081519050612a2c81612a06565b92915050565b600060208284031215612a4857612a476121ab565b5b6000612a5684828501612a1d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612a9982612177565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612acb57612aca61275e565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b32602583612219565b9150612b3d82612ad6565b604082019050919050565b60006020820190508181036000830152612b6181612b25565b9050919050565b7f4275792066656520746f6f206869676800000000000000000000000000000000600082015250565b6000612b9e601083612219565b9150612ba982612b68565b602082019050919050565b60006020820190508181036000830152612bcd81612b91565b9050919050565b7f53656c6c2066656520746f6f2068696768000000000000000000000000000000600082015250565b6000612c0a601183612219565b9150612c1582612bd4565b602082019050919050565b60006020820190508181036000830152612c3981612bfd565b9050919050565b7f4275726e2066656520746f6f2068696768000000000000000000000000000000600082015250565b6000612c76601183612219565b9150612c8182612c40565b602082019050919050565b60006020820190508181036000830152612ca581612c69565b9050919050565b7f546f74616c2066656520746f6f20686967680000000000000000000000000000600082015250565b6000612ce2601283612219565b9150612ced82612cac565b602082019050919050565b60006020820190508181036000830152612d1181612cd5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d74602683612219565b9150612d7f82612d18565b604082019050919050565b60006020820190508181036000830152612da381612d67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de0602083612219565b9150612deb82612daa565b602082019050919050565b60006020820190508181036000830152612e0f81612dd3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e72602483612219565b9150612e7d82612e16565b604082019050919050565b60006020820190508181036000830152612ea181612e65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f04602283612219565b9150612f0f82612ea8565b604082019050919050565b60006020820190508181036000830152612f3381612ef7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f70601d83612219565b9150612f7b82612f3a565b602082019050919050565b60006020820190508181036000830152612f9f81612f63565b9050919050565b7f5468697320626f7420697320626c6f636b656400000000000000000000000000600082015250565b6000612fdc601383612219565b9150612fe782612fa6565b602082019050919050565b6000602082019050818103600083015261300b81612fcf565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b6000613048601783612219565b915061305382613012565b602082019050919050565b600060208201905081810360008301526130778161303b565b9050919050565b7f4d617820747261646520616d6f756e7420657863656564656400000000000000600082015250565b60006130b4601983612219565b91506130bf8261307e565b602082019050919050565b600060208201905081810360008301526130e3816130a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613146602583612219565b9150613151826130ea565b604082019050919050565b6000602082019050818103600083015261317581613139565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006131d8602383612219565b91506131e38261317c565b604082019050919050565b60006020820190508181036000830152613207816131cb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061326a602683612219565b91506132758261320e565b604082019050919050565b600060208201905081810360008301526132998161325d565b9050919050565b60006132ab82612177565b91506132b683612177565b92508282039050818111156132ce576132cd61275e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050613312816122f2565b92915050565b60006020828403121561332e5761332d6121ab565b5b600061333c84828501613303565b91505092915050565b6000819050919050565b600061336a61336561336084613345565b6125f1565b612177565b9050919050565b61337a8161334f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133b5816122e0565b82525050565b60006133c783836133ac565b60208301905092915050565b6000602082019050919050565b60006133eb82613380565b6133f5818561338b565b93506134008361339c565b8060005b8381101561343157815161341888826133bb565b9750613423836133d3565b925050600181019050613404565b5085935050505092915050565b600060a0820190506134536000830188612181565b6134606020830187613371565b818103604083015261347281866133e0565b90506134816060830185612394565b61348e6080830184612181565b969550505050505056fea2646970667358221220a795964cdfb1f104db9085aff0ff22d4bf7b5c836b4189b48a52d4e8f485a74664736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80637a2493461161012e578063a457c2d7116100ab578063d33355531161006f578063d33355531461085c578063dd62ed3e14610885578063e0115d0d146108c2578063f2fde38b146108ed578063fce589d8146109165761023b565b8063a457c2d714610753578063a9059cbb14610790578063acfaec0d146107cd578063bca238aa146107f6578063cec10c11146108335761023b565b80638da5cb5b116100f25780638da5cb5b14610680578063938dbf21146106ab578063958c2e52146106d457806395d89b41146106ff5780639b2f037f1461072a5761023b565b80637a249346146105af57806386ba6b8f146105da57806388b78186146106035780638980f11f1461062c5780638bcea939146106555761023b565b8063313ce567116101bc578063470624021161018057806347062402146104dc5780634ae73f4c1461050757806366fe2d5e1461053057806370a082311461055b578063715018a6146105985761023b565b8063313ce567146103e557806339509351146104105780633a2c2baf1461044d5780633aeddaf9146104765780633bbac5791461049f5761023b565b806316fdbfc41161020357806316fdbfc4146102fc57806318160ddd1461032757806323b872dd146103525780632703984c1461038f5780632b14ca56146103ba5761023b565b80630537eae014610240578063067542bf1461026b57806306fdde0314610294578063095ea7b3146102bf5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610941565b6040516102629190612190565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d91906121e1565b610947565b005b3480156102a057600080fd5b506102a9610959565b6040516102b6919061229e565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e1919061231e565b6109eb565b6040516102f39190612379565b60405180910390f35b34801561030857600080fd5b50610311610a0e565b60405161031e91906123a3565b60405180910390f35b34801561033357600080fd5b5061033c610a34565b6040516103499190612190565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906123be565b610a3e565b6040516103869190612379565b60405180910390f35b34801561039b57600080fd5b506103a4610a6d565b6040516103b19190612190565b60405180910390f35b3480156103c657600080fd5b506103cf610a79565b6040516103dc9190612190565b60405180910390f35b3480156103f157600080fd5b506103fa610a7f565b604051610407919061242d565b60405180910390f35b34801561041c57600080fd5b506104376004803603810190610432919061231e565b610a88565b6040516104449190612379565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906121e1565b610abf565b005b34801561048257600080fd5b5061049d60048036038101906104989190612448565b610ad1565b005b3480156104ab57600080fd5b506104c660048036038101906104c19190612448565b610b34565b6040516104d39190612379565b60405180910390f35b3480156104e857600080fd5b506104f1610b54565b6040516104fe9190612190565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906121e1565b610b5a565b005b34801561053c57600080fd5b50610545610b6c565b6040516105529190612190565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190612448565b610b72565b60405161058f9190612190565b60405180910390f35b3480156105a457600080fd5b506105ad610bba565b005b3480156105bb57600080fd5b506105c4610bce565b6040516105d19190612190565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc91906124da565b610bd4565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612448565b610dd5565b005b34801561063857600080fd5b50610653600480360381019061064e919061231e565b610e38565b005b34801561066157600080fd5b5061066a610eca565b60405161067791906123a3565b60405180910390f35b34801561068c57600080fd5b50610695610eee565b6040516106a291906123a3565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd91906125a4565b610f18565b005b3480156106e057600080fd5b506106e9610fc5565b6040516106f69190612650565b60405180910390f35b34801561070b57600080fd5b50610714610fdd565b604051610721919061229e565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906125a4565b61106f565b005b34801561075f57600080fd5b5061077a6004803603810190610775919061231e565b61111c565b6040516107879190612379565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b2919061231e565b611193565b6040516107c49190612379565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612448565b6111b6565b005b34801561080257600080fd5b5061081d60048036038101906108189190612448565b61122d565b60405161082a9190612379565b60405180910390f35b34801561083f57600080fd5b5061085a6004803603810190610855919061266b565b61124d565b005b34801561086857600080fd5b50610883600480360381019061087e91906121e1565b6113ad565b005b34801561089157600080fd5b506108ac60048036038101906108a791906126be565b611406565b6040516108b99190612190565b60405180910390f35b3480156108ce57600080fd5b506108d761148d565b6040516108e49190612190565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190612448565b611493565b005b34801561092257600080fd5b5061092b611516565b6040516109389190612190565b60405180910390f35b600a5481565b61094f61151c565b80600a8190555050565b6060600380546109689061272d565b80601f01602080910402602001604051908101604052809291908181526020018280546109949061272d565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b6000806109f661159a565b9050610a038185856115a2565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610a4961159a565b9050610a5685828561176b565b610a618585856117f7565b60019150509392505050565b670de0b6b3a764000081565b60075481565b60006012905090565b600080610a9361159a565b9050610ab4818585610aa58589611406565b610aaf919061278d565b6115a2565b600191505092915050565b610ac761151c565b80600b8190555050565b610ad961151c565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d6020528060005260406000206000915054906101000a900460ff1681565b60065481565b610b6261151c565b80600e8190555050565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc261151c565b610bcc6000611ab4565b565b600e5481565b610bdc61151c565b670429d069189e00008310610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90612833565b60405180910390fd5b600e54600f54610c36919061278d565b4211610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061289f565b60405180910390fd5b42600f819055506000610ca97f000000000000000000000000271dd4139c2e1a6ce1ebc1f410b2c5af46207040610b72565b9050600084670de0b6b3a7640000610cc1919061278d565b8583610ccd91906128bf565b610cd79190612930565b90506000811115610d9057610d0f7f000000000000000000000000271dd4139c2e1a6ce1ebc1f410b2c5af4620704061dead83611b7a565b7f000000000000000000000000271dd4139c2e1a6ce1ebc1f410b2c5af4620704073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d7757600080fd5b505af1158015610d8b573d6000803e3d6000fd5b505050505b7f2c9afb36da638bcccac27c882251b3dc0bd4f5c45f0b40226f2adfdcab1cc00786828686604051610dc5949392919061299d565b60405180910390a1505050505050565b610ddd61151c565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e4061151c565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610e64610eee565b836040518363ffffffff1660e01b8152600401610e829291906129dd565b6020604051808303816000875af1158015610ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec59190612a32565b505050565b7f000000000000000000000000271dd4139c2e1a6ce1ebc1f410b2c5af4620704081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f2061151c565b60005b82829050811015610fc0576000600d6000858585818110610f4757610f46612a5f565b5b9050602002016020810190610f5c9190612448565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610fb890612a8e565b915050610f23565b505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b606060048054610fec9061272d565b80601f01602080910402602001604051908101604052809291908181526020018280546110189061272d565b80156110655780601f1061103a57610100808354040283529160200191611065565b820191906000526020600020905b81548152906001019060200180831161104857829003601f168201915b5050505050905090565b61107761151c565b60005b82829050811015611117576001600d600085858581811061109e5761109d612a5f565b5b90506020020160208101906110b39190612448565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061110f90612a8e565b91505061107a565b505050565b60008061112761159a565b905060006111358286611406565b90508381101561117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190612b48565b60405180910390fd5b61118782868684036115a2565b60019250505092915050565b60008061119e61159a565b90506111ab8185856117f7565b600191505092915050565b6111be61151c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061122a600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dd5565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b61125561151c565b670de0b6b3a7640000831061129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690612bb4565b60405180910390fd5b670de0b6b3a764000082106112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612c20565b60405180910390fd5b670de0b6b3a76400008110611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90612c8c565b60405180910390fd5b670de0b6b3a7640000828285611349919061278d565b611353919061278d565b10611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90612cf8565b60405180910390fd5b826006819055508160078190555080600881905550505050565b6113b561151c565b6113bd610eee565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611402573d6000803e3d6000fd5b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b61149b61151c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190612d8a565b60405180910390fd5b61151381611ab4565b50565b60085481565b61152461159a565b73ffffffffffffffffffffffffffffffffffffffff16611542610eee565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f90612df6565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612e88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790612f1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161175e9190612190565b60405180910390a3505050565b60006117778484611406565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117f157818110156117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612f86565b60405180910390fd5b6117f084848484036115a2565b5b50505050565b600560149054906101000a900460ff161561181c57611817838383611b7a565b611aaf565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090612ff2565b60405180910390fd5b60007f000000000000000000000000271dd4139c2e1a6ce1ebc1f410b2c5af4620704073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119505750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b905060007f000000000000000000000000271dd4139c2e1a6ce1ebc1f410b2c5af4620704073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119f95750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90508180611a045750805b15611aa1576000600a5411611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a459061305e565b60405180910390fd5b600a54831115611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906130ca565b60405180910390fd5b611a9e858484611df0565b92505b611aac858585611b7a565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be09061315c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f906131ee565b60405180910390fd5b611c63838383611e91565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce090613280565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dd79190612190565b60405180910390a3611dea848484611e96565b50505050565b600080670de0b6b3a764000060085485611e0a91906128bf565b611e149190612930565b9050611e238561dead83611b7a565b6000670de0b6b3a76400008585611e3c57600754611e40565b6006545b611e4a91906128bf565b611e549190612930565b9050611e61863083611b7a565b83611e6f57611e6e611e9b565b5b818186611e7c91906132a0565b611e8691906132a0565b925050509392505050565b505050565b505050565b6000611ea630610b72565b90506000611ed37f000000000000000000000000271dd4139c2e1a6ce1ebc1f410b2c5af46207040610b72565b90506000670de0b6b3a76400006002611eec91906128bf565b600b5483611efa91906128bf565b611f049190612930565b905080831115611f12578092505b60008303611f2257505050612175565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611f5a57611f596132d4565b5b604051908082528060200260200182016040528015611f885781602001602082028036833780820191505090505b5090503081600081518110611fa057611f9f612a5f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612039573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061205d9190613318565b8160018151811061207157612070612a5f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94785600084600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161212395949392919061343e565b600060405180830381600087803b15801561213d57600080fd5b505af1158015612151573d6000803e3d6000fd5b505050506000600560146101000a81548160ff021916908315150217905550505050505b565b6000819050919050565b61218a81612177565b82525050565b60006020820190506121a56000830184612181565b92915050565b600080fd5b600080fd5b6121be81612177565b81146121c957600080fd5b50565b6000813590506121db816121b5565b92915050565b6000602082840312156121f7576121f66121ab565b5b6000612205848285016121cc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561224857808201518184015260208101905061222d565b60008484015250505050565b6000601f19601f8301169050919050565b60006122708261220e565b61227a8185612219565b935061228a81856020860161222a565b61229381612254565b840191505092915050565b600060208201905081810360008301526122b88184612265565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122eb826122c0565b9050919050565b6122fb816122e0565b811461230657600080fd5b50565b600081359050612318816122f2565b92915050565b60008060408385031215612335576123346121ab565b5b600061234385828601612309565b9250506020612354858286016121cc565b9150509250929050565b60008115159050919050565b6123738161235e565b82525050565b600060208201905061238e600083018461236a565b92915050565b61239d816122e0565b82525050565b60006020820190506123b86000830184612394565b92915050565b6000806000606084860312156123d7576123d66121ab565b5b60006123e586828701612309565b93505060206123f686828701612309565b9250506040612407868287016121cc565b9150509250925092565b600060ff82169050919050565b61242781612411565b82525050565b6000602082019050612442600083018461241e565b92915050565b60006020828403121561245e5761245d6121ab565b5b600061246c84828501612309565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261249a57612499612475565b5b8235905067ffffffffffffffff8111156124b7576124b661247a565b5b6020830191508360018202830111156124d3576124d261247f565b5b9250929050565b600080600080606085870312156124f4576124f36121ab565b5b6000612502878288016121cc565b9450506020612513878288016121cc565b935050604085013567ffffffffffffffff811115612534576125336121b0565b5b61254087828801612484565b925092505092959194509250565b60008083601f84011261256457612563612475565b5b8235905067ffffffffffffffff8111156125815761258061247a565b5b60208301915083602082028301111561259d5761259c61247f565b5b9250929050565b600080602083850312156125bb576125ba6121ab565b5b600083013567ffffffffffffffff8111156125d9576125d86121b0565b5b6125e58582860161254e565b92509250509250929050565b6000819050919050565b600061261661261161260c846122c0565b6125f1565b6122c0565b9050919050565b6000612628826125fb565b9050919050565b600061263a8261261d565b9050919050565b61264a8161262f565b82525050565b60006020820190506126656000830184612641565b92915050565b600080600060608486031215612684576126836121ab565b5b6000612692868287016121cc565b93505060206126a3868287016121cc565b92505060406126b4868287016121cc565b9150509250925092565b600080604083850312156126d5576126d46121ab565b5b60006126e385828601612309565b92505060206126f485828601612309565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274557607f821691505b602082108103612758576127576126fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061279882612177565b91506127a383612177565b92508282019050808211156127bb576127ba61275e565b5b92915050565b7f43616e6e6f7420696e637265617365207072696365206d6f7265207468616e2060008201527f3330250000000000000000000000000000000000000000000000000000000000602082015250565b600061281d602383612219565b9150612828826127c1565b604082019050919050565b6000602082019050818103600083015261284c81612810565b9050919050565b7f436f6f6c646f776e000000000000000000000000000000000000000000000000600082015250565b6000612889600883612219565b915061289482612853565b602082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b60006128ca82612177565b91506128d583612177565b92508282026128e381612177565b915082820484148315176128fa576128f961275e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061293b82612177565b915061294683612177565b92508261295657612955612901565b5b828204905092915050565b82818337600083830152505050565b600061297c8385612219565b9350612989838584612961565b61299283612254565b840190509392505050565b60006060820190506129b26000830187612181565b6129bf6020830186612181565b81810360408301526129d2818486612970565b905095945050505050565b60006040820190506129f26000830185612394565b6129ff6020830184612181565b9392505050565b612a0f8161235e565b8114612a1a57600080fd5b50565b600081519050612a2c81612a06565b92915050565b600060208284031215612a4857612a476121ab565b5b6000612a5684828501612a1d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612a9982612177565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612acb57612aca61275e565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b32602583612219565b9150612b3d82612ad6565b604082019050919050565b60006020820190508181036000830152612b6181612b25565b9050919050565b7f4275792066656520746f6f206869676800000000000000000000000000000000600082015250565b6000612b9e601083612219565b9150612ba982612b68565b602082019050919050565b60006020820190508181036000830152612bcd81612b91565b9050919050565b7f53656c6c2066656520746f6f2068696768000000000000000000000000000000600082015250565b6000612c0a601183612219565b9150612c1582612bd4565b602082019050919050565b60006020820190508181036000830152612c3981612bfd565b9050919050565b7f4275726e2066656520746f6f2068696768000000000000000000000000000000600082015250565b6000612c76601183612219565b9150612c8182612c40565b602082019050919050565b60006020820190508181036000830152612ca581612c69565b9050919050565b7f546f74616c2066656520746f6f20686967680000000000000000000000000000600082015250565b6000612ce2601283612219565b9150612ced82612cac565b602082019050919050565b60006020820190508181036000830152612d1181612cd5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d74602683612219565b9150612d7f82612d18565b604082019050919050565b60006020820190508181036000830152612da381612d67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de0602083612219565b9150612deb82612daa565b602082019050919050565b60006020820190508181036000830152612e0f81612dd3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e72602483612219565b9150612e7d82612e16565b604082019050919050565b60006020820190508181036000830152612ea181612e65565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f04602283612219565b9150612f0f82612ea8565b604082019050919050565b60006020820190508181036000830152612f3381612ef7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f70601d83612219565b9150612f7b82612f3a565b602082019050919050565b60006020820190508181036000830152612f9f81612f63565b9050919050565b7f5468697320626f7420697320626c6f636b656400000000000000000000000000600082015250565b6000612fdc601383612219565b9150612fe782612fa6565b602082019050919050565b6000602082019050818103600083015261300b81612fcf565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b6000613048601783612219565b915061305382613012565b602082019050919050565b600060208201905081810360008301526130778161303b565b9050919050565b7f4d617820747261646520616d6f756e7420657863656564656400000000000000600082015250565b60006130b4601983612219565b91506130bf8261307e565b602082019050919050565b600060208201905081810360008301526130e3816130a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613146602583612219565b9150613151826130ea565b604082019050919050565b6000602082019050818103600083015261317581613139565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006131d8602383612219565b91506131e38261317c565b604082019050919050565b60006020820190508181036000830152613207816131cb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061326a602683612219565b91506132758261320e565b604082019050919050565b600060208201905081810360008301526132998161325d565b9050919050565b60006132ab82612177565b91506132b683612177565b92508282039050818111156132ce576132cd61275e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050613312816122f2565b92915050565b60006020828403121561332e5761332d6121ab565b5b600061333c84828501613303565b91505092915050565b6000819050919050565b600061336a61336561336084613345565b6125f1565b612177565b9050919050565b61337a8161334f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133b5816122e0565b82525050565b60006133c783836133ac565b60208301905092915050565b6000602082019050919050565b60006133eb82613380565b6133f5818561338b565b93506134008361339c565b8060005b8381101561343157815161341888826133bb565b9750613423836133d3565b925050600181019050613404565b5085935050505092915050565b600060a0820190506134536000830188612181565b6134606020830187613371565b818103604083015261347281866133e0565b90506134816060830185612394565b61348e6080830184612181565b969550505050505056fea2646970667358221220a795964cdfb1f104db9085aff0ff22d4bf7b5c836b4189b48a52d4e8f485a74664736f6c63430008120033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.