ETH Price: $2,622.33 (+1.06%)

Token

Harold (HAROLD)
 

Overview

Max Total Supply

10,000,000,000 HAROLD

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,636,363.5 HAROLD

Value
$0.00
0x972C550F55F7Aa8B7E2dB9a36f6dDb8Adf7B21f9
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:
Harold

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : HaroldToken.sol
// contracts/HaroldToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";

contract Harold is ERC20, Ownable {
    using SafeMath for uint;

    address public constant WETH = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    address public constant deadAddress = address(0xdead);
    address public immutable pair;

    bool public tradingActive = false;
    bool public limitsInEffect = true;
    uint public launchBlock;
    
    uint public immutable transferLimit;
    uint public immutable maxWallet;

    mapping(address => bool) public isExcludedFromLimits;

    constructor() ERC20("Harold", "HAROLD") {
        uint initialSupply = 10_000_000_000 ether;

        transferLimit = initialSupply / 100; // 1% of supply
        maxWallet = transferLimit * 3 / 2; // 1.5% of supply

        IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        pair = IUniswapV2Factory(router.factory())
            .createPair(address(this), WETH);

        excludeFromLimits(owner(), true);
        excludeFromLimits(address(this), true);
        excludeFromLimits(deadAddress, true);

        // the constructor method is only called once on deployment
        _mint(owner(), initialSupply);
    }

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

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

        if (limitsInEffect) {
            if (!tradingActive) {
                require(
                    isExcludedFromLimits[from] || isExcludedFromLimits[to],
                    "Trading is not active!"
                );
            } else {
                if (!isExcludedFromLimits[from] && !isExcludedFromLimits[to]) {
                    require(block.number > launchBlock + 1, 'Transfers are not allowed for the first two blocks after launch!');
                    require(amount <= transferLimit, 'This transfer exceeds the allowed transfer limit!');

                    if (from == pair || (to != pair && from != pair)) {
                        require(balanceOf(to) + amount <= maxWallet, 'This transfer exceeds the allowed wallet limit!');
                    }
                }
            }
        }
        
        super._transfer(from, to, amount);
    }

    // *** RESTRICTED FUNCTIONS ***

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

    // once enabled, can never be turned off
    function enableTrading() 
        external 
        onlyOwner 
        returns (bool) 
    {
        launchBlock = block.number;
        tradingActive = true;
        return true;
    }

    function removeLimits() 
        external 
        onlyOwner 
        returns (bool) 
    {
        limitsInEffect = false;
        return true;
    }
}

File 2 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import './IUniswapV2Router01.sol';

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

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

File 3 of 10 : IUniswapV2Router01.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

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

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

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

