ETH Price: $3,278.44 (-3.87%)
Gas: 14 Gwei

Token

Dat Boi (DATBOI)
 

Overview

Max Total Supply

420,690,000,000,000 DATBOI

Holders

442

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
266,484,211,567.537656559694042726 DATBOI

Value
$0.00
0x1d840f62a2dc3d0328fa0740439a103712607b2e
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:
DATBOI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : DatBoi.sol
/******

DAT BOI

    ---- TELEGRAM: https://t.me/Datboymeme
    ---- WEB: https://www.datboi.army/
    ---- X: https://twitter.com/Datboi_meme_

******/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.2;

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

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

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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;
}

interface IERC721 {
    function balanceOf(address owner) external view returns (uint256 balance);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
}

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

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);
}

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;
}

contract DATBOI is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public antiBot = false;
    bool public swapEnabled = false;
    uint256 launchedAt;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    uint256 lastSwapBackBlock;
    uint256 totalFees = 32;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxWallet;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    constructor() ERC20("Dat Boi", "DATBOI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeMaxWallet(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uint256 totalSupply = 420_690_000_000_000 * 1e18;

        maxWallet = (totalSupply * 10) / 1000;
        swapTokensAtAmount = (totalSupply * 5) / 1000;

        marketingWallet = address(0x5DcF232BC1C5c3cD5815Dd24E1Fc79b9D326ADC7);

        // exclude from paying fees or having max wallet amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        excludeMaxWallet(owner(), true);
        excludeMaxWallet(address(this), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply * 6 / 100);
        _mint(address(this), totalSupply * 94 / 100);
    }

    receive() external payable {}

    function updateMarketing(address wallet) external onlyOwner {
        marketingWallet = wallet;
    }
    
    // once enabled, can never be turned off
    function openTrading() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        excludeMaxWallet(address(uniswapV2Pair), true);

        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: address(this).balance}
            (
                address(this),
                balanceOf(address(this)),
                0,
                0,
                owner(),
                block.timestamp
            );

        swapEnabled = true;
        launchedAt = block.number;
        antiBot = true;
    }


    function excludeMaxWallet(address addy, bool isExclude) public onlyOwner {
        _isExcludedMaxWallet[addy] = isExclude;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        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 (antiBot && launchedAt > 0 && block.number >= launchedAt + 12) {
            antiBot = false;
            totalFees = 0;
            maxWallet = (totalSupply() * 2) / 100;
        }

        if (
            antiBot && 
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            to != address(uniswapV2Router) &&
            to != address(uniswapV2Pair) &&
            !swapping
        ) {
            require(
                _holderLastTransferTimestamp[tx.origin] <
                    block.number,
                "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
            );
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }

        if (!_isExcludedMaxWallet[to]) {
            if(launchedAt == block.timestamp) {
                require(
                    amount + balanceOf(to) <= maxWallet / 2,
                    "Max wallet exceeded"
                );
            }
            else {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            }
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            from != address(uniswapV2Pair) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to] &&
            block.number > lastSwapBackBlock
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping && antiBot;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            if (to == address(uniswapV2Pair) || from == address(uniswapV2Pair)) {
                if(launchedAt == block.timestamp) {
                    fees = amount.mul(45).div(100);
                }
                else {
                    fees = amount.mul(totalFees).div(100);
                }
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function swapBack() private {
        uint256 tokensToSwap = balanceOf(address(this));

        if (tokensToSwap <= swapTokensAtAmount) {
            return;
        }

        lastSwapBackBlock = block.number;

        tokensToSwap = swapTokensAtAmount;
        swapTokensForEth(tokensToSwap);
        bool success;
        (success, ) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"antiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"isExclude","type":"bool"}],"name":"excludeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506020600e553480156200004c57600080fd5b506040518060400160405280600781526020017f44617420426f69000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f444154424f4900000000000000000000000000000000000000000000000000008152508160039081620000ca919062000a70565b508060049081620000dc919062000a70565b5050506000620000f16200036e60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001bc8160016200037660201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060006d14bddab3e51a57cff87a5000000090506103e8600a8262000215919062000b86565b62000221919062000c00565b6009819055506103e860058262000239919062000b86565b62000245919062000c00565b600881905550735dcf232bc1c5c3cd5815dd24e1fc79b9d326adc7600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002c2620002b46200047360201b60201c565b60016200049d60201b60201c565b620002d53060016200049d60201b60201c565b620002f7620002e96200047360201b60201c565b60016200037660201b60201c565b6200030a3060016200037660201b60201c565b6200033833606460068462000320919062000b86565b6200032c919062000c00565b620005ea60201b60201c565b62000366306064605e846200034e919062000b86565b6200035a919062000c00565b620005ea60201b60201c565b505062000e42565b600033905090565b620003866200036e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040f9062000c99565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004ad6200036e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200053f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005369062000c99565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620005de919062000cd8565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200065c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006539062000d45565b60405180910390fd5b62000670600083836200078e60201b60201c565b62000687816002546200079360201b90919060201c565b600281905550620006e0816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200079360201b90919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000782919062000d78565b60405180910390a35050565b505050565b6000808284620007a4919062000d95565b905083811015620007ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e39062000e20565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087857607f821691505b6020821081036200088e576200088d62000830565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008b9565b620009048683620008b9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009516200094b62000945846200091c565b62000926565b6200091c565b9050919050565b6000819050919050565b6200096d8362000930565b620009856200097c8262000958565b848454620008c6565b825550505050565b600090565b6200099c6200098d565b620009a981848462000962565b505050565b5b81811015620009d157620009c560008262000992565b600181019050620009af565b5050565b601f82111562000a2057620009ea8162000894565b620009f584620008a9565b8101602085101562000a05578190505b62000a1d62000a1485620008a9565b830182620009ae565b50505b505050565b600082821c905092915050565b600062000a456000198460080262000a25565b1980831691505092915050565b600062000a60838362000a32565b9150826002028217905092915050565b62000a7b82620007f6565b67ffffffffffffffff81111562000a975762000a9662000801565b5b62000aa382546200085f565b62000ab0828285620009d5565b600060209050601f83116001811462000ae8576000841562000ad3578287015190505b62000adf858262000a52565b86555062000b4f565b601f19841662000af88662000894565b60005b8281101562000b225784890151825560018201915060208501945060208101905062000afb565b8683101562000b42578489015162000b3e601f89168262000a32565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b93826200091c565b915062000ba0836200091c565b925082820262000bb0816200091c565b9150828204841483151762000bca5762000bc962000b57565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c0d826200091c565b915062000c1a836200091c565b92508262000c2d5762000c2c62000bd1565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c8160208362000c38565b915062000c8e8262000c49565b602082019050919050565b6000602082019050818103600083015262000cb48162000c72565b9050919050565b60008115159050919050565b62000cd28162000cbb565b82525050565b600060208201905062000cef600083018462000cc7565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d2d601f8362000c38565b915062000d3a8262000cf5565b602082019050919050565b6000602082019050818103600083015262000d608162000d1e565b9050919050565b62000d72816200091c565b82525050565b600060208201905062000d8f600083018462000d67565b92915050565b600062000da2826200091c565b915062000daf836200091c565b925082820190508082111562000dca5762000dc962000b57565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000e08601b8362000c38565b915062000e158262000dd0565b602082019050919050565b6000602082019050818103600083015262000e3b8162000df9565b9050919050565b6080516138ce62000e966000396000818161088f015281816111c701528181611272015281816113d20152818161141901528181611be2015281816127d9015281816128ba01526128e101526138ce6000f3fe6080604052600436106101bb5760003560e01c80637dfcbe34116100ec578063c02466681161008a578063dd62ed3e11610064578063dd62ed3e1461062f578063e2f456051461066c578063f2fde38b14610697578063f8b45b05146106c0576101c2565b8063c0246668146105b2578063c9567bf9146105db578063d9c81c57146105f2576101c2565b806395d89b41116100c657806395d89b41146104e4578063a457c2d71461050f578063a9059cbb1461054c578063b91ebc8814610589576101c2565b80637dfcbe34146104655780638da5cb5b14610490578063924de9b7146104bb576101c2565b806339509351116101595780636ddd1713116101335780636ddd1713146103bb57806370a08231146103e6578063715018a61461042357806375f0a8741461043a576101c2565b8063395093511461031657806349bd5a5e146103535780634fbee1931461037e576101c2565b80631694505e116101955780631694505e1461025857806318160ddd1461028357806323b872dd146102ae578063313ce567146102eb576101c2565b806306fdde03146101c7578063095ea7b3146101f25780630c77a8f61461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106eb565b6040516101e99190612a6a565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190612b25565b61077d565b6040516102269190612b80565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612bc7565b61079b565b005b34801561026457600080fd5b5061026d61088d565b60405161027a9190612c66565b60405180910390f35b34801561028f57600080fd5b506102986108b1565b6040516102a59190612c90565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612cab565b6108bb565b6040516102e29190612b80565b60405180910390f35b3480156102f757600080fd5b50610300610994565b60405161030d9190612d1a565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612b25565b61099d565b60405161034a9190612b80565b60405180910390f35b34801561035f57600080fd5b50610368610a50565b6040516103759190612d44565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d5f565b610a76565b6040516103b29190612b80565b60405180910390f35b3480156103c757600080fd5b506103d0610acc565b6040516103dd9190612b80565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190612d5f565b610adf565b60405161041a9190612c90565b60405180910390f35b34801561042f57600080fd5b50610438610b27565b005b34801561044657600080fd5b5061044f610c7f565b60405161045c9190612d44565b60405180910390f35b34801561047157600080fd5b5061047a610ca5565b6040516104879190612b80565b60405180910390f35b34801561049c57600080fd5b506104a5610cb8565b6040516104b29190612d44565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612d8c565b610ce2565b005b3480156104f057600080fd5b506104f9610d96565b6040516105069190612a6a565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612b25565b610e28565b6040516105439190612b80565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612b25565b610ef5565b6040516105809190612b80565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612d5f565b610f13565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612bc7565b610fee565b005b3480156105e757600080fd5b506105f061112e565b005b3480156105fe57600080fd5b5061061960048036038101906106149190612d5f565b611510565b6040516106269190612b80565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612db9565b611530565b6040516106639190612c90565b60405180910390f35b34801561067857600080fd5b506106816115b7565b60405161068e9190612c90565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612d5f565b6115bd565b005b3480156106cc57600080fd5b506106d5611783565b6040516106e29190612c90565b60405180910390f35b6060600380546106fa90612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461072690612e28565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b600061079161078a611789565b8484611791565b6001905092915050565b6107a3611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612ea5565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60006108c884848461195a565b610989846108d4611789565b6109848560405180606001604052806028815260200161384c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061093a611789565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122569092919063ffffffff16565b611791565b600190509392505050565b60006012905090565b6000610a466109aa611789565b84610a4185600160006109bb611789565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ba90919063ffffffff16565b611791565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b2f611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590612ea5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cea611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090612ea5565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b606060048054610da590612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd190612e28565b8015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b5050505050905090565b6000610eeb610e35611789565b84610ee6856040518060600160405280602581526020016138746025913960016000610e5f611789565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122569092919063ffffffff16565b611791565b6001905092915050565b6000610f09610f02611789565b848461195a565b6001905092915050565b610f1b611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190612ea5565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ff6611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612ea5565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516111229190612b80565b60405180910390a25050565b611136611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90612ea5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190612eda565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ff9190612eda565b6040518363ffffffff1660e01b815260040161131c929190612f07565b6020604051808303816000875af115801561133b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135f9190612eda565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113cc600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161079b565b611417307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611791565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061145e30610adf565b600080611469610cb8565b426040518863ffffffff1660e01b815260040161148b96959493929190612f6b565b60606040518083038185885af11580156114a9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114ce9190612fe1565b5050506001600a60016101000a81548160ff02191690831515021790555043600b819055506001600a60006101000a81548160ff021916908315150217905550565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6115c5611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90612ea5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba906130a6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613138565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906131ca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161194d9190612c90565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c09061325c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906132ee565b60405180910390fd5b60008103611a5157611a4c83836000612318565b612251565b600a60009054906101000a900460ff168015611a6f57506000600b54115b8015611a895750600c600b54611a85919061333d565b4310155b15611ad8576000600a60006101000a81548160ff0219169083151502179055506000600e8190555060646002611abd6108b1565b611ac79190613371565b611ad191906133e2565b6009819055505b600a60009054906101000a900460ff168015611b275750611af7610cb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611b665750611b36610cb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b9f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bd9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c8b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ca45750600660149054906101000a900460ff16155b15611d6f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906134ab565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e8c5742600b5403611e32576002600954611dd891906133e2565b611de183610adf565b82611dec919061333d565b1115611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490613517565b60405180910390fd5b611e8b565b600954611e3e83610adf565b82611e49919061333d565b1115611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190613517565b60405180910390fd5b5b5b6000611e9730610adf565b905060006008548210159050808015611ebc5750600a60019054906101000a900460ff165b8015611ed55750600660149054906101000a900460ff16155b8015611f2f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611f855750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fdb5750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fe85750600d5443115b1561202c576001600660146101000a81548160ff0219169083151502179055506120106125ab565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff161580156120575750600a60009054906101000a900460ff165b9050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120fa5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561210457600090505b6000811561224157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614806121b55750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b1561221d5742600b54036121f1576121ea60646121dc602d8861267190919063ffffffff16565b6126eb90919063ffffffff16565b905061221c565b612219606461220b600e548861267190919063ffffffff16565b6126eb90919063ffffffff16565b90505b5b600081111561223257612231873083612318565b5b808561223e9190613537565b94505b61224c878787612318565b505050505b505050565b600083831115829061229e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122959190612a6a565b60405180910390fd5b50600083856122ad9190613537565b9050809150509392505050565b60008082846122c9919061333d565b90508381101561230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906135b7565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061325c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed906132ee565b60405180910390fd5b612401838383612735565b61246c81604051806060016040528060268152602001613826602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122569092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124ff816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ba90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161259e9190612c90565b60405180910390a3505050565b60006125b630610adf565b905060085481116125c7575061266f565b43600d8190555060085490506125dc8161273a565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161262490613608565b60006040518083038185875af1925050503d8060008114612661576040519150601f19603f3d011682016040523d82523d6000602084013e612666565b606091505b50508091505050505b565b600080830361268357600090506126e5565b600082846126919190613371565b90508284826126a091906133e2565b146126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d79061368f565b60405180910390fd5b809150505b92915050565b600061272d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612977565b905092915050565b505050565b6000600267ffffffffffffffff811115612757576127566136af565b5b6040519080825280602002602001820160405280156127855781602001602082028036833780820191505090505b509050308160008151811061279d5761279c6136de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612842573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128669190612eda565b8160018151811061287a576128796136de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128df307f000000000000000000000000000000000000000000000000000000000000000084611791565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016129419594939291906137cb565b600060405180830381600087803b15801561295b57600080fd5b505af115801561296f573d6000803e3d6000fd5b505050505050565b600080831182906129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b59190612a6a565b60405180910390fd5b50600083856129cd91906133e2565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a145780820151818401526020810190506129f9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a3c826129da565b612a4681856129e5565b9350612a568185602086016129f6565b612a5f81612a20565b840191505092915050565b60006020820190508181036000830152612a848184612a31565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612abc82612a91565b9050919050565b612acc81612ab1565b8114612ad757600080fd5b50565b600081359050612ae981612ac3565b92915050565b6000819050919050565b612b0281612aef565b8114612b0d57600080fd5b50565b600081359050612b1f81612af9565b92915050565b60008060408385031215612b3c57612b3b612a8c565b5b6000612b4a85828601612ada565b9250506020612b5b85828601612b10565b9150509250929050565b60008115159050919050565b612b7a81612b65565b82525050565b6000602082019050612b956000830184612b71565b92915050565b612ba481612b65565b8114612baf57600080fd5b50565b600081359050612bc181612b9b565b92915050565b60008060408385031215612bde57612bdd612a8c565b5b6000612bec85828601612ada565b9250506020612bfd85828601612bb2565b9150509250929050565b6000819050919050565b6000612c2c612c27612c2284612a91565b612c07565b612a91565b9050919050565b6000612c3e82612c11565b9050919050565b6000612c5082612c33565b9050919050565b612c6081612c45565b82525050565b6000602082019050612c7b6000830184612c57565b92915050565b612c8a81612aef565b82525050565b6000602082019050612ca56000830184612c81565b92915050565b600080600060608486031215612cc457612cc3612a8c565b5b6000612cd286828701612ada565b9350506020612ce386828701612ada565b9250506040612cf486828701612b10565b9150509250925092565b600060ff82169050919050565b612d1481612cfe565b82525050565b6000602082019050612d2f6000830184612d0b565b92915050565b612d3e81612ab1565b82525050565b6000602082019050612d596000830184612d35565b92915050565b600060208284031215612d7557612d74612a8c565b5b6000612d8384828501612ada565b91505092915050565b600060208284031215612da257612da1612a8c565b5b6000612db084828501612bb2565b91505092915050565b60008060408385031215612dd057612dcf612a8c565b5b6000612dde85828601612ada565b9250506020612def85828601612ada565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4057607f821691505b602082108103612e5357612e52612df9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e8f6020836129e5565b9150612e9a82612e59565b602082019050919050565b60006020820190508181036000830152612ebe81612e82565b9050919050565b600081519050612ed481612ac3565b92915050565b600060208284031215612ef057612eef612a8c565b5b6000612efe84828501612ec5565b91505092915050565b6000604082019050612f1c6000830185612d35565b612f296020830184612d35565b9392505050565b6000819050919050565b6000612f55612f50612f4b84612f30565b612c07565b612aef565b9050919050565b612f6581612f3a565b82525050565b600060c082019050612f806000830189612d35565b612f8d6020830188612c81565b612f9a6040830187612f5c565b612fa76060830186612f5c565b612fb46080830185612d35565b612fc160a0830184612c81565b979650505050505050565b600081519050612fdb81612af9565b92915050565b600080600060608486031215612ffa57612ff9612a8c565b5b600061300886828701612fcc565b935050602061301986828701612fcc565b925050604061302a86828701612fcc565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130906026836129e5565b915061309b82613034565b604082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131226024836129e5565b915061312d826130c6565b604082019050919050565b6000602082019050818103600083015261315181613115565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131b46022836129e5565b91506131bf82613158565b604082019050919050565b600060208201905081810360008301526131e3816131a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132466025836129e5565b9150613251826131ea565b604082019050919050565b6000602082019050818103600083015261327581613239565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132d86023836129e5565b91506132e38261327c565b604082019050919050565b60006020820190508181036000830152613307816132cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334882612aef565b915061335383612aef565b925082820190508082111561336b5761336a61330e565b5b92915050565b600061337c82612aef565b915061338783612aef565b925082820261339581612aef565b915082820484148315176133ac576133ab61330e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133ed82612aef565b91506133f883612aef565b925082613408576134076133b3565b5b828204905092915050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006134956049836129e5565b91506134a082613413565b606082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006135016013836129e5565b915061350c826134cb565b602082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b600061354282612aef565b915061354d83612aef565b92508282039050818111156135655761356461330e565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006135a1601b836129e5565b91506135ac8261356b565b602082019050919050565b600060208201905081810360008301526135d081613594565b9050919050565b600081905092915050565b50565b60006135f26000836135d7565b91506135fd826135e2565b600082019050919050565b6000613613826135e5565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006136796021836129e5565b91506136848261361d565b604082019050919050565b600060208201905081810360008301526136a88161366c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61374281612ab1565b82525050565b60006137548383613739565b60208301905092915050565b6000602082019050919050565b60006137788261370d565b6137828185613718565b935061378d83613729565b8060005b838110156137be5781516137a58882613748565b97506137b083613760565b925050600181019050613791565b5085935050505092915050565b600060a0820190506137e06000830188612c81565b6137ed6020830187612f5c565b81810360408301526137ff818661376d565b905061380e6060830185612d35565b61381b6080830184612c81565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c925724bdf777a26e86f006a42beca725c4416021cc1528481ea0939154cede464736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c80637dfcbe34116100ec578063c02466681161008a578063dd62ed3e11610064578063dd62ed3e1461062f578063e2f456051461066c578063f2fde38b14610697578063f8b45b05146106c0576101c2565b8063c0246668146105b2578063c9567bf9146105db578063d9c81c57146105f2576101c2565b806395d89b41116100c657806395d89b41146104e4578063a457c2d71461050f578063a9059cbb1461054c578063b91ebc8814610589576101c2565b80637dfcbe34146104655780638da5cb5b14610490578063924de9b7146104bb576101c2565b806339509351116101595780636ddd1713116101335780636ddd1713146103bb57806370a08231146103e6578063715018a61461042357806375f0a8741461043a576101c2565b8063395093511461031657806349bd5a5e146103535780634fbee1931461037e576101c2565b80631694505e116101955780631694505e1461025857806318160ddd1461028357806323b872dd146102ae578063313ce567146102eb576101c2565b806306fdde03146101c7578063095ea7b3146101f25780630c77a8f61461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106eb565b6040516101e99190612a6a565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190612b25565b61077d565b6040516102269190612b80565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612bc7565b61079b565b005b34801561026457600080fd5b5061026d61088d565b60405161027a9190612c66565b60405180910390f35b34801561028f57600080fd5b506102986108b1565b6040516102a59190612c90565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612cab565b6108bb565b6040516102e29190612b80565b60405180910390f35b3480156102f757600080fd5b50610300610994565b60405161030d9190612d1a565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612b25565b61099d565b60405161034a9190612b80565b60405180910390f35b34801561035f57600080fd5b50610368610a50565b6040516103759190612d44565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612d5f565b610a76565b6040516103b29190612b80565b60405180910390f35b3480156103c757600080fd5b506103d0610acc565b6040516103dd9190612b80565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190612d5f565b610adf565b60405161041a9190612c90565b60405180910390f35b34801561042f57600080fd5b50610438610b27565b005b34801561044657600080fd5b5061044f610c7f565b60405161045c9190612d44565b60405180910390f35b34801561047157600080fd5b5061047a610ca5565b6040516104879190612b80565b60405180910390f35b34801561049c57600080fd5b506104a5610cb8565b6040516104b29190612d44565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612d8c565b610ce2565b005b3480156104f057600080fd5b506104f9610d96565b6040516105069190612a6a565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612b25565b610e28565b6040516105439190612b80565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612b25565b610ef5565b6040516105809190612b80565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612d5f565b610f13565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612bc7565b610fee565b005b3480156105e757600080fd5b506105f061112e565b005b3480156105fe57600080fd5b5061061960048036038101906106149190612d5f565b611510565b6040516106269190612b80565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612db9565b611530565b6040516106639190612c90565b60405180910390f35b34801561067857600080fd5b506106816115b7565b60405161068e9190612c90565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612d5f565b6115bd565b005b3480156106cc57600080fd5b506106d5611783565b6040516106e29190612c90565b60405180910390f35b6060600380546106fa90612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461072690612e28565b80156107735780601f1061074857610100808354040283529160200191610773565b820191906000526020600020905b81548152906001019060200180831161075657829003601f168201915b5050505050905090565b600061079161078a611789565b8484611791565b6001905092915050565b6107a3611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612ea5565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60006108c884848461195a565b610989846108d4611789565b6109848560405180606001604052806028815260200161384c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061093a611789565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122569092919063ffffffff16565b611791565b600190509392505050565b60006012905090565b6000610a466109aa611789565b84610a4185600160006109bb611789565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ba90919063ffffffff16565b611791565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b2f611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590612ea5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cea611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090612ea5565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b606060048054610da590612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd190612e28565b8015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b5050505050905090565b6000610eeb610e35611789565b84610ee6856040518060600160405280602581526020016138746025913960016000610e5f611789565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122569092919063ffffffff16565b611791565b6001905092915050565b6000610f09610f02611789565b848461195a565b6001905092915050565b610f1b611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190612ea5565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ff6611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612ea5565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516111229190612b80565b60405180910390a25050565b611136611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90612ea5565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190612eda565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ff9190612eda565b6040518363ffffffff1660e01b815260040161131c929190612f07565b6020604051808303816000875af115801561133b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135f9190612eda565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113cc600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161079b565b611417307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611791565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061145e30610adf565b600080611469610cb8565b426040518863ffffffff1660e01b815260040161148b96959493929190612f6b565b60606040518083038185885af11580156114a9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114ce9190612fe1565b5050506001600a60016101000a81548160ff02191690831515021790555043600b819055506001600a60006101000a81548160ff021916908315150217905550565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6115c5611789565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90612ea5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba906130a6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f790613138565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906131ca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161194d9190612c90565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c09061325c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906132ee565b60405180910390fd5b60008103611a5157611a4c83836000612318565b612251565b600a60009054906101000a900460ff168015611a6f57506000600b54115b8015611a895750600c600b54611a85919061333d565b4310155b15611ad8576000600a60006101000a81548160ff0219169083151502179055506000600e8190555060646002611abd6108b1565b611ac79190613371565b611ad191906133e2565b6009819055505b600a60009054906101000a900460ff168015611b275750611af7610cb8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611b665750611b36610cb8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b9f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bd9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c3157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c8b5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ca45750600660149054906101000a900460ff16155b15611d6f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906134ab565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e8c5742600b5403611e32576002600954611dd891906133e2565b611de183610adf565b82611dec919061333d565b1115611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490613517565b60405180910390fd5b611e8b565b600954611e3e83610adf565b82611e49919061333d565b1115611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8190613517565b60405180910390fd5b5b5b6000611e9730610adf565b905060006008548210159050808015611ebc5750600a60019054906101000a900460ff165b8015611ed55750600660149054906101000a900460ff16155b8015611f2f5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611f855750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fdb5750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611fe85750600d5443115b1561202c576001600660146101000a81548160ff0219169083151502179055506120106125ab565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff161580156120575750600a60009054906101000a900460ff165b9050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120fa5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561210457600090505b6000811561224157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614806121b55750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b1561221d5742600b54036121f1576121ea60646121dc602d8861267190919063ffffffff16565b6126eb90919063ffffffff16565b905061221c565b612219606461220b600e548861267190919063ffffffff16565b6126eb90919063ffffffff16565b90505b5b600081111561223257612231873083612318565b5b808561223e9190613537565b94505b61224c878787612318565b505050505b505050565b600083831115829061229e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122959190612a6a565b60405180910390fd5b50600083856122ad9190613537565b9050809150509392505050565b60008082846122c9919061333d565b90508381101561230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906135b7565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e9061325c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed906132ee565b60405180910390fd5b612401838383612735565b61246c81604051806060016040528060268152602001613826602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122569092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124ff816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ba90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161259e9190612c90565b60405180910390a3505050565b60006125b630610adf565b905060085481116125c7575061266f565b43600d8190555060085490506125dc8161273a565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161262490613608565b60006040518083038185875af1925050503d8060008114612661576040519150601f19603f3d011682016040523d82523d6000602084013e612666565b606091505b50508091505050505b565b600080830361268357600090506126e5565b600082846126919190613371565b90508284826126a091906133e2565b146126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d79061368f565b60405180910390fd5b809150505b92915050565b600061272d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612977565b905092915050565b505050565b6000600267ffffffffffffffff811115612757576127566136af565b5b6040519080825280602002602001820160405280156127855781602001602082028036833780820191505090505b509050308160008151811061279d5761279c6136de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612842573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128669190612eda565b8160018151811061287a576128796136de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128df307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611791565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016129419594939291906137cb565b600060405180830381600087803b15801561295b57600080fd5b505af115801561296f573d6000803e3d6000fd5b505050505050565b600080831182906129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b59190612a6a565b60405180910390fd5b50600083856129cd91906133e2565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a145780820151818401526020810190506129f9565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a3c826129da565b612a4681856129e5565b9350612a568185602086016129f6565b612a5f81612a20565b840191505092915050565b60006020820190508181036000830152612a848184612a31565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612abc82612a91565b9050919050565b612acc81612ab1565b8114612ad757600080fd5b50565b600081359050612ae981612ac3565b92915050565b6000819050919050565b612b0281612aef565b8114612b0d57600080fd5b50565b600081359050612b1f81612af9565b92915050565b60008060408385031215612b3c57612b3b612a8c565b5b6000612b4a85828601612ada565b9250506020612b5b85828601612b10565b9150509250929050565b60008115159050919050565b612b7a81612b65565b82525050565b6000602082019050612b956000830184612b71565b92915050565b612ba481612b65565b8114612baf57600080fd5b50565b600081359050612bc181612b9b565b92915050565b60008060408385031215612bde57612bdd612a8c565b5b6000612bec85828601612ada565b9250506020612bfd85828601612bb2565b9150509250929050565b6000819050919050565b6000612c2c612c27612c2284612a91565b612c07565b612a91565b9050919050565b6000612c3e82612c11565b9050919050565b6000612c5082612c33565b9050919050565b612c6081612c45565b82525050565b6000602082019050612c7b6000830184612c57565b92915050565b612c8a81612aef565b82525050565b6000602082019050612ca56000830184612c81565b92915050565b600080600060608486031215612cc457612cc3612a8c565b5b6000612cd286828701612ada565b9350506020612ce386828701612ada565b9250506040612cf486828701612b10565b9150509250925092565b600060ff82169050919050565b612d1481612cfe565b82525050565b6000602082019050612d2f6000830184612d0b565b92915050565b612d3e81612ab1565b82525050565b6000602082019050612d596000830184612d35565b92915050565b600060208284031215612d7557612d74612a8c565b5b6000612d8384828501612ada565b91505092915050565b600060208284031215612da257612da1612a8c565b5b6000612db084828501612bb2565b91505092915050565b60008060408385031215612dd057612dcf612a8c565b5b6000612dde85828601612ada565b9250506020612def85828601612ada565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4057607f821691505b602082108103612e5357612e52612df9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e8f6020836129e5565b9150612e9a82612e59565b602082019050919050565b60006020820190508181036000830152612ebe81612e82565b9050919050565b600081519050612ed481612ac3565b92915050565b600060208284031215612ef057612eef612a8c565b5b6000612efe84828501612ec5565b91505092915050565b6000604082019050612f1c6000830185612d35565b612f296020830184612d35565b9392505050565b6000819050919050565b6000612f55612f50612f4b84612f30565b612c07565b612aef565b9050919050565b612f6581612f3a565b82525050565b600060c082019050612f806000830189612d35565b612f8d6020830188612c81565b612f9a6040830187612f5c565b612fa76060830186612f5c565b612fb46080830185612d35565b612fc160a0830184612c81565b979650505050505050565b600081519050612fdb81612af9565b92915050565b600080600060608486031215612ffa57612ff9612a8c565b5b600061300886828701612fcc565b935050602061301986828701612fcc565b925050604061302a86828701612fcc565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130906026836129e5565b915061309b82613034565b604082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131226024836129e5565b915061312d826130c6565b604082019050919050565b6000602082019050818103600083015261315181613115565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131b46022836129e5565b91506131bf82613158565b604082019050919050565b600060208201905081810360008301526131e3816131a7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132466025836129e5565b9150613251826131ea565b604082019050919050565b6000602082019050818103600083015261327581613239565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132d86023836129e5565b91506132e38261327c565b604082019050919050565b60006020820190508181036000830152613307816132cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334882612aef565b915061335383612aef565b925082820190508082111561336b5761336a61330e565b5b92915050565b600061337c82612aef565b915061338783612aef565b925082820261339581612aef565b915082820484148315176133ac576133ab61330e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133ed82612aef565b91506133f883612aef565b925082613408576134076133b3565b5b828204905092915050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006134956049836129e5565b91506134a082613413565b606082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006135016013836129e5565b915061350c826134cb565b602082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b600061354282612aef565b915061354d83612aef565b92508282039050818111156135655761356461330e565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006135a1601b836129e5565b91506135ac8261356b565b602082019050919050565b600060208201905081810360008301526135d081613594565b9050919050565b600081905092915050565b50565b60006135f26000836135d7565b91506135fd826135e2565b600082019050919050565b6000613613826135e5565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006136796021836129e5565b91506136848261361d565b604082019050919050565b600060208201905081810360008301526136a88161366c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61374281612ab1565b82525050565b60006137548383613739565b60208301905092915050565b6000602082019050919050565b60006137788261370d565b6137828185613718565b935061378d83613729565b8060005b838110156137be5781516137a58882613748565b97506137b083613760565b925050600181019050613791565b5085935050505092915050565b600060a0820190506137e06000830188612c81565b6137ed6020830187612f5c565b81810360408301526137ff818661376d565b905061380e6060830185612d35565b61381b6080830184612c81565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c925724bdf777a26e86f006a42beca725c4416021cc1528481ea0939154cede464736f6c63430008130033

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.