ETH Price: $3,592.43 (+4.04%)
 

Overview

Max Total Supply

10,000,000 Mega

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 Mega

Value
$0.00
0x80bfcedde11d5b1470098a459569c114fb6dcc2a
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:
Megaverse

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : token.sol
/*
Website: https://www.mega-verse.tech/
Telegram: https://t.me/MegaverseETH
Twitter: https://twitter.com/MegaverseETH
*/

//SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

pragma solidity ^0.8.17;

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

interface DexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

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

contract Megaverse is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
        uint256 devTax;
    }

    uint256 private constant _totalSupply = 10000000 * 1e18;
    mapping(address => uint256) private _balances;

    //Router
    DexRouter public uniswapRouter;
    address public pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(2, 3);
    Tax public sellTaxes = Tax(2, 3);
    uint256 public totalBuyFees = 5;
    uint256 public totalSellFees = 5;

    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 100000; //after 0.001% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingStatus = false;

    //Wallets
    address public MarketingWallet = 0x0713ddb237Dc607b5e949e9091A68b3B8F79161F;
    address public DevWallet = 0x41c61f5443F12a0ca1611c3dF58B5F7C30B7C06B;

    constructor() ERC20("Megaverse", "Mega") {
        //0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 test
        //0x10ED43C718714eb63d5aA57B78B54704E256024E Pancakeswap on mainnet
        //LFT swap on ETH 0x4f381d5fF61ad1D0eC355fEd2Ac4000eA1e67854
        //UniswapV2 on ETHMain net 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // do not whitelist liquidity pool, otherwise there wont be any taxes
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;

        _mint(msg.sender, _totalSupply);
    }

    function initializePair(address _pairAddress) external onlyOwner {
        pairAddress = _pairAddress;
        tradingStatus = true;
    }

    function setMarketingWallet(address _newMarketing) external onlyOwner {
        require(
            MarketingWallet != address(0),
            "new marketing wallet can not be dead address!"
        );
        MarketingWallet = _newMarketing;
    }

    function setDevWallet(address _newDev) external onlyOwner {
        require(
            _newDev != address(0),
            "new marketing wallet can not be dead address!"
        );
        DevWallet = _newDev;
    }

    function setBuyFees(
        uint256 _marketingTax,
        uint256 _devTax
    ) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        buyTaxes.devTax = _devTax;
        totalBuyFees = _marketingTax + _devTax;
    }

    function setSellFees(
        uint256 _marketingTax,
        uint256 _devTax
    ) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        sellTaxes.devTax = _devTax;
        totalSellFees = _marketingTax + _devTax;
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0,
            "Radiate : Minimum swap amount must be greater than 0!"
        );
        swapTokensAtAmount = _newAmount;
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled == true) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }
        require(tradingStatus, "Trading is not enabled yet!");
        uint256 totalTax = 0;
        if (_to == pairAddress) {
            totalTax = totalSellFees;
        } else if (_from == pairAddress) {
            totalTax = totalBuyFees;
        }
        uint256 tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
        return (_amount - tax);
    }

    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual override {
        require(_from != address(0), "transfer from address zero");
        require(_to != address(0), "transfer to address zero");
        uint256 toTransfer = _takeTax(_from, _to, _amount);

        bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
        if (
            swapAndLiquifyEnabled &&
            pairAddress == _to &&
            canSwap &&
            !whitelisted[_from] &&
            !whitelisted[_to] &&
            !isSwapping
        ) {
            isSwapping = true;
            manageTaxes();
            isSwapping = false;
        }
        super._transfer(_from, _to, toTransfer);
    }

    function manageTaxes() internal {
        swapToETH(balanceOf(address(this)));
        if (address(this).balance > 0) {
            uint256 marketingShare = (address(this).balance * 2) / 5;
            uint256 devShare = address(this).balance - marketingShare;
            (bool success, ) = MarketingWallet.call{value: marketingShare}("");
            (success, ) = DevWallet.call{value: devShare}("");
        }
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function withdrawStuckETH() external onlyOwner {
        (bool success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "transfering ETH failed");
    }

    function withdrawStuckTokens(address erc20_token) external onlyOwner {
        bool success = IERC20(erc20_token).transfer(
            msg.sender,
            IERC20(erc20_token).balanceOf(address(this))
        );
        require(success, "trasfering tokens failed!");
    }

    receive() external payable {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 3 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 5 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 6 of 7 : 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 7 of 7 : 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);
}

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":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":"DevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"devTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"_pairAddress","type":"address"}],"name":"initializePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"devTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"},{"internalType":"uint256","name":"_devTax","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDev","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"},{"internalType":"uint256","name":"_devTax","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180604001604052806002815260200160038152506009600082015181600001556020820151816001015550506040518060400160405280600281526020016003815250600b600082015181600001556020820151816001015550506005600d556005600e55620186a06a084595161401484a00000062000088919062000695565b6010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff021916908315150217905550730713ddb237dc607b5e949e9091a68b3b8f79161f601160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507341c61f5443f12a0ca1611c3df58b5f7c30b7c06b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019357600080fd5b506040518060400160405280600981526020017f4d656761766572736500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d6567610000000000000000000000000000000000000000000000000000000081525081600390816200021191906200093d565b5080600490816200022391906200093d565b505050620002466200023a620003e860201b60201c565b620003f060201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003e2336a084595161401484a000000620004b660201b60201c565b62000b10565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000528576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051f9062000a85565b60405180910390fd5b6200053c600083836200062360201b60201c565b806002600082825462000550919062000aa7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000603919062000af3565b60405180910390a36200061f600083836200062860201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006a2826200062d565b9150620006af836200062d565b925082620006c257620006c162000637565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200074f57607f821691505b60208210810362000765576200076462000707565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000790565b620007db868362000790565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200081e6200081862000812846200062d565b620007f3565b6200062d565b9050919050565b6000819050919050565b6200083a83620007fd565b62000852620008498262000825565b8484546200079d565b825550505050565b600090565b620008696200085a565b620008768184846200082f565b505050565b5b818110156200089e57620008926000826200085f565b6001810190506200087c565b5050565b601f821115620008ed57620008b7816200076b565b620008c28462000780565b81016020851015620008d2578190505b620008ea620008e18562000780565b8301826200087b565b50505b505050565b600082821c905092915050565b60006200091260001984600802620008f2565b1980831691505092915050565b60006200092d8383620008ff565b9150826002028217905092915050565b6200094882620006cd565b67ffffffffffffffff811115620009645762000963620006d8565b5b62000970825462000736565b6200097d828285620008a2565b600060209050601f831160018114620009b55760008415620009a0578287015190505b620009ac85826200091f565b86555062000a1c565b601f198416620009c5866200076b565b60005b82811015620009ef57848901518255600182019150602085019450602081019050620009c8565b8683101562000a0f578489015162000a0b601f891682620008ff565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a6d601f8362000a24565b915062000a7a8262000a35565b602082019050919050565b6000602082019050818103600083015262000aa08162000a5e565b9050919050565b600062000ab4826200062d565b915062000ac1836200062d565b925082820190508082111562000adc5762000adb62000666565b5b92915050565b62000aed816200062d565b82525050565b600060208201905062000b0a600083018462000ae2565b92915050565b6132f48062000b206000396000f3fe60806040526004361061021e5760003560e01c806395d89b4111610123578063b9e93700116100ab578063e2f456051161006f578063e2f45605146107f7578063ef586f7114610822578063f2fde38b14610839578063f5648a4f14610862578063f66895a31461087957610225565b8063b9e9370014610710578063cb9637281461073b578063d0a3981414610764578063d4fb9a011461078f578063dd62ed3e146107ba57610225565b8063a9059cbb116100f2578063a9059cbb1461062b578063afa4f3b214610668578063b115e4df14610691578063b2d8f208146106bc578063b8863115146106e557610225565b806395d89b411461056f5780639fd8234e1461059a578063a457c2d7146105c3578063a8b089821461060057610225565b8063313ce567116101a657806370a082311161017557806370a0823114610499578063715018a6146104d6578063735de9f7146104ed578063864701a5146105185780638da5cb5b1461054457610225565b8063313ce567146103dd57806339509351146104085780634a74bb02146104455780635d098b381461047057610225565b80631950c218116101ed5780631950c218146102e65780631f53ac021461032357806323b872dd1461034c5780632598cdb2146103895780632a55fc2a146103b457610225565b806306fdde031461022a578063095ea7b3146102555780630c4242841461029257806318160ddd146102bb57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f6108a5565b60405161024c9190612231565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906122ec565b610937565b6040516102899190612347565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061238e565b61095a565b005b3480156102c757600080fd5b506102d06109bd565b6040516102dd91906123dd565b60405180910390f35b3480156102f257600080fd5b5061030d600480360381019061030891906123f8565b6109c7565b60405161031a9190612347565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906123f8565b610a1d565b005b34801561035857600080fd5b50610373600480360381019061036e9190612425565b610ad8565b6040516103809190612347565b60405180910390f35b34801561039557600080fd5b5061039e610b07565b6040516103ab9190612487565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906123f8565b610b2d565b005b3480156103e957600080fd5b506103f2610b94565b6040516103ff91906124be565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906122ec565b610b9d565b60405161043c9190612347565b60405180910390f35b34801561045157600080fd5b5061045a610bd4565b6040516104679190612347565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906123f8565b610be7565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906123f8565b610cc4565b6040516104cd91906123dd565b60405180910390f35b3480156104e257600080fd5b506104eb610d0c565b005b3480156104f957600080fd5b50610502610d20565b60405161050f9190612538565b60405180910390f35b34801561052457600080fd5b5061052d610d46565b60405161053b929190612553565b60405180910390f35b34801561055057600080fd5b50610559610d58565b6040516105669190612487565b60405180910390f35b34801561057b57600080fd5b50610584610d82565b6040516105919190612231565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc919061257c565b610e14565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906122ec565b610e46565b6040516105f79190612347565b60405180910390f35b34801561060c57600080fd5b50610615610ebd565b6040516106229190612487565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906122ec565b610ee3565b60405161065f9190612347565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906125bc565b610f06565b005b34801561069d57600080fd5b506106a6610f5b565b6040516106b39190612487565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de919061257c565b610f81565b005b3480156106f157600080fd5b506106fa610fb3565b6040516107079190612347565b60405180910390f35b34801561071c57600080fd5b50610725610fc6565b60405161073291906123dd565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d91906123f8565b610fcc565b005b34801561077057600080fd5b50610779611113565b60405161078691906123dd565b60405180910390f35b34801561079b57600080fd5b506107a4611119565b6040516107b19190612347565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc91906125e9565b61112c565b6040516107ee91906123dd565b60405180910390f35b34801561080357600080fd5b5061080c6111b3565b60405161081991906123dd565b60405180910390f35b34801561082e57600080fd5b506108376111b9565b005b34801561084557600080fd5b50610860600480360381019061085b91906123f8565b611201565b005b34801561086e57600080fd5b50610877611284565b005b34801561088557600080fd5b5061088e61133b565b60405161089c929190612553565b60405180910390f35b6060600380546108b490612658565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612658565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b60008061094261134d565b905061094f818585611355565b600191505092915050565b61096261151e565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a2561151e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906126fb565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ae361134d565b9050610af085828561159c565b610afb858585611628565b60019150509392505050565b601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b3561151e565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160026101000a81548160ff02191690831515021790555050565b60006012905090565b600080610ba861134d565b9050610bc9818585610bba858961112c565b610bc4919061274a565b611355565b600191505092915050565b601160009054906101000a900460ff1681565b610bef61151e565b600073ffffffffffffffffffffffffffffffffffffffff16601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906126fb565b60405180910390fd5b80601160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d1461151e565b610d1e60006118b4565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d9190612658565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbd90612658565b8015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b5050505050905090565b610e1c61151e565b81600b6000018190555080600b600101819055508082610e3c919061274a565b600e819055505050565b600080610e5161134d565b90506000610e5f828661112c565b905083811015610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906127f0565b60405180910390fd5b610eb18286868403611355565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610eee61134d565b9050610efb818585611628565b600191505092915050565b610f0e61151e565b60008111610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612882565b60405180910390fd5b8060108190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f8961151e565b81600960000181905550806009600101819055508082610fa9919061274a565b600d819055505050565b601160019054906101000a900460ff1681565b600d5481565b610fd461151e565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161102c9190612487565b602060405180830381865afa158015611049573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106d91906128b7565b6040518363ffffffff1660e01b815260040161108a9291906128e4565b6020604051808303816000875af11580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd9190612922565b90508061110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069061299b565b60405180910390fd5b5050565b600e5481565b601160029054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b6111c161151e565b60011515601160009054906101000a900460ff161515146111e35760016111e6565b60005b601160006101000a81548160ff021916908315150217905550565b61120961151e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90612a2d565b60405180910390fd5b611281816118b4565b50565b61128c61151e565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112b290612a7e565b60006040518083038185875af1925050503d80600081146112ef576040519150601f19603f3d011682016040523d82523d6000602084013e6112f4565b606091505b5050905080611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612adf565b60405180910390fd5b50565b600b8060000154908060010154905082565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612b71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612c03565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161151191906123dd565b60405180910390a3505050565b61152661134d565b73ffffffffffffffffffffffffffffffffffffffff16611544610d58565b73ffffffffffffffffffffffffffffffffffffffff161461159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612c6f565b60405180910390fd5b565b60006115a8848461112c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116225781811015611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612cdb565b60405180910390fd5b6116218484848403611355565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612d47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90612db3565b60405180910390fd5b600061171384848461197a565b9050600060105461172330610cc4565b10159050601160009054906101000a900460ff16801561179057508373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156117995750805b80156117ef5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118455750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561185e5750601160019054906101000a900460ff16155b156118a2576001601160016101000a81548160ff021916908315150217905550611886611b75565b6000601160016101000a81548160ff0219169083151502179055505b6118ad858584611cde565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a1d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a2a57819050611b6e565b601160029054906101000a900460ff16611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090612e1f565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ada57600e549050611b36565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b3557600d5490505b5b600060648285611b469190612e3f565b611b509190612eb0565b9050611b5d863083611cde565b8084611b699190612ee1565b925050505b9392505050565b611b86611b8130610cc4565b611f54565b6000471115611cdc5760006005600247611ba09190612e3f565b611baa9190612eb0565b905060008147611bba9190612ee1565b90506000601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611c0490612a7e565b60006040518083038185875af1925050503d8060008114611c41576040519150601f19603f3d011682016040523d82523d6000602084013e611c46565b606091505b50509050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611c9090612a7e565b60006040518083038185875af1925050503d8060008114611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b5050809150505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490612f87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613019565b60405180910390fd5b611dc7838383612197565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e44906130ab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f3b91906123dd565b60405180910390a3611f4e84848461219c565b50505050565b6000600267ffffffffffffffff811115611f7157611f706130cb565b5b604051908082528060200260200182016040528015611f9f5781602001602082028036833780820191505090505b5090503081600081518110611fb757611fb66130fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561205e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612082919061313e565b81600181518110612096576120956130fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120fd30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611355565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612161959493929190613264565b600060405180830381600087803b15801561217b57600080fd5b505af115801561218f573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121db5780820151818401526020810190506121c0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612203826121a1565b61220d81856121ac565b935061221d8185602086016121bd565b612226816121e7565b840191505092915050565b6000602082019050818103600083015261224b81846121f8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228382612258565b9050919050565b61229381612278565b811461229e57600080fd5b50565b6000813590506122b08161228a565b92915050565b6000819050919050565b6122c9816122b6565b81146122d457600080fd5b50565b6000813590506122e6816122c0565b92915050565b6000806040838503121561230357612302612253565b5b6000612311858286016122a1565b9250506020612322858286016122d7565b9150509250929050565b60008115159050919050565b6123418161232c565b82525050565b600060208201905061235c6000830184612338565b92915050565b61236b8161232c565b811461237657600080fd5b50565b60008135905061238881612362565b92915050565b600080604083850312156123a5576123a4612253565b5b60006123b3858286016122a1565b92505060206123c485828601612379565b9150509250929050565b6123d7816122b6565b82525050565b60006020820190506123f260008301846123ce565b92915050565b60006020828403121561240e5761240d612253565b5b600061241c848285016122a1565b91505092915050565b60008060006060848603121561243e5761243d612253565b5b600061244c868287016122a1565b935050602061245d868287016122a1565b925050604061246e868287016122d7565b9150509250925092565b61248181612278565b82525050565b600060208201905061249c6000830184612478565b92915050565b600060ff82169050919050565b6124b8816124a2565b82525050565b60006020820190506124d360008301846124af565b92915050565b6000819050919050565b60006124fe6124f96124f484612258565b6124d9565b612258565b9050919050565b6000612510826124e3565b9050919050565b600061252282612505565b9050919050565b61253281612517565b82525050565b600060208201905061254d6000830184612529565b92915050565b600060408201905061256860008301856123ce565b61257560208301846123ce565b9392505050565b6000806040838503121561259357612592612253565b5b60006125a1858286016122d7565b92505060206125b2858286016122d7565b9150509250929050565b6000602082840312156125d2576125d1612253565b5b60006125e0848285016122d7565b91505092915050565b60008060408385031215612600576125ff612253565b5b600061260e858286016122a1565b925050602061261f858286016122a1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267057607f821691505b60208210810361268357612682612629565b5b50919050565b7f6e6577206d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b60006126e5602d836121ac565b91506126f082612689565b604082019050919050565b60006020820190508181036000830152612714816126d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612755826122b6565b9150612760836122b6565b92508282019050808211156127785761277761271b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127da6025836121ac565b91506127e58261277e565b604082019050919050565b60006020820190508181036000830152612809816127cd565b9050919050565b7f52616469617465203a204d696e696d756d207377617020616d6f756e74206d7560008201527f73742062652067726561746572207468616e2030210000000000000000000000602082015250565b600061286c6035836121ac565b915061287782612810565b604082019050919050565b6000602082019050818103600083015261289b8161285f565b9050919050565b6000815190506128b1816122c0565b92915050565b6000602082840312156128cd576128cc612253565b5b60006128db848285016128a2565b91505092915050565b60006040820190506128f96000830185612478565b61290660208301846123ce565b9392505050565b60008151905061291c81612362565b92915050565b60006020828403121561293857612937612253565b5b60006129468482850161290d565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b60006129856019836121ac565b91506129908261294f565b602082019050919050565b600060208201905081810360008301526129b481612978565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a176026836121ac565b9150612a22826129bb565b604082019050919050565b60006020820190508181036000830152612a4681612a0a565b9050919050565b600081905092915050565b50565b6000612a68600083612a4d565b9150612a7382612a58565b600082019050919050565b6000612a8982612a5b565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612ac96016836121ac565b9150612ad482612a93565b602082019050919050565b60006020820190508181036000830152612af881612abc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b5b6024836121ac565b9150612b6682612aff565b604082019050919050565b60006020820190508181036000830152612b8a81612b4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bed6022836121ac565b9150612bf882612b91565b604082019050919050565b60006020820190508181036000830152612c1c81612be0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c596020836121ac565b9150612c6482612c23565b602082019050919050565b60006020820190508181036000830152612c8881612c4c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cc5601d836121ac565b9150612cd082612c8f565b602082019050919050565b60006020820190508181036000830152612cf481612cb8565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000612d31601a836121ac565b9150612d3c82612cfb565b602082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000612d9d6018836121ac565b9150612da882612d67565b602082019050919050565b60006020820190508181036000830152612dcc81612d90565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000612e09601b836121ac565b9150612e1482612dd3565b602082019050919050565b60006020820190508181036000830152612e3881612dfc565b9050919050565b6000612e4a826122b6565b9150612e55836122b6565b9250828202612e63816122b6565b91508282048414831517612e7a57612e7961271b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ebb826122b6565b9150612ec6836122b6565b925082612ed657612ed5612e81565b5b828204905092915050565b6000612eec826122b6565b9150612ef7836122b6565b9250828203905081811115612f0f57612f0e61271b565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f716025836121ac565b9150612f7c82612f15565b604082019050919050565b60006020820190508181036000830152612fa081612f64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130036023836121ac565b915061300e82612fa7565b604082019050919050565b6000602082019050818103600083015261303281612ff6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130956026836121ac565b91506130a082613039565b604082019050919050565b600060208201905081810360008301526130c481613088565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506131388161228a565b92915050565b60006020828403121561315457613153612253565b5b600061316284828501613129565b91505092915050565b6000819050919050565b600061319061318b6131868461316b565b6124d9565b6122b6565b9050919050565b6131a081613175565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131db81612278565b82525050565b60006131ed83836131d2565b60208301905092915050565b6000602082019050919050565b6000613211826131a6565b61321b81856131b1565b9350613226836131c2565b8060005b8381101561325757815161323e88826131e1565b9750613249836131f9565b92505060018101905061322a565b5085935050505092915050565b600060a08201905061327960008301886123ce565b6132866020830187613197565b81810360408301526132988186613206565b90506132a76060830185612478565b6132b460808301846123ce565b969550505050505056fea26469706673582212203f7831d32a7e7a1aab02a917d6b551577a30f65bdac322c2d6ffc9320e1058d064736f6c63430008110033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806395d89b4111610123578063b9e93700116100ab578063e2f456051161006f578063e2f45605146107f7578063ef586f7114610822578063f2fde38b14610839578063f5648a4f14610862578063f66895a31461087957610225565b8063b9e9370014610710578063cb9637281461073b578063d0a3981414610764578063d4fb9a011461078f578063dd62ed3e146107ba57610225565b8063a9059cbb116100f2578063a9059cbb1461062b578063afa4f3b214610668578063b115e4df14610691578063b2d8f208146106bc578063b8863115146106e557610225565b806395d89b411461056f5780639fd8234e1461059a578063a457c2d7146105c3578063a8b089821461060057610225565b8063313ce567116101a657806370a082311161017557806370a0823114610499578063715018a6146104d6578063735de9f7146104ed578063864701a5146105185780638da5cb5b1461054457610225565b8063313ce567146103dd57806339509351146104085780634a74bb02146104455780635d098b381461047057610225565b80631950c218116101ed5780631950c218146102e65780631f53ac021461032357806323b872dd1461034c5780632598cdb2146103895780632a55fc2a146103b457610225565b806306fdde031461022a578063095ea7b3146102555780630c4242841461029257806318160ddd146102bb57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f6108a5565b60405161024c9190612231565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906122ec565b610937565b6040516102899190612347565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061238e565b61095a565b005b3480156102c757600080fd5b506102d06109bd565b6040516102dd91906123dd565b60405180910390f35b3480156102f257600080fd5b5061030d600480360381019061030891906123f8565b6109c7565b60405161031a9190612347565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906123f8565b610a1d565b005b34801561035857600080fd5b50610373600480360381019061036e9190612425565b610ad8565b6040516103809190612347565b60405180910390f35b34801561039557600080fd5b5061039e610b07565b6040516103ab9190612487565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906123f8565b610b2d565b005b3480156103e957600080fd5b506103f2610b94565b6040516103ff91906124be565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906122ec565b610b9d565b60405161043c9190612347565b60405180910390f35b34801561045157600080fd5b5061045a610bd4565b6040516104679190612347565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906123f8565b610be7565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906123f8565b610cc4565b6040516104cd91906123dd565b60405180910390f35b3480156104e257600080fd5b506104eb610d0c565b005b3480156104f957600080fd5b50610502610d20565b60405161050f9190612538565b60405180910390f35b34801561052457600080fd5b5061052d610d46565b60405161053b929190612553565b60405180910390f35b34801561055057600080fd5b50610559610d58565b6040516105669190612487565b60405180910390f35b34801561057b57600080fd5b50610584610d82565b6040516105919190612231565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc919061257c565b610e14565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906122ec565b610e46565b6040516105f79190612347565b60405180910390f35b34801561060c57600080fd5b50610615610ebd565b6040516106229190612487565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906122ec565b610ee3565b60405161065f9190612347565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906125bc565b610f06565b005b34801561069d57600080fd5b506106a6610f5b565b6040516106b39190612487565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de919061257c565b610f81565b005b3480156106f157600080fd5b506106fa610fb3565b6040516107079190612347565b60405180910390f35b34801561071c57600080fd5b50610725610fc6565b60405161073291906123dd565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d91906123f8565b610fcc565b005b34801561077057600080fd5b50610779611113565b60405161078691906123dd565b60405180910390f35b34801561079b57600080fd5b506107a4611119565b6040516107b19190612347565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc91906125e9565b61112c565b6040516107ee91906123dd565b60405180910390f35b34801561080357600080fd5b5061080c6111b3565b60405161081991906123dd565b60405180910390f35b34801561082e57600080fd5b506108376111b9565b005b34801561084557600080fd5b50610860600480360381019061085b91906123f8565b611201565b005b34801561086e57600080fd5b50610877611284565b005b34801561088557600080fd5b5061088e61133b565b60405161089c929190612553565b60405180910390f35b6060600380546108b490612658565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612658565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b60008061094261134d565b905061094f818585611355565b600191505092915050565b61096261151e565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a2561151e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b906126fb565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ae361134d565b9050610af085828561159c565b610afb858585611628565b60019150509392505050565b601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b3561151e565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160026101000a81548160ff02191690831515021790555050565b60006012905090565b600080610ba861134d565b9050610bc9818585610bba858961112c565b610bc4919061274a565b611355565b600191505092915050565b601160009054906101000a900460ff1681565b610bef61151e565b600073ffffffffffffffffffffffffffffffffffffffff16601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906126fb565b60405180910390fd5b80601160036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d1461151e565b610d1e60006118b4565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d9190612658565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbd90612658565b8015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b5050505050905090565b610e1c61151e565b81600b6000018190555080600b600101819055508082610e3c919061274a565b600e819055505050565b600080610e5161134d565b90506000610e5f828661112c565b905083811015610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906127f0565b60405180910390fd5b610eb18286868403611355565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610eee61134d565b9050610efb818585611628565b600191505092915050565b610f0e61151e565b60008111610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890612882565b60405180910390fd5b8060108190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f8961151e565b81600960000181905550806009600101819055508082610fa9919061274a565b600d819055505050565b601160019054906101000a900460ff1681565b600d5481565b610fd461151e565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161102c9190612487565b602060405180830381865afa158015611049573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106d91906128b7565b6040518363ffffffff1660e01b815260040161108a9291906128e4565b6020604051808303816000875af11580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd9190612922565b90508061110f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111069061299b565b60405180910390fd5b5050565b600e5481565b601160029054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b6111c161151e565b60011515601160009054906101000a900460ff161515146111e35760016111e6565b60005b601160006101000a81548160ff021916908315150217905550565b61120961151e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90612a2d565b60405180910390fd5b611281816118b4565b50565b61128c61151e565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112b290612a7e565b60006040518083038185875af1925050503d80600081146112ef576040519150601f19603f3d011682016040523d82523d6000602084013e6112f4565b606091505b5050905080611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612adf565b60405180910390fd5b50565b600b8060000154908060010154905082565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612b71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90612c03565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161151191906123dd565b60405180910390a3505050565b61152661134d565b73ffffffffffffffffffffffffffffffffffffffff16611544610d58565b73ffffffffffffffffffffffffffffffffffffffff161461159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612c6f565b60405180910390fd5b565b60006115a8848461112c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116225781811015611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612cdb565b60405180910390fd5b6116218484848403611355565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90612d47565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90612db3565b60405180910390fd5b600061171384848461197a565b9050600060105461172330610cc4565b10159050601160009054906101000a900460ff16801561179057508373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156117995750805b80156117ef5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118455750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561185e5750601160019054906101000a900460ff16155b156118a2576001601160016101000a81548160ff021916908315150217905550611886611b75565b6000601160016101000a81548160ff0219169083151502179055505b6118ad858584611cde565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a1d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611a2a57819050611b6e565b601160029054906101000a900460ff16611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090612e1f565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ada57600e549050611b36565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611b3557600d5490505b5b600060648285611b469190612e3f565b611b509190612eb0565b9050611b5d863083611cde565b8084611b699190612ee1565b925050505b9392505050565b611b86611b8130610cc4565b611f54565b6000471115611cdc5760006005600247611ba09190612e3f565b611baa9190612eb0565b905060008147611bba9190612ee1565b90506000601160039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611c0490612a7e565b60006040518083038185875af1925050503d8060008114611c41576040519150601f19603f3d011682016040523d82523d6000602084013e611c46565b606091505b50509050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611c9090612a7e565b60006040518083038185875af1925050503d8060008114611ccd576040519150601f19603f3d011682016040523d82523d6000602084013e611cd2565b606091505b5050809150505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490612f87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613019565b60405180910390fd5b611dc7838383612197565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e44906130ab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f3b91906123dd565b60405180910390a3611f4e84848461219c565b50505050565b6000600267ffffffffffffffff811115611f7157611f706130cb565b5b604051908082528060200260200182016040528015611f9f5781602001602082028036833780820191505090505b5090503081600081518110611fb757611fb66130fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561205e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612082919061313e565b81600181518110612096576120956130fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120fd30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611355565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612161959493929190613264565b600060405180830381600087803b15801561217b57600080fd5b505af115801561218f573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121db5780820151818401526020810190506121c0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612203826121a1565b61220d81856121ac565b935061221d8185602086016121bd565b612226816121e7565b840191505092915050565b6000602082019050818103600083015261224b81846121f8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228382612258565b9050919050565b61229381612278565b811461229e57600080fd5b50565b6000813590506122b08161228a565b92915050565b6000819050919050565b6122c9816122b6565b81146122d457600080fd5b50565b6000813590506122e6816122c0565b92915050565b6000806040838503121561230357612302612253565b5b6000612311858286016122a1565b9250506020612322858286016122d7565b9150509250929050565b60008115159050919050565b6123418161232c565b82525050565b600060208201905061235c6000830184612338565b92915050565b61236b8161232c565b811461237657600080fd5b50565b60008135905061238881612362565b92915050565b600080604083850312156123a5576123a4612253565b5b60006123b3858286016122a1565b92505060206123c485828601612379565b9150509250929050565b6123d7816122b6565b82525050565b60006020820190506123f260008301846123ce565b92915050565b60006020828403121561240e5761240d612253565b5b600061241c848285016122a1565b91505092915050565b60008060006060848603121561243e5761243d612253565b5b600061244c868287016122a1565b935050602061245d868287016122a1565b925050604061246e868287016122d7565b9150509250925092565b61248181612278565b82525050565b600060208201905061249c6000830184612478565b92915050565b600060ff82169050919050565b6124b8816124a2565b82525050565b60006020820190506124d360008301846124af565b92915050565b6000819050919050565b60006124fe6124f96124f484612258565b6124d9565b612258565b9050919050565b6000612510826124e3565b9050919050565b600061252282612505565b9050919050565b61253281612517565b82525050565b600060208201905061254d6000830184612529565b92915050565b600060408201905061256860008301856123ce565b61257560208301846123ce565b9392505050565b6000806040838503121561259357612592612253565b5b60006125a1858286016122d7565b92505060206125b2858286016122d7565b9150509250929050565b6000602082840312156125d2576125d1612253565b5b60006125e0848285016122d7565b91505092915050565b60008060408385031215612600576125ff612253565b5b600061260e858286016122a1565b925050602061261f858286016122a1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267057607f821691505b60208210810361268357612682612629565b5b50919050565b7f6e6577206d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b60006126e5602d836121ac565b91506126f082612689565b604082019050919050565b60006020820190508181036000830152612714816126d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612755826122b6565b9150612760836122b6565b92508282019050808211156127785761277761271b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127da6025836121ac565b91506127e58261277e565b604082019050919050565b60006020820190508181036000830152612809816127cd565b9050919050565b7f52616469617465203a204d696e696d756d207377617020616d6f756e74206d7560008201527f73742062652067726561746572207468616e2030210000000000000000000000602082015250565b600061286c6035836121ac565b915061287782612810565b604082019050919050565b6000602082019050818103600083015261289b8161285f565b9050919050565b6000815190506128b1816122c0565b92915050565b6000602082840312156128cd576128cc612253565b5b60006128db848285016128a2565b91505092915050565b60006040820190506128f96000830185612478565b61290660208301846123ce565b9392505050565b60008151905061291c81612362565b92915050565b60006020828403121561293857612937612253565b5b60006129468482850161290d565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b60006129856019836121ac565b91506129908261294f565b602082019050919050565b600060208201905081810360008301526129b481612978565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a176026836121ac565b9150612a22826129bb565b604082019050919050565b60006020820190508181036000830152612a4681612a0a565b9050919050565b600081905092915050565b50565b6000612a68600083612a4d565b9150612a7382612a58565b600082019050919050565b6000612a8982612a5b565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612ac96016836121ac565b9150612ad482612a93565b602082019050919050565b60006020820190508181036000830152612af881612abc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b5b6024836121ac565b9150612b6682612aff565b604082019050919050565b60006020820190508181036000830152612b8a81612b4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bed6022836121ac565b9150612bf882612b91565b604082019050919050565b60006020820190508181036000830152612c1c81612be0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c596020836121ac565b9150612c6482612c23565b602082019050919050565b60006020820190508181036000830152612c8881612c4c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cc5601d836121ac565b9150612cd082612c8f565b602082019050919050565b60006020820190508181036000830152612cf481612cb8565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000612d31601a836121ac565b9150612d3c82612cfb565b602082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000612d9d6018836121ac565b9150612da882612d67565b602082019050919050565b60006020820190508181036000830152612dcc81612d90565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000612e09601b836121ac565b9150612e1482612dd3565b602082019050919050565b60006020820190508181036000830152612e3881612dfc565b9050919050565b6000612e4a826122b6565b9150612e55836122b6565b9250828202612e63816122b6565b91508282048414831517612e7a57612e7961271b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ebb826122b6565b9150612ec6836122b6565b925082612ed657612ed5612e81565b5b828204905092915050565b6000612eec826122b6565b9150612ef7836122b6565b9250828203905081811115612f0f57612f0e61271b565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f716025836121ac565b9150612f7c82612f15565b604082019050919050565b60006020820190508181036000830152612fa081612f64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006130036023836121ac565b915061300e82612fa7565b604082019050919050565b6000602082019050818103600083015261303281612ff6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130956026836121ac565b91506130a082613039565b604082019050919050565b600060208201905081810360008301526130c481613088565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506131388161228a565b92915050565b60006020828403121561315457613153612253565b5b600061316284828501613129565b91505092915050565b6000819050919050565b600061319061318b6131868461316b565b6124d9565b6122b6565b9050919050565b6131a081613175565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131db81612278565b82525050565b60006131ed83836131d2565b60208301905092915050565b6000602082019050919050565b6000613211826131a6565b61321b81856131b1565b9350613226836131c2565b8060005b8381101561325757815161323e88826131e1565b9750613249836131f9565b92505060018101905061322a565b5085935050505092915050565b600060a08201905061327960008301886123ce565b6132866020830187613197565b81810360408301526132988186613206565b90506132a76060830185612478565b6132b460808301846123ce565b969550505050505056fea26469706673582212203f7831d32a7e7a1aab02a917d6b551577a30f65bdac322c2d6ffc9320e1058d064736f6c63430008110033

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.