File 4 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 10 : 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 6 of 10 : 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 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 8 of 10 : 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 9 of 10 : 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 10 of 10 : 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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "paris",
  "libraries": {},
  "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":"WETH","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000600560146101000a81548160ff0219169083151502179055506001600560156101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600681526020017f4861726f6c6400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4841524f4c4400000000000000000000000000000000000000000000000000008152508160039081620000c59190620008f3565b508060049081620000d79190620008f3565b505050620000fa620000ee6200030e60201b60201c565b6200031660201b60201c565b60006b204fce5e3e2502611000000090506064816200011a919062000a38565b60a081815250506002600360a05162000134919062000a70565b62000140919062000a38565b60c081815250506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d2919062000b25565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b81526004016200022292919062000b68565b6020604051808303816000875af115801562000242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000268919062000b25565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620002bd620002af620003dc60201b60201c565b60016200040660201b60201c565b620002d03060016200040660201b60201c565b620002e561dead60016200040660201b60201c565b62000306620002f9620003dc60201b60201c565b836200047160201b60201c565b505062000cf3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000416620005de60201b60201c565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004da9062000bf6565b60405180910390fd5b620004f7600083836200066f60201b60201c565b80600260008282546200050b919062000c18565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005be919062000c64565b60405180910390a3620005da600083836200067460201b60201c565b5050565b620005ee6200030e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000614620003dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200066d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006649062000cd1565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006fb57607f821691505b602082108103620007115762000710620006b3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200077b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200073c565b6200078786836200073c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007d4620007ce620007c8846200079f565b620007a9565b6200079f565b9050919050565b6000819050919050565b620007f083620007b3565b62000808620007ff82620007db565b84845462000749565b825550505050565b600090565b6200081f62000810565b6200082c818484620007e5565b505050565b5b8181101562000854576200084860008262000815565b60018101905062000832565b5050565b601f821115620008a3576200086d8162000717565b62000878846200072c565b8101602085101562000888578190505b620008a062000897856200072c565b83018262000831565b50505b505050565b600082821c905092915050565b6000620008c860001984600802620008a8565b1980831691505092915050565b6000620008e38383620008b5565b9150826002028217905092915050565b620008fe8262000679565b67ffffffffffffffff8111156200091a576200091962000684565b5b620009268254620006e2565b6200093382828562000858565b600060209050601f8311600181146200096b576000841562000956578287015190505b620009628582620008d5565b865550620009d2565b601f1984166200097b8662000717565b60005b82811015620009a5578489015182556001820191506020850194506020810190506200097e565b86831015620009c55784890151620009c1601f891682620008b5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a45826200079f565b915062000a52836200079f565b92508262000a655762000a64620009da565b5b828204905092915050565b600062000a7d826200079f565b915062000a8a836200079f565b925082820262000a9a816200079f565b9150828204841483151762000ab45762000ab362000a09565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aed8262000ac0565b9050919050565b62000aff8162000ae0565b811462000b0b57600080fd5b50565b60008151905062000b1f8162000af4565b92915050565b60006020828403121562000b3e5762000b3d62000abb565b5b600062000b4e8482850162000b0e565b91505092915050565b62000b628162000ae0565b82525050565b600060408201905062000b7f600083018562000b57565b62000b8e602083018462000b57565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000bde601f8362000b95565b915062000beb8262000ba6565b602082019050919050565b6000602082019050818103600083015262000c118162000bcf565b9050919050565b600062000c25826200079f565b915062000c32836200079f565b925082820190508082111562000c4d5762000c4c62000a09565b5b92915050565b62000c5e816200079f565b82525050565b600060208201905062000c7b600083018462000c53565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000cb960208362000b95565b915062000cc68262000c81565b602082019050919050565b6000602082019050818103600083015262000cec8162000caa565b9050919050565b60805160a05160c05161211262000d4660003960008181610a53015261115c015260008181610a770152610ff601526000818161086e01528181611059015281816110ae015261110501526121126000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063bbc0c74211610097578063dd62ed3e11610071578063dd62ed3e1461048f578063f2fde38b146104bf578063f8b45b05146104db578063f9432517146104f95761018e565b8063bbc0c74214610437578063c0a904a214610455578063d00efb2f146104715761018e565b80638da5cb5b1461035f57806395d89b411461037d578063a457c2d71461039b578063a8aa1b31146103cb578063a9059cbb146103e9578063ad5c4648146104195761018e565b8063395093511161014b57806370a082311161012557806370a08231146102e9578063715018a614610319578063751039fc146103235780638a8c523c146103415761018e565b8063395093511461026b5780634a62bb651461029b5780635cce86cd146102b95761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff57806327c8f8351461022f578063313ce5671461024d575b600080fd5b61019b610517565b6040516101a89190611639565b60405180910390f35b6101cb60048036038101906101c691906116f4565b6105a9565b6040516101d8919061174f565b60405180910390f35b6101e96105cc565b6040516101f69190611779565b60405180910390f35b61021960048036038101906102149190611794565b6105d6565b604051610226919061174f565b60405180910390f35b610237610605565b60405161024491906117f6565b60405180910390f35b61025561060b565b604051610262919061182d565b60405180910390f35b610285600480360381019061028091906116f4565b610614565b604051610292919061174f565b60405180910390f35b6102a361064b565b6040516102b0919061174f565b60405180910390f35b6102d360048036038101906102ce9190611848565b61065e565b6040516102e0919061174f565b60405180910390f35b61030360048036038101906102fe9190611848565b61067e565b6040516103109190611779565b60405180910390f35b6103216106c6565b005b61032b6106da565b604051610338919061174f565b60405180910390f35b610349610706565b604051610356919061174f565b60405180910390f35b610367610739565b60405161037491906117f6565b60405180910390f35b610385610763565b6040516103929190611639565b60405180910390f35b6103b560048036038101906103b091906116f4565b6107f5565b6040516103c2919061174f565b60405180910390f35b6103d361086c565b6040516103e091906117f6565b60405180910390f35b61040360048036038101906103fe91906116f4565b610890565b604051610410919061174f565b60405180910390f35b6104216108b3565b60405161042e91906117f6565b60405180910390f35b61043f6108cb565b60405161044c919061174f565b60405180910390f35b61046f600480360381019061046a91906118a1565b6108de565b005b610479610941565b6040516104869190611779565b60405180910390f35b6104a960048036038101906104a491906118e1565b610947565b6040516104b69190611779565b60405180910390f35b6104d960048036038101906104d49190611848565b6109ce565b005b6104e3610a51565b6040516104f09190611779565b60405180910390f35b610501610a75565b60405161050e9190611779565b60405180910390f35b60606003805461052690611950565b80601f016020809104026020016040519081016040528092919081815260200182805461055290611950565b801561059f5780601f106105745761010080835404028352916020019161059f565b820191906000526020600020905b81548152906001019060200180831161058257829003601f168201915b5050505050905090565b6000806105b4610a99565b90506105c1818585610aa1565b600191505092915050565b6000600254905090565b6000806105e1610a99565b90506105ee858285610c6a565b6105f9858585610cf6565b60019150509392505050565b61dead81565b60006012905090565b60008061061f610a99565b90506106408185856106318589610947565b61063b91906119b0565b610aa1565b600191505092915050565b600560159054906101000a900460ff1681565b60076020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ce6111e5565b6106d86000611263565b565b60006106e46111e5565b6000600560156101000a81548160ff0219169083151502179055506001905090565b60006107106111e5565b436006819055506001600560146101000a81548160ff0219169083151502179055506001905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077290611950565b80601f016020809104026020016040519081016040528092919081815260200182805461079e90611950565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b600080610800610a99565b9050600061080e8286610947565b905083811015610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084a90611a56565b60405180910390fd5b6108608286868403610aa1565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008061089b610a99565b90506108a8818585610cf6565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600560149054906101000a900460ff1681565b6108e66111e5565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d66111e5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90611ae8565b60405180910390fd5b610a4e81611263565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790611b7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690611c0c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5d9190611779565b60405180910390a3505050565b6000610c768484610947565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cf05781811015610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990611c78565b60405180910390fd5b610cef8484848403610aa1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90611d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90611d9c565b60405180910390fd5b60008103610ded57610de883836000611329565b6111e0565b600560159054906101000a900460ff16156111d457600560149054906101000a900460ff16610efb57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eb75750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611e08565b60405180910390fd5b6111d3565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610f9f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156111d2576001600654610fb391906119b0565b4311610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90611e9a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000811115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90611f2c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061115557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561115457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b156111d1577f0000000000000000000000000000000000000000000000000000000000000000816111858461067e565b61118f91906119b0565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611fbe565b60405180910390fd5b5b5b5b5b6111df838383611329565b5b505050565b6111ed610a99565b73ffffffffffffffffffffffffffffffffffffffff1661120b610739565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061202a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90611d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90611d9c565b60405180910390fd5b61141283838361159f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906120bc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115869190611779565b60405180910390a36115998484846115a4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115e35780820151818401526020810190506115c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061160b826115a9565b61161581856115b4565b93506116258185602086016115c5565b61162e816115ef565b840191505092915050565b600060208201905081810360008301526116538184611600565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061168b82611660565b9050919050565b61169b81611680565b81146116a657600080fd5b50565b6000813590506116b881611692565b92915050565b6000819050919050565b6116d1816116be565b81146116dc57600080fd5b50565b6000813590506116ee816116c8565b92915050565b6000806040838503121561170b5761170a61165b565b5b6000611719858286016116a9565b925050602061172a858286016116df565b9150509250929050565b60008115159050919050565b61174981611734565b82525050565b60006020820190506117646000830184611740565b92915050565b611773816116be565b82525050565b600060208201905061178e600083018461176a565b92915050565b6000806000606084860312156117ad576117ac61165b565b5b60006117bb868287016116a9565b93505060206117cc868287016116a9565b92505060406117dd868287016116df565b9150509250925092565b6117f081611680565b82525050565b600060208201905061180b60008301846117e7565b92915050565b600060ff82169050919050565b61182781611811565b82525050565b6000602082019050611842600083018461181e565b92915050565b60006020828403121561185e5761185d61165b565b5b600061186c848285016116a9565b91505092915050565b61187e81611734565b811461188957600080fd5b50565b60008135905061189b81611875565b92915050565b600080604083850312156118b8576118b761165b565b5b60006118c6858286016116a9565b92505060206118d78582860161188c565b9150509250929050565b600080604083850312156118f8576118f761165b565b5b6000611906858286016116a9565b9250506020611917858286016116a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061196857607f821691505b60208210810361197b5761197a611921565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119bb826116be565b91506119c6836116be565b92508282019050808211156119de576119dd611981565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a406025836115b4565b9150611a4b826119e4565b604082019050919050565b60006020820190508181036000830152611a6f81611a33565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ad26026836115b4565b9150611add82611a76565b604082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b646024836115b4565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf66022836115b4565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c62601d836115b4565b9150611c6d82611c2c565b602082019050919050565b60006020820190508181036000830152611c9181611c55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cf46025836115b4565b9150611cff82611c98565b604082019050919050565b60006020820190508181036000830152611d2381611ce7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d866023836115b4565b9150611d9182611d2a565b604082019050919050565b60006020820190508181036000830152611db581611d79565b9050919050565b7f54726164696e67206973206e6f74206163746976652100000000000000000000600082015250565b6000611df26016836115b4565b9150611dfd82611dbc565b602082019050919050565b60006020820190508181036000830152611e2181611de5565b9050919050565b7f5472616e736665727320617265206e6f7420616c6c6f77656420666f7220746860008201527f652066697273742074776f20626c6f636b73206166746572206c61756e636821602082015250565b6000611e846040836115b4565b9150611e8f82611e28565b604082019050919050565b60006020820190508181036000830152611eb381611e77565b9050919050565b7f54686973207472616e7366657220657863656564732074686520616c6c6f776560008201527f64207472616e73666572206c696d697421000000000000000000000000000000602082015250565b6000611f166031836115b4565b9150611f2182611eba565b604082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f54686973207472616e7366657220657863656564732074686520616c6c6f776560008201527f642077616c6c6574206c696d6974210000000000000000000000000000000000602082015250565b6000611fa8602f836115b4565b9150611fb382611f4c565b604082019050919050565b60006020820190508181036000830152611fd781611f9b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120146020836115b4565b915061201f82611fde565b602082019050919050565b6000602082019050818103600083015261204381612007565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120a66026836115b4565b91506120b18261204a565b604082019050919050565b600060208201905081810360008301526120d581612099565b905091905056fea264697066735822122096ba8d113cfc6814547f98286e5405dc5107bd06d97f94e915d8c85e6051461564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80638da5cb5b116100de578063bbc0c74211610097578063dd62ed3e11610071578063dd62ed3e1461048f578063f2fde38b146104bf578063f8b45b05146104db578063f9432517146104f95761018e565b8063bbc0c74214610437578063c0a904a214610455578063d00efb2f146104715761018e565b80638da5cb5b1461035f57806395d89b411461037d578063a457c2d71461039b578063a8aa1b31146103cb578063a9059cbb146103e9578063ad5c4648146104195761018e565b8063395093511161014b57806370a082311161012557806370a08231146102e9578063715018a614610319578063751039fc146103235780638a8c523c146103415761018e565b8063395093511461026b5780634a62bb651461029b5780635cce86cd146102b95761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff57806327c8f8351461022f578063313ce5671461024d575b600080fd5b61019b610517565b6040516101a89190611639565b60405180910390f35b6101cb60048036038101906101c691906116f4565b6105a9565b6040516101d8919061174f565b60405180910390f35b6101e96105cc565b6040516101f69190611779565b60405180910390f35b61021960048036038101906102149190611794565b6105d6565b604051610226919061174f565b60405180910390f35b610237610605565b60405161024491906117f6565b60405180910390f35b61025561060b565b604051610262919061182d565b60405180910390f35b610285600480360381019061028091906116f4565b610614565b604051610292919061174f565b60405180910390f35b6102a361064b565b6040516102b0919061174f565b60405180910390f35b6102d360048036038101906102ce9190611848565b61065e565b6040516102e0919061174f565b60405180910390f35b61030360048036038101906102fe9190611848565b61067e565b6040516103109190611779565b60405180910390f35b6103216106c6565b005b61032b6106da565b604051610338919061174f565b60405180910390f35b610349610706565b604051610356919061174f565b60405180910390f35b610367610739565b60405161037491906117f6565b60405180910390f35b610385610763565b6040516103929190611639565b60405180910390f35b6103b560048036038101906103b091906116f4565b6107f5565b6040516103c2919061174f565b60405180910390f35b6103d361086c565b6040516103e091906117f6565b60405180910390f35b61040360048036038101906103fe91906116f4565b610890565b604051610410919061174f565b60405180910390f35b6104216108b3565b60405161042e91906117f6565b60405180910390f35b61043f6108cb565b60405161044c919061174f565b60405180910390f35b61046f600480360381019061046a91906118a1565b6108de565b005b610479610941565b6040516104869190611779565b60405180910390f35b6104a960048036038101906104a491906118e1565b610947565b6040516104b69190611779565b60405180910390f35b6104d960048036038101906104d49190611848565b6109ce565b005b6104e3610a51565b6040516104f09190611779565b60405180910390f35b610501610a75565b60405161050e9190611779565b60405180910390f35b60606003805461052690611950565b80601f016020809104026020016040519081016040528092919081815260200182805461055290611950565b801561059f5780601f106105745761010080835404028352916020019161059f565b820191906000526020600020905b81548152906001019060200180831161058257829003601f168201915b5050505050905090565b6000806105b4610a99565b90506105c1818585610aa1565b600191505092915050565b6000600254905090565b6000806105e1610a99565b90506105ee858285610c6a565b6105f9858585610cf6565b60019150509392505050565b61dead81565b60006012905090565b60008061061f610a99565b90506106408185856106318589610947565b61063b91906119b0565b610aa1565b600191505092915050565b600560159054906101000a900460ff1681565b60076020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ce6111e5565b6106d86000611263565b565b60006106e46111e5565b6000600560156101000a81548160ff0219169083151502179055506001905090565b60006107106111e5565b436006819055506001600560146101000a81548160ff0219169083151502179055506001905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077290611950565b80601f016020809104026020016040519081016040528092919081815260200182805461079e90611950565b80156107eb5780601f106107c0576101008083540402835291602001916107eb565b820191906000526020600020905b8154815290600101906020018083116107ce57829003601f168201915b5050505050905090565b600080610800610a99565b9050600061080e8286610947565b905083811015610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084a90611a56565b60405180910390fd5b6108608286868403610aa1565b60019250505092915050565b7f0000000000000000000000005177725d158d4343b5a05afa23945bb96214e6d581565b60008061089b610a99565b90506108a8818585610cf6565b600191505092915050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b600560149054906101000a900460ff1681565b6108e66111e5565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d66111e5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90611ae8565b60405180910390fd5b610a4e81611263565b50565b7f0000000000000000000000000000000000000000007c13bc4b2c133c5600000081565b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790611b7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690611c0c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5d9190611779565b60405180910390a3505050565b6000610c768484610947565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cf05781811015610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990611c78565b60405180910390fd5b610cef8484848403610aa1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90611d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90611d9c565b60405180910390fd5b60008103610ded57610de883836000611329565b6111e0565b600560159054906101000a900460ff16156111d457600560149054906101000a900460ff16610efb57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610eb75750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611e08565b60405180910390fd5b6111d3565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015610f9f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156111d2576001600654610fb391906119b0565b4311610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90611e9a565b60405180910390fd5b7f00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000811115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90611f2c565b60405180910390fd5b7f0000000000000000000000005177725d158d4343b5a05afa23945bb96214e6d573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061115557507f0000000000000000000000005177725d158d4343b5a05afa23945bb96214e6d573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561115457507f0000000000000000000000005177725d158d4343b5a05afa23945bb96214e6d573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b156111d1577f0000000000000000000000000000000000000000007c13bc4b2c133c56000000816111858461067e565b61118f91906119b0565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611fbe565b60405180910390fd5b5b5b5b5b6111df838383611329565b5b505050565b6111ed610a99565b73ffffffffffffffffffffffffffffffffffffffff1661120b610739565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061202a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90611d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90611d9c565b60405180910390fd5b61141283838361159f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906120bc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115869190611779565b60405180910390a36115998484846115a4565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115e35780820151818401526020810190506115c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061160b826115a9565b61161581856115b4565b93506116258185602086016115c5565b61162e816115ef565b840191505092915050565b600060208201905081810360008301526116538184611600565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061168b82611660565b9050919050565b61169b81611680565b81146116a657600080fd5b50565b6000813590506116b881611692565b92915050565b6000819050919050565b6116d1816116be565b81146116dc57600080fd5b50565b6000813590506116ee816116c8565b92915050565b6000806040838503121561170b5761170a61165b565b5b6000611719858286016116a9565b925050602061172a858286016116df565b9150509250929050565b60008115159050919050565b61174981611734565b82525050565b60006020820190506117646000830184611740565b92915050565b611773816116be565b82525050565b600060208201905061178e600083018461176a565b92915050565b6000806000606084860312156117ad576117ac61165b565b5b60006117bb868287016116a9565b93505060206117cc868287016116a9565b92505060406117dd868287016116df565b9150509250925092565b6117f081611680565b82525050565b600060208201905061180b60008301846117e7565b92915050565b600060ff82169050919050565b61182781611811565b82525050565b6000602082019050611842600083018461181e565b92915050565b60006020828403121561185e5761185d61165b565b5b600061186c848285016116a9565b91505092915050565b61187e81611734565b811461188957600080fd5b50565b60008135905061189b81611875565b92915050565b600080604083850312156118b8576118b761165b565b5b60006118c6858286016116a9565b92505060206118d78582860161188c565b9150509250929050565b600080604083850312156118f8576118f761165b565b5b6000611906858286016116a9565b9250506020611917858286016116a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061196857607f821691505b60208210810361197b5761197a611921565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119bb826116be565b91506119c6836116be565b92508282019050808211156119de576119dd611981565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a406025836115b4565b9150611a4b826119e4565b604082019050919050565b60006020820190508181036000830152611a6f81611a33565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ad26026836115b4565b9150611add82611a76565b604082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b646024836115b4565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf66022836115b4565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c62601d836115b4565b9150611c6d82611c2c565b602082019050919050565b60006020820190508181036000830152611c9181611c55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cf46025836115b4565b9150611cff82611c98565b604082019050919050565b60006020820190508181036000830152611d2381611ce7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d866023836115b4565b9150611d9182611d2a565b604082019050919050565b60006020820190508181036000830152611db581611d79565b9050919050565b7f54726164696e67206973206e6f74206163746976652100000000000000000000600082015250565b6000611df26016836115b4565b9150611dfd82611dbc565b602082019050919050565b60006020820190508181036000830152611e2181611de5565b9050919050565b7f5472616e736665727320617265206e6f7420616c6c6f77656420666f7220746860008201527f652066697273742074776f20626c6f636b73206166746572206c61756e636821602082015250565b6000611e846040836115b4565b9150611e8f82611e28565b604082019050919050565b60006020820190508181036000830152611eb381611e77565b9050919050565b7f54686973207472616e7366657220657863656564732074686520616c6c6f776560008201527f64207472616e73666572206c696d697421000000000000000000000000000000602082015250565b6000611f166031836115b4565b9150611f2182611eba565b604082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f54686973207472616e7366657220657863656564732074686520616c6c6f776560008201527f642077616c6c6574206c696d6974210000000000000000000000000000000000602082015250565b6000611fa8602f836115b4565b9150611fb382611f4c565b604082019050919050565b60006020820190508181036000830152611fd781611f9b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120146020836115b4565b915061201f82611fde565b602082019050919050565b6000602082019050818103600083015261204381612007565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120a66026836115b4565b91506120b18261204a565b604082019050919050565b600060208201905081810360008301526120d581612099565b905091905056fea264697066735822122096ba8d113cfc6814547f98286e5405dc5107bd06d97f94e915d8c85e6051461564736f6c63430008120033

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.